composer.lock 200 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "b7a08f27034774dc2a4fc3be0a5cfc9b",
  8. "packages": [
  9. {
  10. "name": "algolia/algoliasearch-client-php",
  11. "version": "1.20.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/algolia/algoliasearch-client-php.git",
  15. "reference": "3daee8d55c1d84eff227fd99054e78ddc196f309"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/algolia/algoliasearch-client-php/zipball/3daee8d55c1d84eff227fd99054e78ddc196f309",
  20. "reference": "3daee8d55c1d84eff227fd99054e78ddc196f309",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-mbstring": "*",
  25. "php": ">=5.3"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8 || ^5.0",
  29. "satooshi/php-coveralls": "0.6.*"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "psr-0": {
  34. "AlgoliaSearch": "src/",
  35. "AlgoliaSearch\\Tests": "tests/"
  36. }
  37. },
  38. "notification-url": "https://packagist.org/downloads/",
  39. "license": [
  40. "MIT"
  41. ],
  42. "authors": [
  43. {
  44. "name": "Algolia Team",
  45. "email": "contact@algolia.com"
  46. },
  47. {
  48. "name": "Ryan T. Catlin",
  49. "email": "ryan.catlin@gmail.com"
  50. },
  51. {
  52. "name": "Jonathan H. Wage",
  53. "email": "jonwage@gmail.com"
  54. }
  55. ],
  56. "description": "Algolia Search API Client for PHP",
  57. "homepage": "https://github.com/algolia/algoliasearch-client-php",
  58. "time": "2017-08-30T08:28:40+00:00"
  59. },
  60. {
  61. "name": "cebe/markdown",
  62. "version": "1.1.1",
  63. "source": {
  64. "type": "git",
  65. "url": "https://github.com/cebe/markdown.git",
  66. "reference": "c30eb5e01fe021cc5bba2f9ee0eeef96d4931166"
  67. },
  68. "dist": {
  69. "type": "zip",
  70. "url": "https://api.github.com/repos/cebe/markdown/zipball/c30eb5e01fe021cc5bba2f9ee0eeef96d4931166",
  71. "reference": "c30eb5e01fe021cc5bba2f9ee0eeef96d4931166",
  72. "shasum": ""
  73. },
  74. "require": {
  75. "lib-pcre": "*",
  76. "php": ">=5.4.0"
  77. },
  78. "require-dev": {
  79. "cebe/indent": "*",
  80. "facebook/xhprof": "*@dev",
  81. "phpunit/phpunit": "4.1.*"
  82. },
  83. "bin": [
  84. "bin/markdown"
  85. ],
  86. "type": "library",
  87. "extra": {
  88. "branch-alias": {
  89. "dev-master": "1.1.x-dev"
  90. }
  91. },
  92. "autoload": {
  93. "psr-4": {
  94. "cebe\\markdown\\": ""
  95. }
  96. },
  97. "notification-url": "https://packagist.org/downloads/",
  98. "license": [
  99. "MIT"
  100. ],
  101. "authors": [
  102. {
  103. "name": "Carsten Brandt",
  104. "email": "mail@cebe.cc",
  105. "homepage": "http://cebe.cc/",
  106. "role": "Creator"
  107. }
  108. ],
  109. "description": "A super fast, highly extensible markdown parser for PHP",
  110. "homepage": "https://github.com/cebe/markdown#readme",
  111. "keywords": [
  112. "extensible",
  113. "fast",
  114. "gfm",
  115. "markdown",
  116. "markdown-extra"
  117. ],
  118. "time": "2016-09-14T20:40:20+00:00"
  119. },
  120. {
  121. "name": "composer/ca-bundle",
  122. "version": "1.1.0",
  123. "source": {
  124. "type": "git",
  125. "url": "https://github.com/composer/ca-bundle.git",
  126. "reference": "943b2c4fcad1ef178d16a713c2468bf7e579c288"
  127. },
  128. "dist": {
  129. "type": "zip",
  130. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/943b2c4fcad1ef178d16a713c2468bf7e579c288",
  131. "reference": "943b2c4fcad1ef178d16a713c2468bf7e579c288",
  132. "shasum": ""
  133. },
  134. "require": {
  135. "ext-openssl": "*",
  136. "ext-pcre": "*",
  137. "php": "^5.3.2 || ^7.0"
  138. },
  139. "require-dev": {
  140. "phpunit/phpunit": "^4.8.35",
  141. "psr/log": "^1.0",
  142. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  143. },
  144. "type": "library",
  145. "extra": {
  146. "branch-alias": {
  147. "dev-master": "1.x-dev"
  148. }
  149. },
  150. "autoload": {
  151. "psr-4": {
  152. "Composer\\CaBundle\\": "src"
  153. }
  154. },
  155. "notification-url": "https://packagist.org/downloads/",
  156. "license": [
  157. "MIT"
  158. ],
  159. "authors": [
  160. {
  161. "name": "Jordi Boggiano",
  162. "email": "j.boggiano@seld.be",
  163. "homepage": "http://seld.be"
  164. }
  165. ],
  166. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  167. "keywords": [
  168. "cabundle",
  169. "cacert",
  170. "certificate",
  171. "ssl",
  172. "tls"
  173. ],
  174. "time": "2017-11-29T09:37:33+00:00"
  175. },
  176. {
  177. "name": "composer/composer",
  178. "version": "dev-master",
  179. "source": {
  180. "type": "git",
  181. "url": "https://github.com/composer/composer.git",
  182. "reference": "4dc81db069d2622bfbdf889b92b181a81bd67be3"
  183. },
  184. "dist": {
  185. "type": "zip",
  186. "url": "https://api.github.com/repos/composer/composer/zipball/4dc81db069d2622bfbdf889b92b181a81bd67be3",
  187. "reference": "4dc81db069d2622bfbdf889b92b181a81bd67be3",
  188. "shasum": ""
  189. },
  190. "require": {
  191. "composer/ca-bundle": "^1.0",
  192. "composer/semver": "^1.0",
  193. "composer/spdx-licenses": "^1.2",
  194. "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
  195. "php": "^5.3.2 || ^7.0",
  196. "psr/log": "^1.0",
  197. "seld/cli-prompt": "^1.0",
  198. "seld/jsonlint": "^1.4",
  199. "seld/phar-utils": "^1.0",
  200. "symfony/console": "^2.7 || ^3.0 || ^4.0",
  201. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0",
  202. "symfony/finder": "^2.7 || ^3.0 || ^4.0",
  203. "symfony/process": "^2.7 || ^3.0 || ^4.0"
  204. },
  205. "require-dev": {
  206. "phpunit/phpunit": "^4.8.35 || ^5.7",
  207. "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
  208. },
  209. "suggest": {
  210. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  211. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  212. "ext-zlib": "Allow gzip compression of HTTP requests"
  213. },
  214. "bin": [
  215. "bin/composer"
  216. ],
  217. "type": "library",
  218. "extra": {
  219. "branch-alias": {
  220. "dev-master": "1.7-dev"
  221. }
  222. },
  223. "autoload": {
  224. "psr-4": {
  225. "Composer\\": "src/Composer"
  226. }
  227. },
  228. "notification-url": "https://packagist.org/downloads/",
  229. "license": [
  230. "MIT"
  231. ],
  232. "authors": [
  233. {
  234. "name": "Nils Adermann",
  235. "email": "naderman@naderman.de",
  236. "homepage": "http://www.naderman.de"
  237. },
  238. {
  239. "name": "Jordi Boggiano",
  240. "email": "j.boggiano@seld.be",
  241. "homepage": "http://seld.be"
  242. }
  243. ],
  244. "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
  245. "homepage": "https://getcomposer.org/",
  246. "keywords": [
  247. "autoload",
  248. "dependency",
  249. "package"
  250. ],
  251. "time": "2018-01-21T16:40:29+00:00"
  252. },
  253. {
  254. "name": "composer/semver",
  255. "version": "1.4.2",
  256. "source": {
  257. "type": "git",
  258. "url": "https://github.com/composer/semver.git",
  259. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  260. },
  261. "dist": {
  262. "type": "zip",
  263. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  264. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  265. "shasum": ""
  266. },
  267. "require": {
  268. "php": "^5.3.2 || ^7.0"
  269. },
  270. "require-dev": {
  271. "phpunit/phpunit": "^4.5 || ^5.0.5",
  272. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  273. },
  274. "type": "library",
  275. "extra": {
  276. "branch-alias": {
  277. "dev-master": "1.x-dev"
  278. }
  279. },
  280. "autoload": {
  281. "psr-4": {
  282. "Composer\\Semver\\": "src"
  283. }
  284. },
  285. "notification-url": "https://packagist.org/downloads/",
  286. "license": [
  287. "MIT"
  288. ],
  289. "authors": [
  290. {
  291. "name": "Nils Adermann",
  292. "email": "naderman@naderman.de",
  293. "homepage": "http://www.naderman.de"
  294. },
  295. {
  296. "name": "Jordi Boggiano",
  297. "email": "j.boggiano@seld.be",
  298. "homepage": "http://seld.be"
  299. },
  300. {
  301. "name": "Rob Bast",
  302. "email": "rob.bast@gmail.com",
  303. "homepage": "http://robbast.nl"
  304. }
  305. ],
  306. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  307. "keywords": [
  308. "semantic",
  309. "semver",
  310. "validation",
  311. "versioning"
  312. ],
  313. "time": "2016-08-30T16:08:34+00:00"
  314. },
  315. {
  316. "name": "composer/spdx-licenses",
  317. "version": "1.2.0",
  318. "source": {
  319. "type": "git",
  320. "url": "https://github.com/composer/spdx-licenses.git",
  321. "reference": "2d899e9b33023c631854f36c39ef9f8317a7ab33"
  322. },
  323. "dist": {
  324. "type": "zip",
  325. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/2d899e9b33023c631854f36c39ef9f8317a7ab33",
  326. "reference": "2d899e9b33023c631854f36c39ef9f8317a7ab33",
  327. "shasum": ""
  328. },
  329. "require": {
  330. "php": "^5.3.2 || ^7.0"
  331. },
  332. "require-dev": {
  333. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  334. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  335. },
  336. "type": "library",
  337. "extra": {
  338. "branch-alias": {
  339. "dev-master": "1.x-dev"
  340. }
  341. },
  342. "autoload": {
  343. "psr-4": {
  344. "Composer\\Spdx\\": "src"
  345. }
  346. },
  347. "notification-url": "https://packagist.org/downloads/",
  348. "license": [
  349. "MIT"
  350. ],
  351. "authors": [
  352. {
  353. "name": "Nils Adermann",
  354. "email": "naderman@naderman.de",
  355. "homepage": "http://www.naderman.de"
  356. },
  357. {
  358. "name": "Jordi Boggiano",
  359. "email": "j.boggiano@seld.be",
  360. "homepage": "http://seld.be"
  361. },
  362. {
  363. "name": "Rob Bast",
  364. "email": "rob.bast@gmail.com",
  365. "homepage": "http://robbast.nl"
  366. }
  367. ],
  368. "description": "SPDX licenses list and validation library.",
  369. "keywords": [
  370. "license",
  371. "spdx",
  372. "validator"
  373. ],
  374. "time": "2018-01-03T16:37:06+00:00"
  375. },
  376. {
  377. "name": "container-interop/container-interop",
  378. "version": "1.1.0",
  379. "source": {
  380. "type": "git",
  381. "url": "https://github.com/container-interop/container-interop.git",
  382. "reference": "fc08354828f8fd3245f77a66b9e23a6bca48297e"
  383. },
  384. "dist": {
  385. "type": "zip",
  386. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/fc08354828f8fd3245f77a66b9e23a6bca48297e",
  387. "reference": "fc08354828f8fd3245f77a66b9e23a6bca48297e",
  388. "shasum": ""
  389. },
  390. "type": "library",
  391. "autoload": {
  392. "psr-4": {
  393. "Interop\\Container\\": "src/Interop/Container/"
  394. }
  395. },
  396. "notification-url": "https://packagist.org/downloads/",
  397. "license": [
  398. "MIT"
  399. ],
  400. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  401. "time": "2014-12-30T15:22:37+00:00"
  402. },
  403. {
  404. "name": "doctrine/annotations",
  405. "version": "v1.2.7",
  406. "source": {
  407. "type": "git",
  408. "url": "https://github.com/doctrine/annotations.git",
  409. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  410. },
  411. "dist": {
  412. "type": "zip",
  413. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  414. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  415. "shasum": ""
  416. },
  417. "require": {
  418. "doctrine/lexer": "1.*",
  419. "php": ">=5.3.2"
  420. },
  421. "require-dev": {
  422. "doctrine/cache": "1.*",
  423. "phpunit/phpunit": "4.*"
  424. },
  425. "type": "library",
  426. "extra": {
  427. "branch-alias": {
  428. "dev-master": "1.3.x-dev"
  429. }
  430. },
  431. "autoload": {
  432. "psr-0": {
  433. "Doctrine\\Common\\Annotations\\": "lib/"
  434. }
  435. },
  436. "notification-url": "https://packagist.org/downloads/",
  437. "license": [
  438. "MIT"
  439. ],
  440. "authors": [
  441. {
  442. "name": "Roman Borschel",
  443. "email": "roman@code-factory.org"
  444. },
  445. {
  446. "name": "Benjamin Eberlei",
  447. "email": "kontakt@beberlei.de"
  448. },
  449. {
  450. "name": "Guilherme Blanco",
  451. "email": "guilhermeblanco@gmail.com"
  452. },
  453. {
  454. "name": "Jonathan Wage",
  455. "email": "jonwage@gmail.com"
  456. },
  457. {
  458. "name": "Johannes Schmitt",
  459. "email": "schmittjoh@gmail.com"
  460. }
  461. ],
  462. "description": "Docblock Annotations Parser",
  463. "homepage": "http://www.doctrine-project.org",
  464. "keywords": [
  465. "annotations",
  466. "docblock",
  467. "parser"
  468. ],
  469. "time": "2015-08-31T12:32:49+00:00"
  470. },
  471. {
  472. "name": "doctrine/cache",
  473. "version": "v1.6.0",
  474. "source": {
  475. "type": "git",
  476. "url": "https://github.com/doctrine/cache.git",
  477. "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6"
  478. },
  479. "dist": {
  480. "type": "zip",
  481. "url": "https://api.github.com/repos/doctrine/cache/zipball/f8af318d14bdb0eff0336795b428b547bd39ccb6",
  482. "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6",
  483. "shasum": ""
  484. },
  485. "require": {
  486. "php": "~5.5|~7.0"
  487. },
  488. "conflict": {
  489. "doctrine/common": ">2.2,<2.4"
  490. },
  491. "require-dev": {
  492. "phpunit/phpunit": "~4.8|~5.0",
  493. "predis/predis": "~1.0",
  494. "satooshi/php-coveralls": "~0.6"
  495. },
  496. "type": "library",
  497. "extra": {
  498. "branch-alias": {
  499. "dev-master": "1.6.x-dev"
  500. }
  501. },
  502. "autoload": {
  503. "psr-4": {
  504. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  505. }
  506. },
  507. "notification-url": "https://packagist.org/downloads/",
  508. "license": [
  509. "MIT"
  510. ],
  511. "authors": [
  512. {
  513. "name": "Roman Borschel",
  514. "email": "roman@code-factory.org"
  515. },
  516. {
  517. "name": "Benjamin Eberlei",
  518. "email": "kontakt@beberlei.de"
  519. },
  520. {
  521. "name": "Guilherme Blanco",
  522. "email": "guilhermeblanco@gmail.com"
  523. },
  524. {
  525. "name": "Jonathan Wage",
  526. "email": "jonwage@gmail.com"
  527. },
  528. {
  529. "name": "Johannes Schmitt",
  530. "email": "schmittjoh@gmail.com"
  531. }
  532. ],
  533. "description": "Caching library offering an object-oriented API for many cache backends",
  534. "homepage": "http://www.doctrine-project.org",
  535. "keywords": [
  536. "cache",
  537. "caching"
  538. ],
  539. "time": "2015-12-31T16:37:02+00:00"
  540. },
  541. {
  542. "name": "doctrine/collections",
  543. "version": "v1.3.0",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/doctrine/collections.git",
  547. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  552. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  553. "shasum": ""
  554. },
  555. "require": {
  556. "php": ">=5.3.2"
  557. },
  558. "require-dev": {
  559. "phpunit/phpunit": "~4.0"
  560. },
  561. "type": "library",
  562. "extra": {
  563. "branch-alias": {
  564. "dev-master": "1.2.x-dev"
  565. }
  566. },
  567. "autoload": {
  568. "psr-0": {
  569. "Doctrine\\Common\\Collections\\": "lib/"
  570. }
  571. },
  572. "notification-url": "https://packagist.org/downloads/",
  573. "license": [
  574. "MIT"
  575. ],
  576. "authors": [
  577. {
  578. "name": "Roman Borschel",
  579. "email": "roman@code-factory.org"
  580. },
  581. {
  582. "name": "Benjamin Eberlei",
  583. "email": "kontakt@beberlei.de"
  584. },
  585. {
  586. "name": "Guilherme Blanco",
  587. "email": "guilhermeblanco@gmail.com"
  588. },
  589. {
  590. "name": "Jonathan Wage",
  591. "email": "jonwage@gmail.com"
  592. },
  593. {
  594. "name": "Johannes Schmitt",
  595. "email": "schmittjoh@gmail.com"
  596. }
  597. ],
  598. "description": "Collections Abstraction library",
  599. "homepage": "http://www.doctrine-project.org",
  600. "keywords": [
  601. "array",
  602. "collections",
  603. "iterator"
  604. ],
  605. "time": "2015-04-14T22:21:58+00:00"
  606. },
  607. {
  608. "name": "doctrine/common",
  609. "version": "v2.6.1",
  610. "source": {
  611. "type": "git",
  612. "url": "https://github.com/doctrine/common.git",
  613. "reference": "a579557bc689580c19fee4e27487a67fe60defc0"
  614. },
  615. "dist": {
  616. "type": "zip",
  617. "url": "https://api.github.com/repos/doctrine/common/zipball/a579557bc689580c19fee4e27487a67fe60defc0",
  618. "reference": "a579557bc689580c19fee4e27487a67fe60defc0",
  619. "shasum": ""
  620. },
  621. "require": {
  622. "doctrine/annotations": "1.*",
  623. "doctrine/cache": "1.*",
  624. "doctrine/collections": "1.*",
  625. "doctrine/inflector": "1.*",
  626. "doctrine/lexer": "1.*",
  627. "php": "~5.5|~7.0"
  628. },
  629. "require-dev": {
  630. "phpunit/phpunit": "~4.8|~5.0"
  631. },
  632. "type": "library",
  633. "extra": {
  634. "branch-alias": {
  635. "dev-master": "2.7.x-dev"
  636. }
  637. },
  638. "autoload": {
  639. "psr-4": {
  640. "Doctrine\\Common\\": "lib/Doctrine/Common"
  641. }
  642. },
  643. "notification-url": "https://packagist.org/downloads/",
  644. "license": [
  645. "MIT"
  646. ],
  647. "authors": [
  648. {
  649. "name": "Roman Borschel",
  650. "email": "roman@code-factory.org"
  651. },
  652. {
  653. "name": "Benjamin Eberlei",
  654. "email": "kontakt@beberlei.de"
  655. },
  656. {
  657. "name": "Guilherme Blanco",
  658. "email": "guilhermeblanco@gmail.com"
  659. },
  660. {
  661. "name": "Jonathan Wage",
  662. "email": "jonwage@gmail.com"
  663. },
  664. {
  665. "name": "Johannes Schmitt",
  666. "email": "schmittjoh@gmail.com"
  667. }
  668. ],
  669. "description": "Common Library for Doctrine projects",
  670. "homepage": "http://www.doctrine-project.org",
  671. "keywords": [
  672. "annotations",
  673. "collections",
  674. "eventmanager",
  675. "persistence",
  676. "spl"
  677. ],
  678. "time": "2015-12-25T13:18:31+00:00"
  679. },
  680. {
  681. "name": "doctrine/dbal",
  682. "version": "v2.5.5",
  683. "source": {
  684. "type": "git",
  685. "url": "https://github.com/doctrine/dbal.git",
  686. "reference": "9f8c05cd5225a320d56d4bfdb4772f10d045a0c9"
  687. },
  688. "dist": {
  689. "type": "zip",
  690. "url": "https://api.github.com/repos/doctrine/dbal/zipball/9f8c05cd5225a320d56d4bfdb4772f10d045a0c9",
  691. "reference": "9f8c05cd5225a320d56d4bfdb4772f10d045a0c9",
  692. "shasum": ""
  693. },
  694. "require": {
  695. "doctrine/common": ">=2.4,<2.7-dev",
  696. "php": ">=5.3.2"
  697. },
  698. "require-dev": {
  699. "phpunit/phpunit": "4.*",
  700. "symfony/console": "2.*||^3.0"
  701. },
  702. "suggest": {
  703. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  704. },
  705. "bin": [
  706. "bin/doctrine-dbal"
  707. ],
  708. "type": "library",
  709. "extra": {
  710. "branch-alias": {
  711. "dev-master": "2.5.x-dev"
  712. }
  713. },
  714. "autoload": {
  715. "psr-0": {
  716. "Doctrine\\DBAL\\": "lib/"
  717. }
  718. },
  719. "notification-url": "https://packagist.org/downloads/",
  720. "license": [
  721. "MIT"
  722. ],
  723. "authors": [
  724. {
  725. "name": "Roman Borschel",
  726. "email": "roman@code-factory.org"
  727. },
  728. {
  729. "name": "Benjamin Eberlei",
  730. "email": "kontakt@beberlei.de"
  731. },
  732. {
  733. "name": "Guilherme Blanco",
  734. "email": "guilhermeblanco@gmail.com"
  735. },
  736. {
  737. "name": "Jonathan Wage",
  738. "email": "jonwage@gmail.com"
  739. }
  740. ],
  741. "description": "Database Abstraction Layer",
  742. "homepage": "http://www.doctrine-project.org",
  743. "keywords": [
  744. "database",
  745. "dbal",
  746. "persistence",
  747. "queryobject"
  748. ],
  749. "time": "2016-09-09T19:13:33+00:00"
  750. },
  751. {
  752. "name": "doctrine/doctrine-bundle",
  753. "version": "1.6.4",
  754. "source": {
  755. "type": "git",
  756. "url": "https://github.com/doctrine/DoctrineBundle.git",
  757. "reference": "dd40b0a7fb16658cda9def9786992b8df8a49be7"
  758. },
  759. "dist": {
  760. "type": "zip",
  761. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/dd40b0a7fb16658cda9def9786992b8df8a49be7",
  762. "reference": "dd40b0a7fb16658cda9def9786992b8df8a49be7",
  763. "shasum": ""
  764. },
  765. "require": {
  766. "doctrine/dbal": "~2.3",
  767. "doctrine/doctrine-cache-bundle": "~1.0",
  768. "jdorn/sql-formatter": "~1.1",
  769. "php": ">=5.3.2",
  770. "symfony/console": "~2.3|~3.0",
  771. "symfony/dependency-injection": "~2.3|~3.0",
  772. "symfony/doctrine-bridge": "~2.2|~3.0",
  773. "symfony/framework-bundle": "~2.3|~3.0"
  774. },
  775. "require-dev": {
  776. "doctrine/orm": "~2.3",
  777. "phpunit/phpunit": "~4",
  778. "satooshi/php-coveralls": "~0.6.1",
  779. "symfony/phpunit-bridge": "~2.7|~3.0",
  780. "symfony/property-info": "~2.8|~3.0",
  781. "symfony/validator": "~2.2|~3.0",
  782. "symfony/yaml": "~2.2|~3.0",
  783. "twig/twig": "~1.10"
  784. },
  785. "suggest": {
  786. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  787. "symfony/web-profiler-bundle": "To use the data collector."
  788. },
  789. "type": "symfony-bundle",
  790. "extra": {
  791. "branch-alias": {
  792. "dev-master": "1.6.x-dev"
  793. }
  794. },
  795. "autoload": {
  796. "psr-4": {
  797. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  798. }
  799. },
  800. "notification-url": "https://packagist.org/downloads/",
  801. "license": [
  802. "MIT"
  803. ],
  804. "authors": [
  805. {
  806. "name": "Symfony Community",
  807. "homepage": "http://symfony.com/contributors"
  808. },
  809. {
  810. "name": "Benjamin Eberlei",
  811. "email": "kontakt@beberlei.de"
  812. },
  813. {
  814. "name": "Doctrine Project",
  815. "homepage": "http://www.doctrine-project.org/"
  816. },
  817. {
  818. "name": "Fabien Potencier",
  819. "email": "fabien@symfony.com"
  820. }
  821. ],
  822. "description": "Symfony DoctrineBundle",
  823. "homepage": "http://www.doctrine-project.org",
  824. "keywords": [
  825. "database",
  826. "dbal",
  827. "orm",
  828. "persistence"
  829. ],
  830. "time": "2016-08-10T15:35:22+00:00"
  831. },
  832. {
  833. "name": "doctrine/doctrine-cache-bundle",
  834. "version": "1.3.0",
  835. "source": {
  836. "type": "git",
  837. "url": "https://github.com/doctrine/DoctrineCacheBundle.git",
  838. "reference": "18c600a9b82f6454d2e81ca4957cdd56a1cf3504"
  839. },
  840. "dist": {
  841. "type": "zip",
  842. "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/18c600a9b82f6454d2e81ca4957cdd56a1cf3504",
  843. "reference": "18c600a9b82f6454d2e81ca4957cdd56a1cf3504",
  844. "shasum": ""
  845. },
  846. "require": {
  847. "doctrine/cache": "^1.4.2",
  848. "doctrine/inflector": "~1.0",
  849. "php": ">=5.3.2",
  850. "symfony/doctrine-bridge": "~2.2|~3.0"
  851. },
  852. "require-dev": {
  853. "instaclick/coding-standard": "~1.1",
  854. "instaclick/object-calisthenics-sniffs": "dev-master",
  855. "instaclick/symfony2-coding-standard": "dev-remaster",
  856. "phpunit/phpunit": "~4",
  857. "predis/predis": "~0.8",
  858. "satooshi/php-coveralls": "~0.6.1",
  859. "squizlabs/php_codesniffer": "~1.5",
  860. "symfony/console": "~2.2|~3.0",
  861. "symfony/finder": "~2.2|~3.0",
  862. "symfony/framework-bundle": "~2.2|~3.0",
  863. "symfony/phpunit-bridge": "~2.7|~3.0",
  864. "symfony/security-acl": "~2.3|~3.0",
  865. "symfony/validator": "~2.2|~3.0",
  866. "symfony/yaml": "~2.2|~3.0"
  867. },
  868. "suggest": {
  869. "symfony/security-acl": "For using this bundle to cache ACLs"
  870. },
  871. "type": "symfony-bundle",
  872. "extra": {
  873. "branch-alias": {
  874. "dev-master": "1.2.x-dev"
  875. }
  876. },
  877. "autoload": {
  878. "psr-4": {
  879. "Doctrine\\Bundle\\DoctrineCacheBundle\\": ""
  880. }
  881. },
  882. "notification-url": "https://packagist.org/downloads/",
  883. "license": [
  884. "MIT"
  885. ],
  886. "authors": [
  887. {
  888. "name": "Symfony Community",
  889. "homepage": "http://symfony.com/contributors"
  890. },
  891. {
  892. "name": "Benjamin Eberlei",
  893. "email": "kontakt@beberlei.de"
  894. },
  895. {
  896. "name": "Fabio B. Silva",
  897. "email": "fabio.bat.silva@gmail.com"
  898. },
  899. {
  900. "name": "Guilherme Blanco",
  901. "email": "guilhermeblanco@hotmail.com"
  902. },
  903. {
  904. "name": "Doctrine Project",
  905. "homepage": "http://www.doctrine-project.org/"
  906. },
  907. {
  908. "name": "Fabien Potencier",
  909. "email": "fabien@symfony.com"
  910. }
  911. ],
  912. "description": "Symfony Bundle for Doctrine Cache",
  913. "homepage": "http://www.doctrine-project.org",
  914. "keywords": [
  915. "cache",
  916. "caching"
  917. ],
  918. "time": "2016-01-26T17:28:51+00:00"
  919. },
  920. {
  921. "name": "doctrine/inflector",
  922. "version": "v1.1.0",
  923. "source": {
  924. "type": "git",
  925. "url": "https://github.com/doctrine/inflector.git",
  926. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
  927. },
  928. "dist": {
  929. "type": "zip",
  930. "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae",
  931. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
  932. "shasum": ""
  933. },
  934. "require": {
  935. "php": ">=5.3.2"
  936. },
  937. "require-dev": {
  938. "phpunit/phpunit": "4.*"
  939. },
  940. "type": "library",
  941. "extra": {
  942. "branch-alias": {
  943. "dev-master": "1.1.x-dev"
  944. }
  945. },
  946. "autoload": {
  947. "psr-0": {
  948. "Doctrine\\Common\\Inflector\\": "lib/"
  949. }
  950. },
  951. "notification-url": "https://packagist.org/downloads/",
  952. "license": [
  953. "MIT"
  954. ],
  955. "authors": [
  956. {
  957. "name": "Roman Borschel",
  958. "email": "roman@code-factory.org"
  959. },
  960. {
  961. "name": "Benjamin Eberlei",
  962. "email": "kontakt@beberlei.de"
  963. },
  964. {
  965. "name": "Guilherme Blanco",
  966. "email": "guilhermeblanco@gmail.com"
  967. },
  968. {
  969. "name": "Jonathan Wage",
  970. "email": "jonwage@gmail.com"
  971. },
  972. {
  973. "name": "Johannes Schmitt",
  974. "email": "schmittjoh@gmail.com"
  975. }
  976. ],
  977. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  978. "homepage": "http://www.doctrine-project.org",
  979. "keywords": [
  980. "inflection",
  981. "pluralize",
  982. "singularize",
  983. "string"
  984. ],
  985. "time": "2015-11-06T14:35:42+00:00"
  986. },
  987. {
  988. "name": "doctrine/instantiator",
  989. "version": "1.0.5",
  990. "source": {
  991. "type": "git",
  992. "url": "https://github.com/doctrine/instantiator.git",
  993. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  994. },
  995. "dist": {
  996. "type": "zip",
  997. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  998. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  999. "shasum": ""
  1000. },
  1001. "require": {
  1002. "php": ">=5.3,<8.0-DEV"
  1003. },
  1004. "require-dev": {
  1005. "athletic/athletic": "~0.1.8",
  1006. "ext-pdo": "*",
  1007. "ext-phar": "*",
  1008. "phpunit/phpunit": "~4.0",
  1009. "squizlabs/php_codesniffer": "~2.0"
  1010. },
  1011. "type": "library",
  1012. "extra": {
  1013. "branch-alias": {
  1014. "dev-master": "1.0.x-dev"
  1015. }
  1016. },
  1017. "autoload": {
  1018. "psr-4": {
  1019. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "MIT"
  1025. ],
  1026. "authors": [
  1027. {
  1028. "name": "Marco Pivetta",
  1029. "email": "ocramius@gmail.com",
  1030. "homepage": "http://ocramius.github.com/"
  1031. }
  1032. ],
  1033. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1034. "homepage": "https://github.com/doctrine/instantiator",
  1035. "keywords": [
  1036. "constructor",
  1037. "instantiate"
  1038. ],
  1039. "time": "2015-06-14T21:17:01+00:00"
  1040. },
  1041. {
  1042. "name": "doctrine/lexer",
  1043. "version": "v1.0.1",
  1044. "source": {
  1045. "type": "git",
  1046. "url": "https://github.com/doctrine/lexer.git",
  1047. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1048. },
  1049. "dist": {
  1050. "type": "zip",
  1051. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1052. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1053. "shasum": ""
  1054. },
  1055. "require": {
  1056. "php": ">=5.3.2"
  1057. },
  1058. "type": "library",
  1059. "extra": {
  1060. "branch-alias": {
  1061. "dev-master": "1.0.x-dev"
  1062. }
  1063. },
  1064. "autoload": {
  1065. "psr-0": {
  1066. "Doctrine\\Common\\Lexer\\": "lib/"
  1067. }
  1068. },
  1069. "notification-url": "https://packagist.org/downloads/",
  1070. "license": [
  1071. "MIT"
  1072. ],
  1073. "authors": [
  1074. {
  1075. "name": "Roman Borschel",
  1076. "email": "roman@code-factory.org"
  1077. },
  1078. {
  1079. "name": "Guilherme Blanco",
  1080. "email": "guilhermeblanco@gmail.com"
  1081. },
  1082. {
  1083. "name": "Johannes Schmitt",
  1084. "email": "schmittjoh@gmail.com"
  1085. }
  1086. ],
  1087. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1088. "homepage": "http://www.doctrine-project.org",
  1089. "keywords": [
  1090. "lexer",
  1091. "parser"
  1092. ],
  1093. "time": "2014-09-09T13:34:57+00:00"
  1094. },
  1095. {
  1096. "name": "doctrine/orm",
  1097. "version": "v2.5.4",
  1098. "source": {
  1099. "type": "git",
  1100. "url": "https://github.com/doctrine/doctrine2.git",
  1101. "reference": "bc4ddbfb0114cb33438cc811c9a740d8aa304aab"
  1102. },
  1103. "dist": {
  1104. "type": "zip",
  1105. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/bc4ddbfb0114cb33438cc811c9a740d8aa304aab",
  1106. "reference": "bc4ddbfb0114cb33438cc811c9a740d8aa304aab",
  1107. "shasum": ""
  1108. },
  1109. "require": {
  1110. "doctrine/cache": "~1.4",
  1111. "doctrine/collections": "~1.2",
  1112. "doctrine/common": ">=2.5-dev,<2.7-dev",
  1113. "doctrine/dbal": ">=2.5-dev,<2.6-dev",
  1114. "doctrine/instantiator": "~1.0.1",
  1115. "ext-pdo": "*",
  1116. "php": ">=5.4",
  1117. "symfony/console": "~2.5|~3.0"
  1118. },
  1119. "require-dev": {
  1120. "phpunit/phpunit": "~4.0",
  1121. "symfony/yaml": "~2.3|~3.0"
  1122. },
  1123. "suggest": {
  1124. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1125. },
  1126. "bin": [
  1127. "bin/doctrine",
  1128. "bin/doctrine.php"
  1129. ],
  1130. "type": "library",
  1131. "extra": {
  1132. "branch-alias": {
  1133. "dev-master": "2.6.x-dev"
  1134. }
  1135. },
  1136. "autoload": {
  1137. "psr-0": {
  1138. "Doctrine\\ORM\\": "lib/"
  1139. }
  1140. },
  1141. "notification-url": "https://packagist.org/downloads/",
  1142. "license": [
  1143. "MIT"
  1144. ],
  1145. "authors": [
  1146. {
  1147. "name": "Roman Borschel",
  1148. "email": "roman@code-factory.org"
  1149. },
  1150. {
  1151. "name": "Benjamin Eberlei",
  1152. "email": "kontakt@beberlei.de"
  1153. },
  1154. {
  1155. "name": "Guilherme Blanco",
  1156. "email": "guilhermeblanco@gmail.com"
  1157. },
  1158. {
  1159. "name": "Jonathan Wage",
  1160. "email": "jonwage@gmail.com"
  1161. }
  1162. ],
  1163. "description": "Object-Relational-Mapper for PHP",
  1164. "homepage": "http://www.doctrine-project.org",
  1165. "keywords": [
  1166. "database",
  1167. "orm"
  1168. ],
  1169. "time": "2016-01-05T21:34:58+00:00"
  1170. },
  1171. {
  1172. "name": "ezyang/htmlpurifier",
  1173. "version": "v4.8.0",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/ezyang/htmlpurifier.git",
  1177. "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2",
  1182. "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "php": ">=5.2"
  1187. },
  1188. "type": "library",
  1189. "autoload": {
  1190. "psr-0": {
  1191. "HTMLPurifier": "library/"
  1192. },
  1193. "files": [
  1194. "library/HTMLPurifier.composer.php"
  1195. ]
  1196. },
  1197. "notification-url": "https://packagist.org/downloads/",
  1198. "license": [
  1199. "LGPL"
  1200. ],
  1201. "authors": [
  1202. {
  1203. "name": "Edward Z. Yang",
  1204. "email": "admin@htmlpurifier.org",
  1205. "homepage": "http://ezyang.com"
  1206. }
  1207. ],
  1208. "description": "Standards compliant HTML filter written in PHP",
  1209. "homepage": "http://htmlpurifier.org/",
  1210. "keywords": [
  1211. "html"
  1212. ],
  1213. "time": "2016-07-16T12:58:58+00:00"
  1214. },
  1215. {
  1216. "name": "friendsofsymfony/user-bundle",
  1217. "version": "dev-master",
  1218. "source": {
  1219. "type": "git",
  1220. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle.git",
  1221. "reference": "528f0a93aebb641a0bc6471cc24562fbd01432cb"
  1222. },
  1223. "dist": {
  1224. "type": "zip",
  1225. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/528f0a93aebb641a0bc6471cc24562fbd01432cb",
  1226. "reference": "528f0a93aebb641a0bc6471cc24562fbd01432cb",
  1227. "shasum": ""
  1228. },
  1229. "require": {
  1230. "php": ">=5.3.9",
  1231. "symfony/form": "~2.3|~3.0",
  1232. "symfony/framework-bundle": "~2.3|~3.0",
  1233. "symfony/security-bundle": "~2.3|~3.0",
  1234. "symfony/twig-bundle": "~2.3|~3.0"
  1235. },
  1236. "conflict": {
  1237. "symfony/doctrine-bridge": "<2.3"
  1238. },
  1239. "require-dev": {
  1240. "doctrine/doctrine-bundle": "~1.3",
  1241. "swiftmailer/swiftmailer": "~4.3|~5",
  1242. "symfony/console": "~2.3|~3.0",
  1243. "symfony/phpunit-bridge": "~2.7|~3.0",
  1244. "symfony/validator": "~2.3|~3.0",
  1245. "symfony/yaml": "~2.3|~3.0",
  1246. "willdurand/propel-typehintable-behavior": "~1.0"
  1247. },
  1248. "suggest": {
  1249. "willdurand/propel-typehintable-behavior": "Needed when using the propel implementation"
  1250. },
  1251. "type": "symfony-bundle",
  1252. "extra": {
  1253. "branch-alias": {
  1254. "dev-master": "2.0.x-dev"
  1255. }
  1256. },
  1257. "autoload": {
  1258. "psr-4": {
  1259. "FOS\\UserBundle\\": ""
  1260. }
  1261. },
  1262. "notification-url": "https://packagist.org/downloads/",
  1263. "license": [
  1264. "MIT"
  1265. ],
  1266. "authors": [
  1267. {
  1268. "name": "Christophe Coevoet",
  1269. "email": "stof@notk.org"
  1270. },
  1271. {
  1272. "name": "FriendsOfSymfony Community",
  1273. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  1274. },
  1275. {
  1276. "name": "Thibault Duplessis",
  1277. "email": "thibault.duplessis@gmail.com"
  1278. }
  1279. ],
  1280. "description": "Symfony FOSUserBundle",
  1281. "homepage": "http://friendsofsymfony.github.com",
  1282. "keywords": [
  1283. "User management"
  1284. ],
  1285. "time": "2016-09-09T10:00:40+00:00"
  1286. },
  1287. {
  1288. "name": "hwi/oauth-bundle",
  1289. "version": "0.4.2",
  1290. "source": {
  1291. "type": "git",
  1292. "url": "https://github.com/hwi/HWIOAuthBundle.git",
  1293. "reference": "2554f2b2947d1614d9e8b04800967b175b0afd8a"
  1294. },
  1295. "dist": {
  1296. "type": "zip",
  1297. "url": "https://api.github.com/repos/hwi/HWIOAuthBundle/zipball/2554f2b2947d1614d9e8b04800967b175b0afd8a",
  1298. "reference": "2554f2b2947d1614d9e8b04800967b175b0afd8a",
  1299. "shasum": ""
  1300. },
  1301. "require": {
  1302. "kriswallsmith/buzz": "~0.13",
  1303. "php": ">=5.3.3",
  1304. "symfony/form": "~2.3",
  1305. "symfony/framework-bundle": "~2.3",
  1306. "symfony/options-resolver": "~2.3",
  1307. "symfony/security-bundle": "~2.3",
  1308. "symfony/yaml": "~2.3"
  1309. },
  1310. "conflict": {
  1311. "twig/twig": "<1.12"
  1312. },
  1313. "require-dev": {
  1314. "doctrine/orm": "~2.3",
  1315. "friendsofsymfony/user-bundle": "~1.3|~2.0",
  1316. "phpunit/phpunit": "~4.8|~5.0",
  1317. "symfony/phpunit-bridge": "~2.7",
  1318. "symfony/property-access": "~2.3",
  1319. "symfony/twig-bundle": "~2.3",
  1320. "symfony/validator": "~2.3"
  1321. },
  1322. "suggest": {
  1323. "doctrine/doctrine-bundle": "to use Doctrine user provider",
  1324. "friendsofsymfony/user-bundle": "to connect FOSUB with this bundle",
  1325. "symfony/property-access": "to use FOSUB integration with this bundle",
  1326. "symfony/twig-bundle": "to use the Twig hwi_oauth_* functions"
  1327. },
  1328. "type": "symfony-bundle",
  1329. "extra": {
  1330. "branch-alias": {
  1331. "dev-master": "0.4-dev"
  1332. }
  1333. },
  1334. "autoload": {
  1335. "psr-4": {
  1336. "HWI\\Bundle\\OAuthBundle\\": ""
  1337. }
  1338. },
  1339. "notification-url": "https://packagist.org/downloads/",
  1340. "license": [
  1341. "MIT"
  1342. ],
  1343. "authors": [
  1344. {
  1345. "name": "Contributors",
  1346. "homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
  1347. },
  1348. {
  1349. "name": "Joseph Bielawski",
  1350. "email": "stloyd@gmail.com"
  1351. },
  1352. {
  1353. "name": "Alexander",
  1354. "email": "iam.asm89@gmail.com"
  1355. },
  1356. {
  1357. "name": "Geoffrey Bachelet",
  1358. "email": "geoffrey.bachelet@gmail.com"
  1359. }
  1360. ],
  1361. "description": "Support for authenticating users using both OAuth1.0a and OAuth2 in Symfony2.",
  1362. "homepage": "http://github.com/hwi/HWIOAuthBundle",
  1363. "keywords": [
  1364. "37signals",
  1365. "Authentication",
  1366. "Deezer",
  1367. "EVE Online",
  1368. "amazon",
  1369. "auth0",
  1370. "azure",
  1371. "bitbucket",
  1372. "bitly",
  1373. "box",
  1374. "bufferapp",
  1375. "dailymotion",
  1376. "deviantart",
  1377. "discogs",
  1378. "disqus",
  1379. "dropbox",
  1380. "eventbrite",
  1381. "facebook",
  1382. "firewall",
  1383. "fiware",
  1384. "flickr",
  1385. "foursquare",
  1386. "github",
  1387. "google",
  1388. "hubic",
  1389. "instagram",
  1390. "jira",
  1391. "linkedin",
  1392. "mail.ru",
  1393. "oauth",
  1394. "oauth1",
  1395. "oauth2",
  1396. "odnoklassniki",
  1397. "paypal",
  1398. "qq",
  1399. "reddit",
  1400. "runkeeper",
  1401. "salesforce",
  1402. "security",
  1403. "sensio connect",
  1404. "sina weibo",
  1405. "slack",
  1406. "sound cloud",
  1407. "spotify",
  1408. "stack exchange",
  1409. "stereomood",
  1410. "strava",
  1411. "toshl",
  1412. "trakt",
  1413. "trello",
  1414. "twitch",
  1415. "twitter",
  1416. "vkontakte",
  1417. "wechat",
  1418. "windows live",
  1419. "wordpress",
  1420. "xing",
  1421. "yahoo",
  1422. "yandex",
  1423. "youtube"
  1424. ],
  1425. "time": "2016-07-27T14:43:30+00:00"
  1426. },
  1427. {
  1428. "name": "ircmaxell/password-compat",
  1429. "version": "v1.0.4",
  1430. "source": {
  1431. "type": "git",
  1432. "url": "https://github.com/ircmaxell/password_compat.git",
  1433. "reference": "5c5cde8822a69545767f7c7f3058cb15ff84614c"
  1434. },
  1435. "dist": {
  1436. "type": "zip",
  1437. "url": "https://api.github.com/repos/ircmaxell/password_compat/zipball/5c5cde8822a69545767f7c7f3058cb15ff84614c",
  1438. "reference": "5c5cde8822a69545767f7c7f3058cb15ff84614c",
  1439. "shasum": ""
  1440. },
  1441. "require-dev": {
  1442. "phpunit/phpunit": "4.*"
  1443. },
  1444. "type": "library",
  1445. "autoload": {
  1446. "files": [
  1447. "lib/password.php"
  1448. ]
  1449. },
  1450. "notification-url": "https://packagist.org/downloads/",
  1451. "license": [
  1452. "MIT"
  1453. ],
  1454. "authors": [
  1455. {
  1456. "name": "Anthony Ferrara",
  1457. "email": "ircmaxell@php.net",
  1458. "homepage": "http://blog.ircmaxell.com"
  1459. }
  1460. ],
  1461. "description": "A compatibility library for the proposed simplified password hashing algorithm: https://wiki.php.net/rfc/password_hash",
  1462. "homepage": "https://github.com/ircmaxell/password_compat",
  1463. "keywords": [
  1464. "hashing",
  1465. "password"
  1466. ],
  1467. "time": "2014-11-20T16:49:30+00:00"
  1468. },
  1469. {
  1470. "name": "jdorn/sql-formatter",
  1471. "version": "v1.2.17",
  1472. "source": {
  1473. "type": "git",
  1474. "url": "https://github.com/jdorn/sql-formatter.git",
  1475. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  1476. },
  1477. "dist": {
  1478. "type": "zip",
  1479. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  1480. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  1481. "shasum": ""
  1482. },
  1483. "require": {
  1484. "php": ">=5.2.4"
  1485. },
  1486. "require-dev": {
  1487. "phpunit/phpunit": "3.7.*"
  1488. },
  1489. "type": "library",
  1490. "extra": {
  1491. "branch-alias": {
  1492. "dev-master": "1.3.x-dev"
  1493. }
  1494. },
  1495. "autoload": {
  1496. "classmap": [
  1497. "lib"
  1498. ]
  1499. },
  1500. "notification-url": "https://packagist.org/downloads/",
  1501. "license": [
  1502. "MIT"
  1503. ],
  1504. "authors": [
  1505. {
  1506. "name": "Jeremy Dorn",
  1507. "email": "jeremy@jeremydorn.com",
  1508. "homepage": "http://jeremydorn.com/"
  1509. }
  1510. ],
  1511. "description": "a PHP SQL highlighting library",
  1512. "homepage": "https://github.com/jdorn/sql-formatter/",
  1513. "keywords": [
  1514. "highlight",
  1515. "sql"
  1516. ],
  1517. "time": "2014-01-12T16:20:24+00:00"
  1518. },
  1519. {
  1520. "name": "jms/aop-bundle",
  1521. "version": "1.2.0",
  1522. "source": {
  1523. "type": "git",
  1524. "url": "https://github.com/schmittjoh/JMSAopBundle.git",
  1525. "reference": "78000d007e74283cc564a58e184d7f62548ad394"
  1526. },
  1527. "dist": {
  1528. "type": "zip",
  1529. "url": "https://api.github.com/repos/schmittjoh/JMSAopBundle/zipball/78000d007e74283cc564a58e184d7f62548ad394",
  1530. "reference": "78000d007e74283cc564a58e184d7f62548ad394",
  1531. "shasum": ""
  1532. },
  1533. "require": {
  1534. "jms/cg": "^1.1",
  1535. "php": ">=5.3.9",
  1536. "symfony/framework-bundle": "^2.3|^3.0"
  1537. },
  1538. "require-dev": {
  1539. "symfony/phpunit-bridge": "^2.7"
  1540. },
  1541. "type": "symfony-bundle",
  1542. "extra": {
  1543. "branch-alias": {
  1544. "dev-master": "1.1.x-dev"
  1545. }
  1546. },
  1547. "autoload": {
  1548. "psr-4": {
  1549. "JMS\\AopBundle\\": ""
  1550. }
  1551. },
  1552. "notification-url": "https://packagist.org/downloads/",
  1553. "license": [
  1554. "Apache-2.0"
  1555. ],
  1556. "authors": [
  1557. {
  1558. "name": "Johannes M. Schmitt",
  1559. "email": "schmittjoh@gmail.com"
  1560. }
  1561. ],
  1562. "description": "Adds AOP capabilities to Symfony2",
  1563. "keywords": [
  1564. "annotations",
  1565. "aop"
  1566. ],
  1567. "time": "2015-12-09T16:30:46+00:00"
  1568. },
  1569. {
  1570. "name": "jms/cg",
  1571. "version": "1.2.0",
  1572. "source": {
  1573. "type": "git",
  1574. "url": "https://github.com/schmittjoh/cg-library.git",
  1575. "reference": "2152ea2c48f746a676debb841644ae64cae27835"
  1576. },
  1577. "dist": {
  1578. "type": "zip",
  1579. "url": "https://api.github.com/repos/schmittjoh/cg-library/zipball/2152ea2c48f746a676debb841644ae64cae27835",
  1580. "reference": "2152ea2c48f746a676debb841644ae64cae27835",
  1581. "shasum": ""
  1582. },
  1583. "require": {
  1584. "php": ">=5.3.0"
  1585. },
  1586. "require-dev": {
  1587. "phpunit/phpunit": ">=4.5"
  1588. },
  1589. "type": "library",
  1590. "extra": {
  1591. "branch-alias": {
  1592. "dev-master": "1.1-dev"
  1593. }
  1594. },
  1595. "autoload": {
  1596. "psr-0": {
  1597. "CG\\": "src/"
  1598. }
  1599. },
  1600. "notification-url": "https://packagist.org/downloads/",
  1601. "license": [
  1602. "Apache2"
  1603. ],
  1604. "authors": [
  1605. {
  1606. "name": "Johannes M. Schmitt",
  1607. "email": "schmittjoh@gmail.com"
  1608. }
  1609. ],
  1610. "description": "Toolset for generating PHP code",
  1611. "keywords": [
  1612. "code generation"
  1613. ],
  1614. "time": "2016-04-07T10:21:44+00:00"
  1615. },
  1616. {
  1617. "name": "jms/di-extra-bundle",
  1618. "version": "1.8.0",
  1619. "source": {
  1620. "type": "git",
  1621. "url": "https://github.com/schmittjoh/JMSDiExtraBundle.git",
  1622. "reference": "7c8e23ffd65eb05f7b76869aa8ef1949e90789c7"
  1623. },
  1624. "dist": {
  1625. "type": "zip",
  1626. "url": "https://api.github.com/repos/schmittjoh/JMSDiExtraBundle/zipball/7c8e23ffd65eb05f7b76869aa8ef1949e90789c7",
  1627. "reference": "7c8e23ffd65eb05f7b76869aa8ef1949e90789c7",
  1628. "shasum": ""
  1629. },
  1630. "require": {
  1631. "jms/aop-bundle": "~1.1",
  1632. "jms/metadata": "~1.0",
  1633. "php": "~5.3|~7.0",
  1634. "symfony/dependency-injection": "~2.3|~3.0",
  1635. "symfony/finder": "~2.3|~3.0",
  1636. "symfony/framework-bundle": "~2.3|~3.0",
  1637. "symfony/http-kernel": "^2.3.24|~3.0",
  1638. "symfony/process": "~2.3|~3.0",
  1639. "symfony/routing": "~2.3|~3.0"
  1640. },
  1641. "require-dev": {
  1642. "doctrine/doctrine-bundle": "~1.5",
  1643. "doctrine/orm": "~2.3",
  1644. "jms/security-extra-bundle": "~1.0",
  1645. "phpcollection/phpcollection": ">=0.2,<0.3-dev",
  1646. "sensio/framework-extra-bundle": "~2.0|~3.0",
  1647. "symfony/browser-kit": "~2.3|~3.0",
  1648. "symfony/class-loader": "~2.3|~3.0",
  1649. "symfony/expression-language": "~2.6|~3.0",
  1650. "symfony/form": "~2.3|~3.0",
  1651. "symfony/phpunit-bridge": "~2.7",
  1652. "symfony/security-bundle": "~2.3",
  1653. "symfony/twig-bundle": "~2.3|~3.0",
  1654. "symfony/validator": "~2.3|~3.0",
  1655. "symfony/yaml": "~2.3|~3.0"
  1656. },
  1657. "type": "symfony-bundle",
  1658. "extra": {
  1659. "branch-alias": {
  1660. "dev-master": "1.7-dev"
  1661. }
  1662. },
  1663. "autoload": {
  1664. "psr-4": {
  1665. "JMS\\DiExtraBundle\\": ""
  1666. }
  1667. },
  1668. "notification-url": "https://packagist.org/downloads/",
  1669. "license": [
  1670. "Apache-2.0"
  1671. ],
  1672. "authors": [
  1673. {
  1674. "name": "Johannes M. Schmitt",
  1675. "email": "schmittjoh@gmail.com"
  1676. }
  1677. ],
  1678. "description": "Allows to configure dependency injection using annotations",
  1679. "homepage": "http://jmsyst.com/bundles/JMSDiExtraBundle",
  1680. "keywords": [
  1681. "annotations",
  1682. "dependency injection"
  1683. ],
  1684. "time": "2016-09-09T12:35:58+00:00"
  1685. },
  1686. {
  1687. "name": "jms/metadata",
  1688. "version": "1.5.1",
  1689. "source": {
  1690. "type": "git",
  1691. "url": "https://github.com/schmittjoh/metadata.git",
  1692. "reference": "22b72455559a25777cfd28c4ffda81ff7639f353"
  1693. },
  1694. "dist": {
  1695. "type": "zip",
  1696. "url": "https://api.github.com/repos/schmittjoh/metadata/zipball/22b72455559a25777cfd28c4ffda81ff7639f353",
  1697. "reference": "22b72455559a25777cfd28c4ffda81ff7639f353",
  1698. "shasum": ""
  1699. },
  1700. "require": {
  1701. "php": ">=5.3.0"
  1702. },
  1703. "require-dev": {
  1704. "doctrine/cache": "~1.0"
  1705. },
  1706. "type": "library",
  1707. "extra": {
  1708. "branch-alias": {
  1709. "dev-master": "1.5.x-dev"
  1710. }
  1711. },
  1712. "autoload": {
  1713. "psr-0": {
  1714. "Metadata\\": "src/"
  1715. }
  1716. },
  1717. "notification-url": "https://packagist.org/downloads/",
  1718. "license": [
  1719. "Apache"
  1720. ],
  1721. "authors": [
  1722. {
  1723. "name": "Johannes Schmitt",
  1724. "email": "schmittjoh@gmail.com",
  1725. "homepage": "https://github.com/schmittjoh",
  1726. "role": "Developer of wrapped JMSSerializerBundle"
  1727. }
  1728. ],
  1729. "description": "Class/method/property metadata management in PHP",
  1730. "keywords": [
  1731. "annotations",
  1732. "metadata",
  1733. "xml",
  1734. "yaml"
  1735. ],
  1736. "time": "2014-07-12T07:13:19+00:00"
  1737. },
  1738. {
  1739. "name": "jms/parser-lib",
  1740. "version": "1.0.0",
  1741. "source": {
  1742. "type": "git",
  1743. "url": "https://github.com/schmittjoh/parser-lib.git",
  1744. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d"
  1745. },
  1746. "dist": {
  1747. "type": "zip",
  1748. "url": "https://api.github.com/repos/schmittjoh/parser-lib/zipball/c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1749. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1750. "shasum": ""
  1751. },
  1752. "require": {
  1753. "phpoption/phpoption": ">=0.9,<2.0-dev"
  1754. },
  1755. "type": "library",
  1756. "extra": {
  1757. "branch-alias": {
  1758. "dev-master": "1.0-dev"
  1759. }
  1760. },
  1761. "autoload": {
  1762. "psr-0": {
  1763. "JMS\\": "src/"
  1764. }
  1765. },
  1766. "notification-url": "https://packagist.org/downloads/",
  1767. "license": [
  1768. "Apache2"
  1769. ],
  1770. "description": "A library for easily creating recursive-descent parsers.",
  1771. "time": "2012-11-18T18:08:43+00:00"
  1772. },
  1773. {
  1774. "name": "jms/security-extra-bundle",
  1775. "version": "1.6.0",
  1776. "source": {
  1777. "type": "git",
  1778. "url": "https://github.com/schmittjoh/JMSSecurityExtraBundle.git",
  1779. "reference": "d70399b25f41afd8277335cedc3c9b3acdc3759d"
  1780. },
  1781. "dist": {
  1782. "type": "zip",
  1783. "url": "https://api.github.com/repos/schmittjoh/JMSSecurityExtraBundle/zipball/d70399b25f41afd8277335cedc3c9b3acdc3759d",
  1784. "reference": "d70399b25f41afd8277335cedc3c9b3acdc3759d",
  1785. "shasum": ""
  1786. },
  1787. "require": {
  1788. "jms/aop-bundle": "~1.0",
  1789. "jms/di-extra-bundle": "~1.4",
  1790. "jms/metadata": "~1.0",
  1791. "jms/parser-lib": "~1.0",
  1792. "php": "~5.3|~7.0",
  1793. "symfony/dependency-injection": "~2.3|~3.0",
  1794. "symfony/framework-bundle": "~2.3|~3.0",
  1795. "symfony/routing": "~2.3|~3.0",
  1796. "symfony/security-acl": "~2.2|~3.0",
  1797. "symfony/security-bundle": "~2.3|~3.0"
  1798. },
  1799. "require-dev": {
  1800. "doctrine/common": "~2.3",
  1801. "doctrine/doctrine-bundle": "~1.0",
  1802. "doctrine/orm": "~2.3",
  1803. "sensio/framework-extra-bundle": "^2.2.1|~3.0",
  1804. "symfony/browser-kit": "~2.0|~3.0",
  1805. "symfony/class-loader": "~2.1|~3.0",
  1806. "symfony/css-selector": "^2.0.5|~3.0",
  1807. "symfony/finder": "^2.0.5|~3.0",
  1808. "symfony/form": "~2.2|~3.0",
  1809. "symfony/phpunit-bridge": "~2.7|~3.0",
  1810. "symfony/process": "^2.0.5|~3.0",
  1811. "symfony/twig-bridge": "^2.2.6|~3.0",
  1812. "symfony/twig-bundle": "~2.2|~3.0",
  1813. "symfony/validator": "~2.2|~3.0",
  1814. "symfony/yaml": "^2.2.11|~3.0",
  1815. "twig/twig": "^1.23.1"
  1816. },
  1817. "type": "symfony-bundle",
  1818. "extra": {
  1819. "branch-alias": {
  1820. "dev-master": "1.6-dev"
  1821. }
  1822. },
  1823. "autoload": {
  1824. "psr-4": {
  1825. "JMS\\SecurityExtraBundle\\": ""
  1826. }
  1827. },
  1828. "notification-url": "https://packagist.org/downloads/",
  1829. "license": [
  1830. "Apache2"
  1831. ],
  1832. "authors": [
  1833. {
  1834. "name": "Johannes M. Schmitt",
  1835. "email": "schmittjoh@gmail.com"
  1836. }
  1837. ],
  1838. "description": "Enhances the Symfony2 Security Component by adding several new features",
  1839. "homepage": "http://jmsyst.com/bundles/JMSSecurityExtraBundle",
  1840. "keywords": [
  1841. "annotations",
  1842. "authorization",
  1843. "expression",
  1844. "secure",
  1845. "security"
  1846. ],
  1847. "time": "2016-02-03T15:29:16+00:00"
  1848. },
  1849. {
  1850. "name": "justinrainbow/json-schema",
  1851. "version": "5.1.0",
  1852. "source": {
  1853. "type": "git",
  1854. "url": "https://github.com/justinrainbow/json-schema.git",
  1855. "reference": "48817e5f95c9d29e11513f12e43cc0223fa5eb6c"
  1856. },
  1857. "dist": {
  1858. "type": "zip",
  1859. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/48817e5f95c9d29e11513f12e43cc0223fa5eb6c",
  1860. "reference": "48817e5f95c9d29e11513f12e43cc0223fa5eb6c",
  1861. "shasum": ""
  1862. },
  1863. "require": {
  1864. "php": ">=5.3.3"
  1865. },
  1866. "require-dev": {
  1867. "json-schema/json-schema-test-suite": "1.2.0",
  1868. "phpdocumentor/phpdocumentor": "~2",
  1869. "phpunit/phpunit": "^4.8.22"
  1870. },
  1871. "bin": [
  1872. "bin/validate-json"
  1873. ],
  1874. "type": "library",
  1875. "extra": {
  1876. "branch-alias": {
  1877. "dev-master": "5.0.x-dev"
  1878. }
  1879. },
  1880. "autoload": {
  1881. "psr-4": {
  1882. "JsonSchema\\": "src/JsonSchema/"
  1883. }
  1884. },
  1885. "notification-url": "https://packagist.org/downloads/",
  1886. "license": [
  1887. "MIT"
  1888. ],
  1889. "authors": [
  1890. {
  1891. "name": "Bruno Prieto Reis",
  1892. "email": "bruno.p.reis@gmail.com"
  1893. },
  1894. {
  1895. "name": "Justin Rainbow",
  1896. "email": "justin.rainbow@gmail.com"
  1897. },
  1898. {
  1899. "name": "Igor Wiedler",
  1900. "email": "igor@wiedler.ch"
  1901. },
  1902. {
  1903. "name": "Robert Schönthal",
  1904. "email": "seroscho@googlemail.com"
  1905. }
  1906. ],
  1907. "description": "A library to validate a json schema.",
  1908. "homepage": "https://github.com/justinrainbow/json-schema",
  1909. "keywords": [
  1910. "json",
  1911. "schema"
  1912. ],
  1913. "time": "2017-02-22T03:28:16+00:00"
  1914. },
  1915. {
  1916. "name": "knplabs/knp-menu",
  1917. "version": "v2.1.1",
  1918. "source": {
  1919. "type": "git",
  1920. "url": "https://github.com/KnpLabs/KnpMenu.git",
  1921. "reference": "9917b999a3c3d3901386d60c4888b07679291031"
  1922. },
  1923. "dist": {
  1924. "type": "zip",
  1925. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/9917b999a3c3d3901386d60c4888b07679291031",
  1926. "reference": "9917b999a3c3d3901386d60c4888b07679291031",
  1927. "shasum": ""
  1928. },
  1929. "require": {
  1930. "php": ">=5.3.0"
  1931. },
  1932. "require-dev": {
  1933. "pimple/pimple": "~1.0",
  1934. "silex/silex": "~1.0",
  1935. "symfony/phpunit-bridge": "~2.7|~3.0",
  1936. "symfony/routing": "~2.3|~3.0",
  1937. "twig/twig": "~1.16|~2.0"
  1938. },
  1939. "suggest": {
  1940. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  1941. "silex/silex": "for the integration with your silex application",
  1942. "twig/twig": "for the TwigRenderer and the integration with your templates"
  1943. },
  1944. "type": "library",
  1945. "extra": {
  1946. "branch-alias": {
  1947. "dev-master": "2.1-dev"
  1948. }
  1949. },
  1950. "autoload": {
  1951. "psr-4": {
  1952. "Knp\\Menu\\": "src/Knp/Menu"
  1953. }
  1954. },
  1955. "notification-url": "https://packagist.org/downloads/",
  1956. "license": [
  1957. "MIT"
  1958. ],
  1959. "authors": [
  1960. {
  1961. "name": "Christophe Coevoet",
  1962. "email": "stof@notk.org"
  1963. },
  1964. {
  1965. "name": "KnpLabs",
  1966. "homepage": "http://knplabs.com"
  1967. },
  1968. {
  1969. "name": "Symfony Community",
  1970. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  1971. }
  1972. ],
  1973. "description": "An object oriented menu library",
  1974. "homepage": "http://knplabs.com",
  1975. "keywords": [
  1976. "menu",
  1977. "tree"
  1978. ],
  1979. "time": "2016-01-08T15:42:54+00:00"
  1980. },
  1981. {
  1982. "name": "knplabs/knp-menu-bundle",
  1983. "version": "2.1.2",
  1984. "source": {
  1985. "type": "git",
  1986. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  1987. "reference": "42ff1953c3a79d0b31aba2ece8c03fbd70e7f1ca"
  1988. },
  1989. "dist": {
  1990. "type": "zip",
  1991. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/42ff1953c3a79d0b31aba2ece8c03fbd70e7f1ca",
  1992. "reference": "42ff1953c3a79d0b31aba2ece8c03fbd70e7f1ca",
  1993. "shasum": ""
  1994. },
  1995. "require": {
  1996. "knplabs/knp-menu": "~2.1",
  1997. "symfony/framework-bundle": "~2.3|~3.0"
  1998. },
  1999. "require-dev": {
  2000. "symfony/expression-language": "~2.4|~3.0",
  2001. "symfony/phpunit-bridge": "~2.7|~3.0"
  2002. },
  2003. "type": "symfony-bundle",
  2004. "extra": {
  2005. "branch-alias": {
  2006. "dev-master": "2.1.x-dev"
  2007. }
  2008. },
  2009. "autoload": {
  2010. "psr-4": {
  2011. "Knp\\Bundle\\MenuBundle\\": ""
  2012. }
  2013. },
  2014. "notification-url": "https://packagist.org/downloads/",
  2015. "license": [
  2016. "MIT"
  2017. ],
  2018. "authors": [
  2019. {
  2020. "name": "Christophe Coevoet",
  2021. "email": "stof@notk.org"
  2022. },
  2023. {
  2024. "name": "KnpLabs",
  2025. "homepage": "http://knplabs.com"
  2026. },
  2027. {
  2028. "name": "Symfony Community",
  2029. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  2030. }
  2031. ],
  2032. "description": "This bundle provides an integration of the KnpMenu library",
  2033. "keywords": [
  2034. "menu"
  2035. ],
  2036. "time": "2016-06-21T06:53:03+00:00"
  2037. },
  2038. {
  2039. "name": "kriswallsmith/buzz",
  2040. "version": "v0.15",
  2041. "source": {
  2042. "type": "git",
  2043. "url": "https://github.com/kriswallsmith/Buzz.git",
  2044. "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8"
  2045. },
  2046. "dist": {
  2047. "type": "zip",
  2048. "url": "https://api.github.com/repos/kriswallsmith/Buzz/zipball/d4041666c3ffb379af02a92dabe81c904b35fab8",
  2049. "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8",
  2050. "shasum": ""
  2051. },
  2052. "require": {
  2053. "php": ">=5.3.0"
  2054. },
  2055. "require-dev": {
  2056. "phpunit/phpunit": "3.7.*"
  2057. },
  2058. "suggest": {
  2059. "ext-curl": "*"
  2060. },
  2061. "type": "library",
  2062. "autoload": {
  2063. "psr-0": {
  2064. "Buzz": "lib/"
  2065. }
  2066. },
  2067. "notification-url": "https://packagist.org/downloads/",
  2068. "license": [
  2069. "MIT"
  2070. ],
  2071. "authors": [
  2072. {
  2073. "name": "Kris Wallsmith",
  2074. "email": "kris.wallsmith@gmail.com",
  2075. "homepage": "http://kriswallsmith.net/"
  2076. }
  2077. ],
  2078. "description": "Lightweight HTTP client",
  2079. "homepage": "https://github.com/kriswallsmith/Buzz",
  2080. "keywords": [
  2081. "curl",
  2082. "http client"
  2083. ],
  2084. "time": "2015-06-25T17:26:56+00:00"
  2085. },
  2086. {
  2087. "name": "monolog/monolog",
  2088. "version": "1.21.0",
  2089. "source": {
  2090. "type": "git",
  2091. "url": "https://github.com/Seldaek/monolog.git",
  2092. "reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952"
  2093. },
  2094. "dist": {
  2095. "type": "zip",
  2096. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f42fbdfd53e306bda545845e4dbfd3e72edb4952",
  2097. "reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952",
  2098. "shasum": ""
  2099. },
  2100. "require": {
  2101. "php": ">=5.3.0",
  2102. "psr/log": "~1.0"
  2103. },
  2104. "provide": {
  2105. "psr/log-implementation": "1.0.0"
  2106. },
  2107. "require-dev": {
  2108. "aws/aws-sdk-php": "^2.4.9",
  2109. "doctrine/couchdb": "~1.0@dev",
  2110. "graylog2/gelf-php": "~1.0",
  2111. "jakub-onderka/php-parallel-lint": "0.9",
  2112. "php-amqplib/php-amqplib": "~2.4",
  2113. "php-console/php-console": "^3.1.3",
  2114. "phpunit/phpunit": "~4.5",
  2115. "phpunit/phpunit-mock-objects": "2.3.0",
  2116. "ruflin/elastica": ">=0.90 <3.0",
  2117. "sentry/sentry": "^0.13",
  2118. "swiftmailer/swiftmailer": "~5.3"
  2119. },
  2120. "suggest": {
  2121. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2122. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2123. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2124. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2125. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2126. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2127. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2128. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2129. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2130. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2131. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2132. },
  2133. "type": "library",
  2134. "extra": {
  2135. "branch-alias": {
  2136. "dev-master": "2.0.x-dev"
  2137. }
  2138. },
  2139. "autoload": {
  2140. "psr-4": {
  2141. "Monolog\\": "src/Monolog"
  2142. }
  2143. },
  2144. "notification-url": "https://packagist.org/downloads/",
  2145. "license": [
  2146. "MIT"
  2147. ],
  2148. "authors": [
  2149. {
  2150. "name": "Jordi Boggiano",
  2151. "email": "j.boggiano@seld.be",
  2152. "homepage": "http://seld.be"
  2153. }
  2154. ],
  2155. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2156. "homepage": "http://github.com/Seldaek/monolog",
  2157. "keywords": [
  2158. "log",
  2159. "logging",
  2160. "psr-3"
  2161. ],
  2162. "time": "2016-07-29T03:23:52+00:00"
  2163. },
  2164. {
  2165. "name": "nelmio/cors-bundle",
  2166. "version": "1.5.3",
  2167. "source": {
  2168. "type": "git",
  2169. "url": "https://github.com/nelmio/NelmioCorsBundle.git",
  2170. "reference": "ac6576a599d7db9c2c6022602c188a5594216056"
  2171. },
  2172. "dist": {
  2173. "type": "zip",
  2174. "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/ac6576a599d7db9c2c6022602c188a5594216056",
  2175. "reference": "ac6576a599d7db9c2c6022602c188a5594216056",
  2176. "shasum": ""
  2177. },
  2178. "require": {
  2179. "symfony/framework-bundle": "^2.7 || ^3.0"
  2180. },
  2181. "require-dev": {
  2182. "matthiasnoback/symfony-dependency-injection-test": "^0.7.6",
  2183. "mockery/mockery": "0.9.*"
  2184. },
  2185. "type": "symfony-bundle",
  2186. "extra": {
  2187. "branch-alias": {
  2188. "dev-master": "1.5.x-dev"
  2189. }
  2190. },
  2191. "autoload": {
  2192. "psr-4": {
  2193. "Nelmio\\CorsBundle\\": ""
  2194. },
  2195. "exclude-from-classmap": [
  2196. "/Tests/"
  2197. ]
  2198. },
  2199. "notification-url": "https://packagist.org/downloads/",
  2200. "license": [
  2201. "MIT"
  2202. ],
  2203. "authors": [
  2204. {
  2205. "name": "Nelmio",
  2206. "homepage": "http://nelm.io"
  2207. },
  2208. {
  2209. "name": "Symfony Community",
  2210. "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors"
  2211. }
  2212. ],
  2213. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony2 application",
  2214. "keywords": [
  2215. "api",
  2216. "cors",
  2217. "crossdomain"
  2218. ],
  2219. "time": "2017-04-24T09:12:42+00:00"
  2220. },
  2221. {
  2222. "name": "nelmio/security-bundle",
  2223. "version": "2.4.0",
  2224. "source": {
  2225. "type": "git",
  2226. "url": "https://github.com/nelmio/NelmioSecurityBundle.git",
  2227. "reference": "d0d7b151eda5f0ebe80562528f78b56954c1aec7"
  2228. },
  2229. "dist": {
  2230. "type": "zip",
  2231. "url": "https://api.github.com/repos/nelmio/NelmioSecurityBundle/zipball/d0d7b151eda5f0ebe80562528f78b56954c1aec7",
  2232. "reference": "d0d7b151eda5f0ebe80562528f78b56954c1aec7",
  2233. "shasum": ""
  2234. },
  2235. "require": {
  2236. "paragonie/random_compat": "~1.0|~2.0",
  2237. "symfony/framework-bundle": "~2.3|~3.0",
  2238. "symfony/security": "~2.3|~3.0",
  2239. "ua-parser/uap-php": "^3.4.4"
  2240. },
  2241. "require-dev": {
  2242. "doctrine/cache": "^1.0",
  2243. "psr/cache": "^1.0",
  2244. "symfony/phpunit-bridge": "^3.2",
  2245. "symfony/yaml": "~2.3|~3.0",
  2246. "twig/twig": "^1.24"
  2247. },
  2248. "suggest": {
  2249. "ua-parser/uap-php": "To allow adapt CSP directives given the user-agent"
  2250. },
  2251. "type": "symfony-bundle",
  2252. "extra": {
  2253. "branch-alias": {
  2254. "dev-master": "2.4.x-dev"
  2255. }
  2256. },
  2257. "autoload": {
  2258. "psr-4": {
  2259. "Nelmio\\SecurityBundle\\": ""
  2260. }
  2261. },
  2262. "notification-url": "https://packagist.org/downloads/",
  2263. "license": [
  2264. "MIT"
  2265. ],
  2266. "authors": [
  2267. {
  2268. "name": "Nelmio",
  2269. "homepage": "http://nelm.io"
  2270. },
  2271. {
  2272. "name": "Symfony Community",
  2273. "homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors"
  2274. }
  2275. ],
  2276. "description": "Extra security-related features for Symfony: signed/encrypted cookies, HTTPS/SSL/HSTS handling, cookie session storage, ...",
  2277. "keywords": [
  2278. "security"
  2279. ],
  2280. "time": "2017-06-22T08:11:46+00:00"
  2281. },
  2282. {
  2283. "name": "pagerfanta/pagerfanta",
  2284. "version": "v1.0.3",
  2285. "source": {
  2286. "type": "git",
  2287. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  2288. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb"
  2289. },
  2290. "dist": {
  2291. "type": "zip",
  2292. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/a874d3612d954dcbbb49e5ffe178890918fb76fb",
  2293. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb",
  2294. "shasum": ""
  2295. },
  2296. "require": {
  2297. "php": ">=5.3.0"
  2298. },
  2299. "require-dev": {
  2300. "doctrine/orm": "~2.3",
  2301. "doctrine/phpcr-odm": "1.*",
  2302. "jackalope/jackalope-doctrine-dbal": "1.*",
  2303. "jmikola/geojson": "~1.0",
  2304. "mandango/mandango": "~1.0@dev",
  2305. "mandango/mondator": "~1.0@dev",
  2306. "phpunit/phpunit": "~4",
  2307. "propel/propel1": "~1.6",
  2308. "ruflin/elastica": "~1.3",
  2309. "solarium/solarium": "~3.1"
  2310. },
  2311. "suggest": {
  2312. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  2313. "doctrine/orm": "To use the DoctrineORMAdapter.",
  2314. "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
  2315. "mandango/mandango": "To use the MandangoAdapter.",
  2316. "propel/propel1": "To use the PropelAdapter",
  2317. "solarium/solarium": "To use the SolariumAdapter."
  2318. },
  2319. "type": "library",
  2320. "extra": {
  2321. "branch-alias": {
  2322. "dev-master": "1.0.x-dev"
  2323. }
  2324. },
  2325. "autoload": {
  2326. "psr-0": {
  2327. "Pagerfanta\\": "src/"
  2328. }
  2329. },
  2330. "notification-url": "https://packagist.org/downloads/",
  2331. "license": [
  2332. "MIT"
  2333. ],
  2334. "authors": [
  2335. {
  2336. "name": "Pablo Díez",
  2337. "email": "pablodip@gmail.com"
  2338. }
  2339. ],
  2340. "description": "Pagination for PHP 5.3",
  2341. "keywords": [
  2342. "page",
  2343. "pagination",
  2344. "paginator",
  2345. "paging"
  2346. ],
  2347. "time": "2014-10-06T10:57:25+00:00"
  2348. },
  2349. {
  2350. "name": "paragonie/random_compat",
  2351. "version": "v2.0.2",
  2352. "source": {
  2353. "type": "git",
  2354. "url": "https://github.com/paragonie/random_compat.git",
  2355. "reference": "088c04e2f261c33bed6ca5245491cfca69195ccf"
  2356. },
  2357. "dist": {
  2358. "type": "zip",
  2359. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/088c04e2f261c33bed6ca5245491cfca69195ccf",
  2360. "reference": "088c04e2f261c33bed6ca5245491cfca69195ccf",
  2361. "shasum": ""
  2362. },
  2363. "require": {
  2364. "php": ">=5.2.0"
  2365. },
  2366. "require-dev": {
  2367. "phpunit/phpunit": "4.*|5.*"
  2368. },
  2369. "suggest": {
  2370. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2371. },
  2372. "type": "library",
  2373. "autoload": {
  2374. "files": [
  2375. "lib/random.php"
  2376. ]
  2377. },
  2378. "notification-url": "https://packagist.org/downloads/",
  2379. "license": [
  2380. "MIT"
  2381. ],
  2382. "authors": [
  2383. {
  2384. "name": "Paragon Initiative Enterprises",
  2385. "email": "security@paragonie.com",
  2386. "homepage": "https://paragonie.com"
  2387. }
  2388. ],
  2389. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2390. "keywords": [
  2391. "csprng",
  2392. "pseudorandom",
  2393. "random"
  2394. ],
  2395. "time": "2016-04-03T06:00:07+00:00"
  2396. },
  2397. {
  2398. "name": "phpoption/phpoption",
  2399. "version": "1.5.0",
  2400. "source": {
  2401. "type": "git",
  2402. "url": "https://github.com/schmittjoh/php-option.git",
  2403. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  2404. },
  2405. "dist": {
  2406. "type": "zip",
  2407. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2408. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2409. "shasum": ""
  2410. },
  2411. "require": {
  2412. "php": ">=5.3.0"
  2413. },
  2414. "require-dev": {
  2415. "phpunit/phpunit": "4.7.*"
  2416. },
  2417. "type": "library",
  2418. "extra": {
  2419. "branch-alias": {
  2420. "dev-master": "1.3-dev"
  2421. }
  2422. },
  2423. "autoload": {
  2424. "psr-0": {
  2425. "PhpOption\\": "src/"
  2426. }
  2427. },
  2428. "notification-url": "https://packagist.org/downloads/",
  2429. "license": [
  2430. "Apache2"
  2431. ],
  2432. "authors": [
  2433. {
  2434. "name": "Johannes M. Schmitt",
  2435. "email": "schmittjoh@gmail.com"
  2436. }
  2437. ],
  2438. "description": "Option Type for PHP",
  2439. "keywords": [
  2440. "language",
  2441. "option",
  2442. "php",
  2443. "type"
  2444. ],
  2445. "time": "2015-07-25T16:39:46+00:00"
  2446. },
  2447. {
  2448. "name": "predis/predis",
  2449. "version": "v1.1.1",
  2450. "source": {
  2451. "type": "git",
  2452. "url": "https://github.com/nrk/predis.git",
  2453. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  2454. },
  2455. "dist": {
  2456. "type": "zip",
  2457. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  2458. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  2459. "shasum": ""
  2460. },
  2461. "require": {
  2462. "php": ">=5.3.9"
  2463. },
  2464. "require-dev": {
  2465. "phpunit/phpunit": "~4.8"
  2466. },
  2467. "suggest": {
  2468. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  2469. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  2470. },
  2471. "type": "library",
  2472. "autoload": {
  2473. "psr-4": {
  2474. "Predis\\": "src/"
  2475. }
  2476. },
  2477. "notification-url": "https://packagist.org/downloads/",
  2478. "license": [
  2479. "MIT"
  2480. ],
  2481. "authors": [
  2482. {
  2483. "name": "Daniele Alessandri",
  2484. "email": "suppakilla@gmail.com",
  2485. "homepage": "http://clorophilla.net"
  2486. }
  2487. ],
  2488. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  2489. "homepage": "http://github.com/nrk/predis",
  2490. "keywords": [
  2491. "nosql",
  2492. "predis",
  2493. "redis"
  2494. ],
  2495. "time": "2016-06-16T16:22:20+00:00"
  2496. },
  2497. {
  2498. "name": "psr/log",
  2499. "version": "1.0.0",
  2500. "source": {
  2501. "type": "git",
  2502. "url": "https://github.com/php-fig/log.git",
  2503. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  2504. },
  2505. "dist": {
  2506. "type": "zip",
  2507. "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  2508. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  2509. "shasum": ""
  2510. },
  2511. "type": "library",
  2512. "autoload": {
  2513. "psr-0": {
  2514. "Psr\\Log\\": ""
  2515. }
  2516. },
  2517. "notification-url": "https://packagist.org/downloads/",
  2518. "license": [
  2519. "MIT"
  2520. ],
  2521. "authors": [
  2522. {
  2523. "name": "PHP-FIG",
  2524. "homepage": "http://www.php-fig.org/"
  2525. }
  2526. ],
  2527. "description": "Common interface for logging libraries",
  2528. "keywords": [
  2529. "log",
  2530. "psr",
  2531. "psr-3"
  2532. ],
  2533. "time": "2012-12-21T11:40:51+00:00"
  2534. },
  2535. {
  2536. "name": "seld/cli-prompt",
  2537. "version": "1.0.3",
  2538. "source": {
  2539. "type": "git",
  2540. "url": "https://github.com/Seldaek/cli-prompt.git",
  2541. "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd"
  2542. },
  2543. "dist": {
  2544. "type": "zip",
  2545. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
  2546. "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
  2547. "shasum": ""
  2548. },
  2549. "require": {
  2550. "php": ">=5.3"
  2551. },
  2552. "type": "library",
  2553. "extra": {
  2554. "branch-alias": {
  2555. "dev-master": "1.x-dev"
  2556. }
  2557. },
  2558. "autoload": {
  2559. "psr-4": {
  2560. "Seld\\CliPrompt\\": "src/"
  2561. }
  2562. },
  2563. "notification-url": "https://packagist.org/downloads/",
  2564. "license": [
  2565. "MIT"
  2566. ],
  2567. "authors": [
  2568. {
  2569. "name": "Jordi Boggiano",
  2570. "email": "j.boggiano@seld.be"
  2571. }
  2572. ],
  2573. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  2574. "keywords": [
  2575. "cli",
  2576. "console",
  2577. "hidden",
  2578. "input",
  2579. "prompt"
  2580. ],
  2581. "time": "2017-03-18T11:32:45+00:00"
  2582. },
  2583. {
  2584. "name": "seld/jsonlint",
  2585. "version": "1.7.0",
  2586. "source": {
  2587. "type": "git",
  2588. "url": "https://github.com/Seldaek/jsonlint.git",
  2589. "reference": "9b355654ea99460397b89c132b5c1087b6bf4473"
  2590. },
  2591. "dist": {
  2592. "type": "zip",
  2593. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9b355654ea99460397b89c132b5c1087b6bf4473",
  2594. "reference": "9b355654ea99460397b89c132b5c1087b6bf4473",
  2595. "shasum": ""
  2596. },
  2597. "require": {
  2598. "php": "^5.3 || ^7.0"
  2599. },
  2600. "require-dev": {
  2601. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  2602. },
  2603. "bin": [
  2604. "bin/jsonlint"
  2605. ],
  2606. "type": "library",
  2607. "autoload": {
  2608. "psr-4": {
  2609. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  2610. }
  2611. },
  2612. "notification-url": "https://packagist.org/downloads/",
  2613. "license": [
  2614. "MIT"
  2615. ],
  2616. "authors": [
  2617. {
  2618. "name": "Jordi Boggiano",
  2619. "email": "j.boggiano@seld.be",
  2620. "homepage": "http://seld.be"
  2621. }
  2622. ],
  2623. "description": "JSON Linter",
  2624. "keywords": [
  2625. "json",
  2626. "linter",
  2627. "parser",
  2628. "validator"
  2629. ],
  2630. "time": "2018-01-03T12:13:57+00:00"
  2631. },
  2632. {
  2633. "name": "seld/phar-utils",
  2634. "version": "1.0.1",
  2635. "source": {
  2636. "type": "git",
  2637. "url": "https://github.com/Seldaek/phar-utils.git",
  2638. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  2639. },
  2640. "dist": {
  2641. "type": "zip",
  2642. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  2643. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  2644. "shasum": ""
  2645. },
  2646. "require": {
  2647. "php": ">=5.3"
  2648. },
  2649. "type": "library",
  2650. "extra": {
  2651. "branch-alias": {
  2652. "dev-master": "1.x-dev"
  2653. }
  2654. },
  2655. "autoload": {
  2656. "psr-4": {
  2657. "Seld\\PharUtils\\": "src/"
  2658. }
  2659. },
  2660. "notification-url": "https://packagist.org/downloads/",
  2661. "license": [
  2662. "MIT"
  2663. ],
  2664. "authors": [
  2665. {
  2666. "name": "Jordi Boggiano",
  2667. "email": "j.boggiano@seld.be"
  2668. }
  2669. ],
  2670. "description": "PHAR file format utilities, for when PHP phars you up",
  2671. "keywords": [
  2672. "phra"
  2673. ],
  2674. "time": "2015-10-13T18:44:15+00:00"
  2675. },
  2676. {
  2677. "name": "sensio/distribution-bundle",
  2678. "version": "v5.0.9",
  2679. "source": {
  2680. "type": "git",
  2681. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  2682. "reference": "e5e0d8d06b07864b2752bd865537b0817edf4c5a"
  2683. },
  2684. "dist": {
  2685. "type": "zip",
  2686. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/e5e0d8d06b07864b2752bd865537b0817edf4c5a",
  2687. "reference": "e5e0d8d06b07864b2752bd865537b0817edf4c5a",
  2688. "shasum": ""
  2689. },
  2690. "require": {
  2691. "php": ">=5.3.9",
  2692. "sensiolabs/security-checker": "~3.0",
  2693. "symfony/class-loader": "~2.3|~3.0",
  2694. "symfony/config": "~2.3|~3.0",
  2695. "symfony/dependency-injection": "~2.3|~3.0",
  2696. "symfony/filesystem": "~2.3|~3.0",
  2697. "symfony/http-kernel": "~2.3|~3.0",
  2698. "symfony/process": "~2.3|~3.0"
  2699. },
  2700. "type": "symfony-bundle",
  2701. "extra": {
  2702. "branch-alias": {
  2703. "dev-master": "5.0.x-dev"
  2704. }
  2705. },
  2706. "autoload": {
  2707. "psr-4": {
  2708. "Sensio\\Bundle\\DistributionBundle\\": ""
  2709. }
  2710. },
  2711. "notification-url": "https://packagist.org/downloads/",
  2712. "license": [
  2713. "MIT"
  2714. ],
  2715. "authors": [
  2716. {
  2717. "name": "Fabien Potencier",
  2718. "email": "fabien@symfony.com"
  2719. }
  2720. ],
  2721. "description": "Base bundle for Symfony Distributions",
  2722. "keywords": [
  2723. "configuration",
  2724. "distribution"
  2725. ],
  2726. "time": "2016-09-06T01:05:01+00:00"
  2727. },
  2728. {
  2729. "name": "sensio/framework-extra-bundle",
  2730. "version": "v3.0.16",
  2731. "source": {
  2732. "type": "git",
  2733. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2734. "reference": "507a15f56fa7699f6cc8c2c7de4080b19ce22546"
  2735. },
  2736. "dist": {
  2737. "type": "zip",
  2738. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/507a15f56fa7699f6cc8c2c7de4080b19ce22546",
  2739. "reference": "507a15f56fa7699f6cc8c2c7de4080b19ce22546",
  2740. "shasum": ""
  2741. },
  2742. "require": {
  2743. "doctrine/common": "~2.2",
  2744. "symfony/dependency-injection": "~2.3|~3.0",
  2745. "symfony/framework-bundle": "~2.3|~3.0"
  2746. },
  2747. "require-dev": {
  2748. "symfony/browser-kit": "~2.3|~3.0",
  2749. "symfony/dom-crawler": "~2.3|~3.0",
  2750. "symfony/expression-language": "~2.4|~3.0",
  2751. "symfony/finder": "~2.3|~3.0",
  2752. "symfony/phpunit-bridge": "~2.7|~3.0",
  2753. "symfony/security-bundle": "~2.4|~3.0",
  2754. "symfony/twig-bundle": "~2.3|~3.0",
  2755. "twig/twig": "~1.11|~2.0"
  2756. },
  2757. "suggest": {
  2758. "symfony/expression-language": "",
  2759. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  2760. "symfony/security-bundle": ""
  2761. },
  2762. "type": "symfony-bundle",
  2763. "extra": {
  2764. "branch-alias": {
  2765. "dev-master": "3.0.x-dev"
  2766. }
  2767. },
  2768. "autoload": {
  2769. "psr-4": {
  2770. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  2771. }
  2772. },
  2773. "notification-url": "https://packagist.org/downloads/",
  2774. "license": [
  2775. "MIT"
  2776. ],
  2777. "authors": [
  2778. {
  2779. "name": "Fabien Potencier",
  2780. "email": "fabien@symfony.com"
  2781. }
  2782. ],
  2783. "description": "This bundle provides a way to configure your controllers with annotations",
  2784. "keywords": [
  2785. "annotations",
  2786. "controllers"
  2787. ],
  2788. "time": "2016-03-25T17:08:27+00:00"
  2789. },
  2790. {
  2791. "name": "sensio/generator-bundle",
  2792. "version": "v3.0.8",
  2793. "source": {
  2794. "type": "git",
  2795. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  2796. "reference": "3c20d16512f37d2be159eca0411b99a141b90fa4"
  2797. },
  2798. "dist": {
  2799. "type": "zip",
  2800. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/3c20d16512f37d2be159eca0411b99a141b90fa4",
  2801. "reference": "3c20d16512f37d2be159eca0411b99a141b90fa4",
  2802. "shasum": ""
  2803. },
  2804. "require": {
  2805. "symfony/console": "~2.7|~3.0",
  2806. "symfony/framework-bundle": "~2.7|~3.0",
  2807. "symfony/process": "~2.7|~3.0",
  2808. "symfony/yaml": "~2.7|~3.0"
  2809. },
  2810. "require-dev": {
  2811. "doctrine/orm": "~2.4",
  2812. "symfony/doctrine-bridge": "~2.7|~3.0",
  2813. "twig/twig": "~1.18"
  2814. },
  2815. "type": "symfony-bundle",
  2816. "extra": {
  2817. "branch-alias": {
  2818. "dev-master": "3.0.x-dev"
  2819. }
  2820. },
  2821. "autoload": {
  2822. "psr-4": {
  2823. "Sensio\\Bundle\\GeneratorBundle\\": ""
  2824. },
  2825. "exclude-from-classmap": [
  2826. "/Tests/"
  2827. ]
  2828. },
  2829. "notification-url": "https://packagist.org/downloads/",
  2830. "license": [
  2831. "MIT"
  2832. ],
  2833. "authors": [
  2834. {
  2835. "name": "Fabien Potencier",
  2836. "email": "fabien@symfony.com"
  2837. }
  2838. ],
  2839. "description": "This bundle generates code for you",
  2840. "time": "2016-09-06T01:30:19+00:00"
  2841. },
  2842. {
  2843. "name": "sensiolabs/security-checker",
  2844. "version": "v3.0.2",
  2845. "source": {
  2846. "type": "git",
  2847. "url": "https://github.com/sensiolabs/security-checker.git",
  2848. "reference": "21696b0daa731064c23cfb694c60a2584a7b6e93"
  2849. },
  2850. "dist": {
  2851. "type": "zip",
  2852. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/21696b0daa731064c23cfb694c60a2584a7b6e93",
  2853. "reference": "21696b0daa731064c23cfb694c60a2584a7b6e93",
  2854. "shasum": ""
  2855. },
  2856. "require": {
  2857. "symfony/console": "~2.0|~3.0"
  2858. },
  2859. "bin": [
  2860. "security-checker"
  2861. ],
  2862. "type": "library",
  2863. "extra": {
  2864. "branch-alias": {
  2865. "dev-master": "3.0-dev"
  2866. }
  2867. },
  2868. "autoload": {
  2869. "psr-0": {
  2870. "SensioLabs\\Security": ""
  2871. }
  2872. },
  2873. "notification-url": "https://packagist.org/downloads/",
  2874. "license": [
  2875. "MIT"
  2876. ],
  2877. "authors": [
  2878. {
  2879. "name": "Fabien Potencier",
  2880. "email": "fabien.potencier@gmail.com"
  2881. }
  2882. ],
  2883. "description": "A security checker for your composer.lock",
  2884. "time": "2015-11-07T08:07:40+00:00"
  2885. },
  2886. {
  2887. "name": "snc/redis-bundle",
  2888. "version": "2.0.0",
  2889. "source": {
  2890. "type": "git",
  2891. "url": "https://github.com/snc/SncRedisBundle.git",
  2892. "reference": "b8aa1a966b32c4fba6b7dac4532d5eeb1d890afb"
  2893. },
  2894. "dist": {
  2895. "type": "zip",
  2896. "url": "https://api.github.com/repos/snc/SncRedisBundle/zipball/b8aa1a966b32c4fba6b7dac4532d5eeb1d890afb",
  2897. "reference": "b8aa1a966b32c4fba6b7dac4532d5eeb1d890afb",
  2898. "shasum": ""
  2899. },
  2900. "require": {
  2901. "php": ">=5.3.3",
  2902. "symfony/framework-bundle": "^2.7 || ^3.0",
  2903. "symfony/yaml": "^2.7 || ^3.0"
  2904. },
  2905. "require-dev": {
  2906. "doctrine/cache": "1.*",
  2907. "phpunit/phpunit": "4.8.*",
  2908. "predis/predis": "^1.0",
  2909. "symfony/console": "^2.7 || ^3.0",
  2910. "symfony/phpunit-bridge": "^2.7 || ^3.0"
  2911. },
  2912. "suggest": {
  2913. "monolog/monolog": "If you want to use the monolog redis handler.",
  2914. "predis/predis": "If you want to use predis.",
  2915. "symfony/console": "If you want to use commands to interact with the redis database"
  2916. },
  2917. "type": "symfony-bundle",
  2918. "extra": {
  2919. "branch-alias": {
  2920. "dev-master": "2.x-dev"
  2921. }
  2922. },
  2923. "autoload": {
  2924. "psr-4": {
  2925. "Snc\\RedisBundle\\": ""
  2926. }
  2927. },
  2928. "notification-url": "https://packagist.org/downloads/",
  2929. "license": [
  2930. "MIT"
  2931. ],
  2932. "authors": [
  2933. {
  2934. "name": "Henrik Westphal",
  2935. "email": "henrik.westphal@gmail.com"
  2936. },
  2937. {
  2938. "name": "Community contributors",
  2939. "homepage": "https://github.com/snc/SncRedisBundle/contributors"
  2940. }
  2941. ],
  2942. "description": "A Redis bundle for Symfony",
  2943. "homepage": "https://github.com/snc/SncRedisBundle",
  2944. "keywords": [
  2945. "nosql",
  2946. "redis",
  2947. "symfony"
  2948. ],
  2949. "time": "2016-06-17T11:50:26+00:00"
  2950. },
  2951. {
  2952. "name": "swiftmailer/swiftmailer",
  2953. "version": "v5.4.5",
  2954. "source": {
  2955. "type": "git",
  2956. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2957. "reference": "cd142238a339459b10da3d8234220963f392540c"
  2958. },
  2959. "dist": {
  2960. "type": "zip",
  2961. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/cd142238a339459b10da3d8234220963f392540c",
  2962. "reference": "cd142238a339459b10da3d8234220963f392540c",
  2963. "shasum": ""
  2964. },
  2965. "require": {
  2966. "php": ">=5.3.3"
  2967. },
  2968. "require-dev": {
  2969. "mockery/mockery": "~0.9.1",
  2970. "symfony/phpunit-bridge": "~3.2"
  2971. },
  2972. "type": "library",
  2973. "extra": {
  2974. "branch-alias": {
  2975. "dev-master": "5.4-dev"
  2976. }
  2977. },
  2978. "autoload": {
  2979. "files": [
  2980. "lib/swift_required.php"
  2981. ]
  2982. },
  2983. "notification-url": "https://packagist.org/downloads/",
  2984. "license": [
  2985. "MIT"
  2986. ],
  2987. "authors": [
  2988. {
  2989. "name": "Chris Corbyn"
  2990. },
  2991. {
  2992. "name": "Fabien Potencier",
  2993. "email": "fabien@symfony.com"
  2994. }
  2995. ],
  2996. "description": "Swiftmailer, free feature-rich PHP mailer",
  2997. "homepage": "http://swiftmailer.org",
  2998. "keywords": [
  2999. "email",
  3000. "mail",
  3001. "mailer"
  3002. ],
  3003. "time": "2016-12-29T10:02:40+00:00"
  3004. },
  3005. {
  3006. "name": "symfony/monolog-bundle",
  3007. "version": "2.11.1",
  3008. "source": {
  3009. "type": "git",
  3010. "url": "https://github.com/symfony/monolog-bundle.git",
  3011. "reference": "e7caf4936c7be82bc6d68df87f1d23a0d5bf6e00"
  3012. },
  3013. "dist": {
  3014. "type": "zip",
  3015. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/e7caf4936c7be82bc6d68df87f1d23a0d5bf6e00",
  3016. "reference": "e7caf4936c7be82bc6d68df87f1d23a0d5bf6e00",
  3017. "shasum": ""
  3018. },
  3019. "require": {
  3020. "monolog/monolog": "~1.18",
  3021. "php": ">=5.3.2",
  3022. "symfony/config": "~2.3|~3.0",
  3023. "symfony/dependency-injection": "~2.3|~3.0",
  3024. "symfony/http-kernel": "~2.3|~3.0",
  3025. "symfony/monolog-bridge": "~2.3|~3.0"
  3026. },
  3027. "require-dev": {
  3028. "phpunit/phpunit": "^4.8",
  3029. "symfony/console": "~2.3|~3.0",
  3030. "symfony/yaml": "~2.3|~3.0"
  3031. },
  3032. "type": "symfony-bundle",
  3033. "extra": {
  3034. "branch-alias": {
  3035. "dev-master": "2.x-dev"
  3036. }
  3037. },
  3038. "autoload": {
  3039. "psr-4": {
  3040. "Symfony\\Bundle\\MonologBundle\\": ""
  3041. }
  3042. },
  3043. "notification-url": "https://packagist.org/downloads/",
  3044. "license": [
  3045. "MIT"
  3046. ],
  3047. "authors": [
  3048. {
  3049. "name": "Symfony Community",
  3050. "homepage": "http://symfony.com/contributors"
  3051. },
  3052. {
  3053. "name": "Fabien Potencier",
  3054. "email": "fabien@symfony.com"
  3055. }
  3056. ],
  3057. "description": "Symfony MonologBundle",
  3058. "homepage": "http://symfony.com",
  3059. "keywords": [
  3060. "log",
  3061. "logging"
  3062. ],
  3063. "time": "2016-04-13T16:21:01+00:00"
  3064. },
  3065. {
  3066. "name": "symfony/polyfill-apcu",
  3067. "version": "v1.2.0",
  3068. "source": {
  3069. "type": "git",
  3070. "url": "https://github.com/symfony/polyfill-apcu.git",
  3071. "reference": "6d58bceaeea2c2d3eb62503839b18646e161cd6b"
  3072. },
  3073. "dist": {
  3074. "type": "zip",
  3075. "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/6d58bceaeea2c2d3eb62503839b18646e161cd6b",
  3076. "reference": "6d58bceaeea2c2d3eb62503839b18646e161cd6b",
  3077. "shasum": ""
  3078. },
  3079. "require": {
  3080. "php": ">=5.3.3"
  3081. },
  3082. "type": "library",
  3083. "extra": {
  3084. "branch-alias": {
  3085. "dev-master": "1.2-dev"
  3086. }
  3087. },
  3088. "autoload": {
  3089. "files": [
  3090. "bootstrap.php"
  3091. ]
  3092. },
  3093. "notification-url": "https://packagist.org/downloads/",
  3094. "license": [
  3095. "MIT"
  3096. ],
  3097. "authors": [
  3098. {
  3099. "name": "Nicolas Grekas",
  3100. "email": "p@tchwork.com"
  3101. },
  3102. {
  3103. "name": "Symfony Community",
  3104. "homepage": "https://symfony.com/contributors"
  3105. }
  3106. ],
  3107. "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  3108. "homepage": "https://symfony.com",
  3109. "keywords": [
  3110. "apcu",
  3111. "compatibility",
  3112. "polyfill",
  3113. "portable",
  3114. "shim"
  3115. ],
  3116. "time": "2016-05-18T14:26:46+00:00"
  3117. },
  3118. {
  3119. "name": "symfony/polyfill-intl-icu",
  3120. "version": "v1.2.0",
  3121. "source": {
  3122. "type": "git",
  3123. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  3124. "reference": "0f8dc2c45f69f8672379e9210bca4a115cd5146f"
  3125. },
  3126. "dist": {
  3127. "type": "zip",
  3128. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/0f8dc2c45f69f8672379e9210bca4a115cd5146f",
  3129. "reference": "0f8dc2c45f69f8672379e9210bca4a115cd5146f",
  3130. "shasum": ""
  3131. },
  3132. "require": {
  3133. "php": ">=5.3.3",
  3134. "symfony/intl": "~2.3|~3.0"
  3135. },
  3136. "suggest": {
  3137. "ext-intl": "For best performance"
  3138. },
  3139. "type": "library",
  3140. "extra": {
  3141. "branch-alias": {
  3142. "dev-master": "1.2-dev"
  3143. }
  3144. },
  3145. "autoload": {
  3146. "files": [
  3147. "bootstrap.php"
  3148. ]
  3149. },
  3150. "notification-url": "https://packagist.org/downloads/",
  3151. "license": [
  3152. "MIT"
  3153. ],
  3154. "authors": [
  3155. {
  3156. "name": "Nicolas Grekas",
  3157. "email": "p@tchwork.com"
  3158. },
  3159. {
  3160. "name": "Symfony Community",
  3161. "homepage": "https://symfony.com/contributors"
  3162. }
  3163. ],
  3164. "description": "Symfony polyfill for intl's ICU-related data and classes",
  3165. "homepage": "https://symfony.com",
  3166. "keywords": [
  3167. "compatibility",
  3168. "icu",
  3169. "intl",
  3170. "polyfill",
  3171. "portable",
  3172. "shim"
  3173. ],
  3174. "time": "2016-05-18T14:26:46+00:00"
  3175. },
  3176. {
  3177. "name": "symfony/polyfill-mbstring",
  3178. "version": "v1.2.0",
  3179. "source": {
  3180. "type": "git",
  3181. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3182. "reference": "dff51f72b0706335131b00a7f49606168c582594"
  3183. },
  3184. "dist": {
  3185. "type": "zip",
  3186. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/dff51f72b0706335131b00a7f49606168c582594",
  3187. "reference": "dff51f72b0706335131b00a7f49606168c582594",
  3188. "shasum": ""
  3189. },
  3190. "require": {
  3191. "php": ">=5.3.3"
  3192. },
  3193. "suggest": {
  3194. "ext-mbstring": "For best performance"
  3195. },
  3196. "type": "library",
  3197. "extra": {
  3198. "branch-alias": {
  3199. "dev-master": "1.2-dev"
  3200. }
  3201. },
  3202. "autoload": {
  3203. "psr-4": {
  3204. "Symfony\\Polyfill\\Mbstring\\": ""
  3205. },
  3206. "files": [
  3207. "bootstrap.php"
  3208. ]
  3209. },
  3210. "notification-url": "https://packagist.org/downloads/",
  3211. "license": [
  3212. "MIT"
  3213. ],
  3214. "authors": [
  3215. {
  3216. "name": "Nicolas Grekas",
  3217. "email": "p@tchwork.com"
  3218. },
  3219. {
  3220. "name": "Symfony Community",
  3221. "homepage": "https://symfony.com/contributors"
  3222. }
  3223. ],
  3224. "description": "Symfony polyfill for the Mbstring extension",
  3225. "homepage": "https://symfony.com",
  3226. "keywords": [
  3227. "compatibility",
  3228. "mbstring",
  3229. "polyfill",
  3230. "portable",
  3231. "shim"
  3232. ],
  3233. "time": "2016-05-18T14:26:46+00:00"
  3234. },
  3235. {
  3236. "name": "symfony/polyfill-php54",
  3237. "version": "v1.2.0",
  3238. "source": {
  3239. "type": "git",
  3240. "url": "https://github.com/symfony/polyfill-php54.git",
  3241. "reference": "34d761992f6f2cc6092cc0e5e93f38b53ba5e4f1"
  3242. },
  3243. "dist": {
  3244. "type": "zip",
  3245. "url": "https://api.github.com/repos/symfony/polyfill-php54/zipball/34d761992f6f2cc6092cc0e5e93f38b53ba5e4f1",
  3246. "reference": "34d761992f6f2cc6092cc0e5e93f38b53ba5e4f1",
  3247. "shasum": ""
  3248. },
  3249. "require": {
  3250. "php": ">=5.3.3"
  3251. },
  3252. "type": "library",
  3253. "extra": {
  3254. "branch-alias": {
  3255. "dev-master": "1.2-dev"
  3256. }
  3257. },
  3258. "autoload": {
  3259. "psr-4": {
  3260. "Symfony\\Polyfill\\Php54\\": ""
  3261. },
  3262. "files": [
  3263. "bootstrap.php"
  3264. ],
  3265. "classmap": [
  3266. "Resources/stubs"
  3267. ]
  3268. },
  3269. "notification-url": "https://packagist.org/downloads/",
  3270. "license": [
  3271. "MIT"
  3272. ],
  3273. "authors": [
  3274. {
  3275. "name": "Nicolas Grekas",
  3276. "email": "p@tchwork.com"
  3277. },
  3278. {
  3279. "name": "Symfony Community",
  3280. "homepage": "https://symfony.com/contributors"
  3281. }
  3282. ],
  3283. "description": "Symfony polyfill backporting some PHP 5.4+ features to lower PHP versions",
  3284. "homepage": "https://symfony.com",
  3285. "keywords": [
  3286. "compatibility",
  3287. "polyfill",
  3288. "portable",
  3289. "shim"
  3290. ],
  3291. "time": "2016-05-18T14:26:46+00:00"
  3292. },
  3293. {
  3294. "name": "symfony/polyfill-php55",
  3295. "version": "v1.2.0",
  3296. "source": {
  3297. "type": "git",
  3298. "url": "https://github.com/symfony/polyfill-php55.git",
  3299. "reference": "bf2ff9ad6be1a4772cb873e4eea94d70daa95c6d"
  3300. },
  3301. "dist": {
  3302. "type": "zip",
  3303. "url": "https://api.github.com/repos/symfony/polyfill-php55/zipball/bf2ff9ad6be1a4772cb873e4eea94d70daa95c6d",
  3304. "reference": "bf2ff9ad6be1a4772cb873e4eea94d70daa95c6d",
  3305. "shasum": ""
  3306. },
  3307. "require": {
  3308. "ircmaxell/password-compat": "~1.0",
  3309. "php": ">=5.3.3"
  3310. },
  3311. "type": "library",
  3312. "extra": {
  3313. "branch-alias": {
  3314. "dev-master": "1.2-dev"
  3315. }
  3316. },
  3317. "autoload": {
  3318. "psr-4": {
  3319. "Symfony\\Polyfill\\Php55\\": ""
  3320. },
  3321. "files": [
  3322. "bootstrap.php"
  3323. ]
  3324. },
  3325. "notification-url": "https://packagist.org/downloads/",
  3326. "license": [
  3327. "MIT"
  3328. ],
  3329. "authors": [
  3330. {
  3331. "name": "Nicolas Grekas",
  3332. "email": "p@tchwork.com"
  3333. },
  3334. {
  3335. "name": "Symfony Community",
  3336. "homepage": "https://symfony.com/contributors"
  3337. }
  3338. ],
  3339. "description": "Symfony polyfill backporting some PHP 5.5+ features to lower PHP versions",
  3340. "homepage": "https://symfony.com",
  3341. "keywords": [
  3342. "compatibility",
  3343. "polyfill",
  3344. "portable",
  3345. "shim"
  3346. ],
  3347. "time": "2016-05-18T14:26:46+00:00"
  3348. },
  3349. {
  3350. "name": "symfony/polyfill-php56",
  3351. "version": "v1.2.0",
  3352. "source": {
  3353. "type": "git",
  3354. "url": "https://github.com/symfony/polyfill-php56.git",
  3355. "reference": "3edf57a8fbf9a927533344cef65ad7e1cf31030a"
  3356. },
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/3edf57a8fbf9a927533344cef65ad7e1cf31030a",
  3360. "reference": "3edf57a8fbf9a927533344cef65ad7e1cf31030a",
  3361. "shasum": ""
  3362. },
  3363. "require": {
  3364. "php": ">=5.3.3",
  3365. "symfony/polyfill-util": "~1.0"
  3366. },
  3367. "type": "library",
  3368. "extra": {
  3369. "branch-alias": {
  3370. "dev-master": "1.2-dev"
  3371. }
  3372. },
  3373. "autoload": {
  3374. "psr-4": {
  3375. "Symfony\\Polyfill\\Php56\\": ""
  3376. },
  3377. "files": [
  3378. "bootstrap.php"
  3379. ]
  3380. },
  3381. "notification-url": "https://packagist.org/downloads/",
  3382. "license": [
  3383. "MIT"
  3384. ],
  3385. "authors": [
  3386. {
  3387. "name": "Nicolas Grekas",
  3388. "email": "p@tchwork.com"
  3389. },
  3390. {
  3391. "name": "Symfony Community",
  3392. "homepage": "https://symfony.com/contributors"
  3393. }
  3394. ],
  3395. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  3396. "homepage": "https://symfony.com",
  3397. "keywords": [
  3398. "compatibility",
  3399. "polyfill",
  3400. "portable",
  3401. "shim"
  3402. ],
  3403. "time": "2016-05-18T14:26:46+00:00"
  3404. },
  3405. {
  3406. "name": "symfony/polyfill-php70",
  3407. "version": "v1.2.0",
  3408. "source": {
  3409. "type": "git",
  3410. "url": "https://github.com/symfony/polyfill-php70.git",
  3411. "reference": "a42f4b6b05ed458910f8af4c4e1121b0101b2d85"
  3412. },
  3413. "dist": {
  3414. "type": "zip",
  3415. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/a42f4b6b05ed458910f8af4c4e1121b0101b2d85",
  3416. "reference": "a42f4b6b05ed458910f8af4c4e1121b0101b2d85",
  3417. "shasum": ""
  3418. },
  3419. "require": {
  3420. "paragonie/random_compat": "~1.0|~2.0",
  3421. "php": ">=5.3.3"
  3422. },
  3423. "type": "library",
  3424. "extra": {
  3425. "branch-alias": {
  3426. "dev-master": "1.2-dev"
  3427. }
  3428. },
  3429. "autoload": {
  3430. "psr-4": {
  3431. "Symfony\\Polyfill\\Php70\\": ""
  3432. },
  3433. "files": [
  3434. "bootstrap.php"
  3435. ],
  3436. "classmap": [
  3437. "Resources/stubs"
  3438. ]
  3439. },
  3440. "notification-url": "https://packagist.org/downloads/",
  3441. "license": [
  3442. "MIT"
  3443. ],
  3444. "authors": [
  3445. {
  3446. "name": "Nicolas Grekas",
  3447. "email": "p@tchwork.com"
  3448. },
  3449. {
  3450. "name": "Symfony Community",
  3451. "homepage": "https://symfony.com/contributors"
  3452. }
  3453. ],
  3454. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  3455. "homepage": "https://symfony.com",
  3456. "keywords": [
  3457. "compatibility",
  3458. "polyfill",
  3459. "portable",
  3460. "shim"
  3461. ],
  3462. "time": "2016-05-18T14:26:46+00:00"
  3463. },
  3464. {
  3465. "name": "symfony/polyfill-util",
  3466. "version": "v1.2.0",
  3467. "source": {
  3468. "type": "git",
  3469. "url": "https://github.com/symfony/polyfill-util.git",
  3470. "reference": "ef830ce3d218e622b221d6bfad42c751d974bf99"
  3471. },
  3472. "dist": {
  3473. "type": "zip",
  3474. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/ef830ce3d218e622b221d6bfad42c751d974bf99",
  3475. "reference": "ef830ce3d218e622b221d6bfad42c751d974bf99",
  3476. "shasum": ""
  3477. },
  3478. "require": {
  3479. "php": ">=5.3.3"
  3480. },
  3481. "type": "library",
  3482. "extra": {
  3483. "branch-alias": {
  3484. "dev-master": "1.2-dev"
  3485. }
  3486. },
  3487. "autoload": {
  3488. "psr-4": {
  3489. "Symfony\\Polyfill\\Util\\": ""
  3490. }
  3491. },
  3492. "notification-url": "https://packagist.org/downloads/",
  3493. "license": [
  3494. "MIT"
  3495. ],
  3496. "authors": [
  3497. {
  3498. "name": "Nicolas Grekas",
  3499. "email": "p@tchwork.com"
  3500. },
  3501. {
  3502. "name": "Symfony Community",
  3503. "homepage": "https://symfony.com/contributors"
  3504. }
  3505. ],
  3506. "description": "Symfony utilities for portability of PHP codes",
  3507. "homepage": "https://symfony.com",
  3508. "keywords": [
  3509. "compat",
  3510. "compatibility",
  3511. "polyfill",
  3512. "shim"
  3513. ],
  3514. "time": "2016-05-18T14:26:46+00:00"
  3515. },
  3516. {
  3517. "name": "symfony/security-acl",
  3518. "version": "v3.0.0",
  3519. "source": {
  3520. "type": "git",
  3521. "url": "https://github.com/symfony/security-acl.git",
  3522. "reference": "053b49bf4aa333a392c83296855989bcf88ddad1"
  3523. },
  3524. "dist": {
  3525. "type": "zip",
  3526. "url": "https://api.github.com/repos/symfony/security-acl/zipball/053b49bf4aa333a392c83296855989bcf88ddad1",
  3527. "reference": "053b49bf4aa333a392c83296855989bcf88ddad1",
  3528. "shasum": ""
  3529. },
  3530. "require": {
  3531. "php": ">=5.5.9",
  3532. "symfony/security-core": "~2.8|~3.0"
  3533. },
  3534. "require-dev": {
  3535. "doctrine/common": "~2.2",
  3536. "doctrine/dbal": "~2.2",
  3537. "psr/log": "~1.0",
  3538. "symfony/phpunit-bridge": "~2.8|~3.0"
  3539. },
  3540. "suggest": {
  3541. "doctrine/dbal": "For using the built-in ACL implementation",
  3542. "symfony/class-loader": "For using the ACL generateSql script",
  3543. "symfony/finder": "For using the ACL generateSql script"
  3544. },
  3545. "type": "library",
  3546. "extra": {
  3547. "branch-alias": {
  3548. "dev-master": "3.0-dev"
  3549. }
  3550. },
  3551. "autoload": {
  3552. "psr-4": {
  3553. "Symfony\\Component\\Security\\Acl\\": ""
  3554. },
  3555. "exclude-from-classmap": [
  3556. "/Tests/"
  3557. ]
  3558. },
  3559. "notification-url": "https://packagist.org/downloads/",
  3560. "license": [
  3561. "MIT"
  3562. ],
  3563. "authors": [
  3564. {
  3565. "name": "Fabien Potencier",
  3566. "email": "fabien@symfony.com"
  3567. },
  3568. {
  3569. "name": "Symfony Community",
  3570. "homepage": "https://symfony.com/contributors"
  3571. }
  3572. ],
  3573. "description": "Symfony Security Component - ACL (Access Control List)",
  3574. "homepage": "https://symfony.com",
  3575. "time": "2015-12-28T09:39:46+00:00"
  3576. },
  3577. {
  3578. "name": "symfony/swiftmailer-bundle",
  3579. "version": "v2.3.11",
  3580. "source": {
  3581. "type": "git",
  3582. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  3583. "reference": "5e1a90f28213231ceee19c953bbebc5b5b95c690"
  3584. },
  3585. "dist": {
  3586. "type": "zip",
  3587. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/5e1a90f28213231ceee19c953bbebc5b5b95c690",
  3588. "reference": "5e1a90f28213231ceee19c953bbebc5b5b95c690",
  3589. "shasum": ""
  3590. },
  3591. "require": {
  3592. "php": ">=5.3.2",
  3593. "swiftmailer/swiftmailer": ">=4.2.0,~5.0",
  3594. "symfony/config": "~2.3|~3.0",
  3595. "symfony/dependency-injection": "~2.3|~3.0",
  3596. "symfony/http-kernel": "~2.3|~3.0",
  3597. "symfony/yaml": "~2.3|~3.0"
  3598. },
  3599. "require-dev": {
  3600. "symfony/phpunit-bridge": "~2.7|~3.0"
  3601. },
  3602. "suggest": {
  3603. "psr/log": "Allows logging"
  3604. },
  3605. "type": "symfony-bundle",
  3606. "extra": {
  3607. "branch-alias": {
  3608. "dev-master": "2.3-dev"
  3609. }
  3610. },
  3611. "autoload": {
  3612. "psr-4": {
  3613. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  3614. }
  3615. },
  3616. "notification-url": "https://packagist.org/downloads/",
  3617. "license": [
  3618. "MIT"
  3619. ],
  3620. "authors": [
  3621. {
  3622. "name": "Symfony Community",
  3623. "homepage": "http://symfony.com/contributors"
  3624. },
  3625. {
  3626. "name": "Fabien Potencier",
  3627. "email": "fabien@symfony.com"
  3628. }
  3629. ],
  3630. "description": "Symfony SwiftmailerBundle",
  3631. "homepage": "http://symfony.com",
  3632. "time": "2016-01-15T16:41:20+00:00"
  3633. },
  3634. {
  3635. "name": "symfony/symfony",
  3636. "version": "v2.8.11",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://github.com/symfony/symfony.git",
  3640. "reference": "f588c92c3e263b2eaa2f96a7b1359199eb209b3d"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://api.github.com/repos/symfony/symfony/zipball/f588c92c3e263b2eaa2f96a7b1359199eb209b3d",
  3645. "reference": "f588c92c3e263b2eaa2f96a7b1359199eb209b3d",
  3646. "shasum": ""
  3647. },
  3648. "require": {
  3649. "doctrine/common": "~2.4",
  3650. "php": ">=5.3.9",
  3651. "psr/log": "~1.0",
  3652. "symfony/polyfill-apcu": "~1.1",
  3653. "symfony/polyfill-intl-icu": "~1.0",
  3654. "symfony/polyfill-mbstring": "~1.0",
  3655. "symfony/polyfill-php54": "~1.0",
  3656. "symfony/polyfill-php55": "~1.0",
  3657. "symfony/polyfill-php56": "~1.0",
  3658. "symfony/polyfill-php70": "~1.0",
  3659. "symfony/polyfill-util": "~1.0",
  3660. "symfony/security-acl": "~2.7|~3.0.0",
  3661. "twig/twig": "~1.23|~2.0"
  3662. },
  3663. "conflict": {
  3664. "phpdocumentor/reflection": "<1.0.7"
  3665. },
  3666. "replace": {
  3667. "symfony/asset": "self.version",
  3668. "symfony/browser-kit": "self.version",
  3669. "symfony/class-loader": "self.version",
  3670. "symfony/config": "self.version",
  3671. "symfony/console": "self.version",
  3672. "symfony/css-selector": "self.version",
  3673. "symfony/debug": "self.version",
  3674. "symfony/debug-bundle": "self.version",
  3675. "symfony/dependency-injection": "self.version",
  3676. "symfony/doctrine-bridge": "self.version",
  3677. "symfony/dom-crawler": "self.version",
  3678. "symfony/event-dispatcher": "self.version",
  3679. "symfony/expression-language": "self.version",
  3680. "symfony/filesystem": "self.version",
  3681. "symfony/finder": "self.version",
  3682. "symfony/form": "self.version",
  3683. "symfony/framework-bundle": "self.version",
  3684. "symfony/http-foundation": "self.version",
  3685. "symfony/http-kernel": "self.version",
  3686. "symfony/intl": "self.version",
  3687. "symfony/ldap": "self.version",
  3688. "symfony/locale": "self.version",
  3689. "symfony/monolog-bridge": "self.version",
  3690. "symfony/options-resolver": "self.version",
  3691. "symfony/process": "self.version",
  3692. "symfony/property-access": "self.version",
  3693. "symfony/property-info": "self.version",
  3694. "symfony/proxy-manager-bridge": "self.version",
  3695. "symfony/routing": "self.version",
  3696. "symfony/security": "self.version",
  3697. "symfony/security-bundle": "self.version",
  3698. "symfony/security-core": "self.version",
  3699. "symfony/security-csrf": "self.version",
  3700. "symfony/security-guard": "self.version",
  3701. "symfony/security-http": "self.version",
  3702. "symfony/serializer": "self.version",
  3703. "symfony/stopwatch": "self.version",
  3704. "symfony/swiftmailer-bridge": "self.version",
  3705. "symfony/templating": "self.version",
  3706. "symfony/translation": "self.version",
  3707. "symfony/twig-bridge": "self.version",
  3708. "symfony/twig-bundle": "self.version",
  3709. "symfony/validator": "self.version",
  3710. "symfony/var-dumper": "self.version",
  3711. "symfony/web-profiler-bundle": "self.version",
  3712. "symfony/yaml": "self.version"
  3713. },
  3714. "require-dev": {
  3715. "doctrine/data-fixtures": "1.0.*",
  3716. "doctrine/dbal": "~2.4",
  3717. "doctrine/doctrine-bundle": "~1.2",
  3718. "doctrine/orm": "~2.4,>=2.4.5",
  3719. "egulias/email-validator": "~1.2,>=1.2.1",
  3720. "monolog/monolog": "~1.11",
  3721. "ocramius/proxy-manager": "~0.4|~1.0|~2.0",
  3722. "phpdocumentor/reflection": "^1.0.7"
  3723. },
  3724. "type": "library",
  3725. "extra": {
  3726. "branch-alias": {
  3727. "dev-master": "2.8-dev"
  3728. }
  3729. },
  3730. "autoload": {
  3731. "psr-4": {
  3732. "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/",
  3733. "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/",
  3734. "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/",
  3735. "Symfony\\Bridge\\Swiftmailer\\": "src/Symfony/Bridge/Swiftmailer/",
  3736. "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
  3737. "Symfony\\Bundle\\": "src/Symfony/Bundle/",
  3738. "Symfony\\Component\\": "src/Symfony/Component/"
  3739. },
  3740. "classmap": [
  3741. "src/Symfony/Component/Intl/Resources/stubs"
  3742. ],
  3743. "exclude-from-classmap": [
  3744. "**/Tests/"
  3745. ]
  3746. },
  3747. "notification-url": "https://packagist.org/downloads/",
  3748. "license": [
  3749. "MIT"
  3750. ],
  3751. "authors": [
  3752. {
  3753. "name": "Fabien Potencier",
  3754. "email": "fabien@symfony.com"
  3755. },
  3756. {
  3757. "name": "Symfony Community",
  3758. "homepage": "https://symfony.com/contributors"
  3759. }
  3760. ],
  3761. "description": "The Symfony PHP framework",
  3762. "homepage": "https://symfony.com",
  3763. "keywords": [
  3764. "framework"
  3765. ],
  3766. "time": "2016-09-07T02:04:25+00:00"
  3767. },
  3768. {
  3769. "name": "twig/extensions",
  3770. "version": "v1.3.0",
  3771. "source": {
  3772. "type": "git",
  3773. "url": "https://github.com/twigphp/Twig-extensions.git",
  3774. "reference": "449e3c8a9ffad7c2479c7864557275a32b037499"
  3775. },
  3776. "dist": {
  3777. "type": "zip",
  3778. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/449e3c8a9ffad7c2479c7864557275a32b037499",
  3779. "reference": "449e3c8a9ffad7c2479c7864557275a32b037499",
  3780. "shasum": ""
  3781. },
  3782. "require": {
  3783. "twig/twig": "~1.20|~2.0"
  3784. },
  3785. "require-dev": {
  3786. "symfony/translation": "~2.3"
  3787. },
  3788. "suggest": {
  3789. "symfony/translation": "Allow the time_diff output to be translated"
  3790. },
  3791. "type": "library",
  3792. "extra": {
  3793. "branch-alias": {
  3794. "dev-master": "1.3-dev"
  3795. }
  3796. },
  3797. "autoload": {
  3798. "psr-0": {
  3799. "Twig_Extensions_": "lib/"
  3800. }
  3801. },
  3802. "notification-url": "https://packagist.org/downloads/",
  3803. "license": [
  3804. "MIT"
  3805. ],
  3806. "authors": [
  3807. {
  3808. "name": "Fabien Potencier",
  3809. "email": "fabien@symfony.com"
  3810. }
  3811. ],
  3812. "description": "Common additional features for Twig that do not directly belong in core",
  3813. "homepage": "http://twig.sensiolabs.org/doc/extensions/index.html",
  3814. "keywords": [
  3815. "i18n",
  3816. "text"
  3817. ],
  3818. "time": "2015-08-22T16:38:35+00:00"
  3819. },
  3820. {
  3821. "name": "twig/twig",
  3822. "version": "v1.24.2",
  3823. "source": {
  3824. "type": "git",
  3825. "url": "https://github.com/twigphp/Twig.git",
  3826. "reference": "33093f6e310e6976baeac7b14f3a6ec02f2d79b7"
  3827. },
  3828. "dist": {
  3829. "type": "zip",
  3830. "url": "https://api.github.com/repos/twigphp/Twig/zipball/33093f6e310e6976baeac7b14f3a6ec02f2d79b7",
  3831. "reference": "33093f6e310e6976baeac7b14f3a6ec02f2d79b7",
  3832. "shasum": ""
  3833. },
  3834. "require": {
  3835. "php": ">=5.2.7"
  3836. },
  3837. "require-dev": {
  3838. "symfony/debug": "~2.7",
  3839. "symfony/phpunit-bridge": "~2.7"
  3840. },
  3841. "type": "library",
  3842. "extra": {
  3843. "branch-alias": {
  3844. "dev-master": "1.24-dev"
  3845. }
  3846. },
  3847. "autoload": {
  3848. "psr-0": {
  3849. "Twig_": "lib/"
  3850. }
  3851. },
  3852. "notification-url": "https://packagist.org/downloads/",
  3853. "license": [
  3854. "BSD-3-Clause"
  3855. ],
  3856. "authors": [
  3857. {
  3858. "name": "Fabien Potencier",
  3859. "email": "fabien@symfony.com",
  3860. "homepage": "http://fabien.potencier.org",
  3861. "role": "Lead Developer"
  3862. },
  3863. {
  3864. "name": "Armin Ronacher",
  3865. "email": "armin.ronacher@active-4.com",
  3866. "role": "Project Founder"
  3867. },
  3868. {
  3869. "name": "Twig Team",
  3870. "homepage": "http://twig.sensiolabs.org/contributors",
  3871. "role": "Contributors"
  3872. }
  3873. ],
  3874. "description": "Twig, the flexible, fast, and secure template language for PHP",
  3875. "homepage": "http://twig.sensiolabs.org",
  3876. "keywords": [
  3877. "templating"
  3878. ],
  3879. "time": "2016-09-01T17:50:53+00:00"
  3880. },
  3881. {
  3882. "name": "ua-parser/uap-php",
  3883. "version": "v3.5.0",
  3884. "source": {
  3885. "type": "git",
  3886. "url": "https://github.com/ua-parser/uap-php.git",
  3887. "reference": "c8b31e5b8215a0c6dab4dd304050526a1907b17c"
  3888. },
  3889. "dist": {
  3890. "type": "zip",
  3891. "url": "https://api.github.com/repos/ua-parser/uap-php/zipball/c8b31e5b8215a0c6dab4dd304050526a1907b17c",
  3892. "reference": "c8b31e5b8215a0c6dab4dd304050526a1907b17c",
  3893. "shasum": ""
  3894. },
  3895. "require": {
  3896. "php": ">=5.3.0",
  3897. "symfony/console": "^2.0 || ^3.0 || ^4.0",
  3898. "symfony/filesystem": "^2.0 || ^3.0 || ^4.0",
  3899. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  3900. "symfony/yaml": "^2.0 || ^3.0 || ^4.0"
  3901. },
  3902. "require-dev": {
  3903. "phpunit/phpunit": "^4.0 || ^5.0"
  3904. },
  3905. "bin": [
  3906. "bin/uaparser"
  3907. ],
  3908. "type": "library",
  3909. "autoload": {
  3910. "psr-4": {
  3911. "UAParser\\": "src"
  3912. }
  3913. },
  3914. "notification-url": "https://packagist.org/downloads/",
  3915. "license": [
  3916. "MIT"
  3917. ],
  3918. "authors": [
  3919. {
  3920. "name": "Lars Strojny",
  3921. "email": "lars@strojny.net"
  3922. },
  3923. {
  3924. "name": "Dave Olsen",
  3925. "email": "dmolsen@gmail.com"
  3926. }
  3927. ],
  3928. "description": "A multi-language port of Browserscope's user agent parser.",
  3929. "time": "2017-12-13T11:03:50+00:00"
  3930. },
  3931. {
  3932. "name": "white-october/pagerfanta-bundle",
  3933. "version": "v1.0.7",
  3934. "source": {
  3935. "type": "git",
  3936. "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  3937. "reference": "f7e0fdf94a763a21a7c4c36ec9d9b5bcf4e12521"
  3938. },
  3939. "dist": {
  3940. "type": "zip",
  3941. "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/f7e0fdf94a763a21a7c4c36ec9d9b5bcf4e12521",
  3942. "reference": "f7e0fdf94a763a21a7c4c36ec9d9b5bcf4e12521",
  3943. "shasum": ""
  3944. },
  3945. "require": {
  3946. "pagerfanta/pagerfanta": "1.0.*",
  3947. "symfony/framework-bundle": "~2.3|~3.0",
  3948. "symfony/property-access": "~2.3|~3.0",
  3949. "symfony/twig-bundle": "~2.3|~3.0"
  3950. },
  3951. "require-dev": {
  3952. "phpunit/phpunit": "~3.7",
  3953. "symfony/symfony": "~2.3|~3.0"
  3954. },
  3955. "type": "symfony-bundle",
  3956. "extra": {
  3957. "branch-alias": {
  3958. "dev-master": "1.0.x-dev"
  3959. }
  3960. },
  3961. "autoload": {
  3962. "psr-4": {
  3963. "WhiteOctober\\PagerfantaBundle\\": ""
  3964. }
  3965. },
  3966. "notification-url": "https://packagist.org/downloads/",
  3967. "license": [
  3968. "MIT"
  3969. ],
  3970. "authors": [
  3971. {
  3972. "name": "Pablo Díez",
  3973. "email": "pablodip@gmail.com"
  3974. }
  3975. ],
  3976. "description": "Bundle to use Pagerfanta with Symfony2",
  3977. "keywords": [
  3978. "page",
  3979. "paging"
  3980. ],
  3981. "time": "2016-08-04T15:48:14+00:00"
  3982. },
  3983. {
  3984. "name": "zendframework/zend-escaper",
  3985. "version": "2.5.2",
  3986. "source": {
  3987. "type": "git",
  3988. "url": "https://github.com/zendframework/zend-escaper.git",
  3989. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e"
  3990. },
  3991. "dist": {
  3992. "type": "zip",
  3993. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  3994. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  3995. "shasum": ""
  3996. },
  3997. "require": {
  3998. "php": ">=5.5"
  3999. },
  4000. "require-dev": {
  4001. "fabpot/php-cs-fixer": "1.7.*",
  4002. "phpunit/phpunit": "~4.0"
  4003. },
  4004. "type": "library",
  4005. "extra": {
  4006. "branch-alias": {
  4007. "dev-master": "2.5-dev",
  4008. "dev-develop": "2.6-dev"
  4009. }
  4010. },
  4011. "autoload": {
  4012. "psr-4": {
  4013. "Zend\\Escaper\\": "src/"
  4014. }
  4015. },
  4016. "notification-url": "https://packagist.org/downloads/",
  4017. "license": [
  4018. "BSD-3-Clause"
  4019. ],
  4020. "homepage": "https://github.com/zendframework/zend-escaper",
  4021. "keywords": [
  4022. "escaper",
  4023. "zf2"
  4024. ],
  4025. "time": "2016-06-30T19:48:38+00:00"
  4026. },
  4027. {
  4028. "name": "zendframework/zend-feed",
  4029. "version": "2.7.0",
  4030. "source": {
  4031. "type": "git",
  4032. "url": "https://github.com/zendframework/zend-feed.git",
  4033. "reference": "12b328d382aa5200f1de53d4147033b885776b67"
  4034. },
  4035. "dist": {
  4036. "type": "zip",
  4037. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/12b328d382aa5200f1de53d4147033b885776b67",
  4038. "reference": "12b328d382aa5200f1de53d4147033b885776b67",
  4039. "shasum": ""
  4040. },
  4041. "require": {
  4042. "php": "^5.5 || ^7.0",
  4043. "zendframework/zend-escaper": "^2.5",
  4044. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  4045. },
  4046. "require-dev": {
  4047. "fabpot/php-cs-fixer": "1.7.*",
  4048. "phpunit/phpunit": "~4.0",
  4049. "psr/http-message": "^1.0",
  4050. "zendframework/zend-cache": "^2.5",
  4051. "zendframework/zend-db": "^2.5",
  4052. "zendframework/zend-http": "^2.5",
  4053. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  4054. "zendframework/zend-validator": "^2.5"
  4055. },
  4056. "suggest": {
  4057. "psr/http-message": "PSR-7 ^1.0, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  4058. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  4059. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  4060. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  4061. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  4062. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries ehen using the Writer subcomponent"
  4063. },
  4064. "type": "library",
  4065. "extra": {
  4066. "branch-alias": {
  4067. "dev-master": "2.7-dev",
  4068. "dev-develop": "2.8-dev"
  4069. }
  4070. },
  4071. "autoload": {
  4072. "psr-4": {
  4073. "Zend\\Feed\\": "src/"
  4074. }
  4075. },
  4076. "notification-url": "https://packagist.org/downloads/",
  4077. "license": [
  4078. "BSD-3-Clause"
  4079. ],
  4080. "description": "provides functionality for consuming RSS and Atom feeds",
  4081. "homepage": "https://github.com/zendframework/zend-feed",
  4082. "keywords": [
  4083. "feed",
  4084. "zf2"
  4085. ],
  4086. "time": "2016-02-11T18:54:29+00:00"
  4087. },
  4088. {
  4089. "name": "zendframework/zend-json",
  4090. "version": "2.6.1",
  4091. "source": {
  4092. "type": "git",
  4093. "url": "https://github.com/zendframework/zend-json.git",
  4094. "reference": "4c8705dbe4ad7d7e51b2876c5b9eea0ef916ba28"
  4095. },
  4096. "dist": {
  4097. "type": "zip",
  4098. "url": "https://api.github.com/repos/zendframework/zend-json/zipball/4c8705dbe4ad7d7e51b2876c5b9eea0ef916ba28",
  4099. "reference": "4c8705dbe4ad7d7e51b2876c5b9eea0ef916ba28",
  4100. "shasum": ""
  4101. },
  4102. "require": {
  4103. "php": "^5.5 || ^7.0"
  4104. },
  4105. "require-dev": {
  4106. "fabpot/php-cs-fixer": "1.7.*",
  4107. "phpunit/phpunit": "~4.0",
  4108. "zendframework/zend-http": "^2.5.4",
  4109. "zendframework/zend-server": "^2.6.1",
  4110. "zendframework/zend-stdlib": "^2.5 || ^3.0",
  4111. "zendframework/zendxml": "^1.0.2"
  4112. },
  4113. "suggest": {
  4114. "zendframework/zend-http": "Zend\\Http component, required to use Zend\\Json\\Server",
  4115. "zendframework/zend-server": "Zend\\Server component, required to use Zend\\Json\\Server",
  4116. "zendframework/zend-stdlib": "Zend\\Stdlib component, for use with caching Zend\\Json\\Server responses",
  4117. "zendframework/zendxml": "To support Zend\\Json\\Json::fromXml() usage"
  4118. },
  4119. "type": "library",
  4120. "extra": {
  4121. "branch-alias": {
  4122. "dev-master": "2.6-dev",
  4123. "dev-develop": "2.7-dev"
  4124. }
  4125. },
  4126. "autoload": {
  4127. "psr-4": {
  4128. "Zend\\Json\\": "src/"
  4129. }
  4130. },
  4131. "notification-url": "https://packagist.org/downloads/",
  4132. "license": [
  4133. "BSD-3-Clause"
  4134. ],
  4135. "description": "provides convenience methods for serializing native PHP to JSON and decoding JSON to native PHP",
  4136. "homepage": "https://github.com/zendframework/zend-json",
  4137. "keywords": [
  4138. "json",
  4139. "zf2"
  4140. ],
  4141. "time": "2016-02-04T21:20:26+00:00"
  4142. },
  4143. {
  4144. "name": "zendframework/zend-servicemanager",
  4145. "version": "2.7.7",
  4146. "source": {
  4147. "type": "git",
  4148. "url": "https://github.com/zendframework/zend-servicemanager.git",
  4149. "reference": "eeecb78945c2a9f653caded36ba5274e8a8f5468"
  4150. },
  4151. "dist": {
  4152. "type": "zip",
  4153. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/eeecb78945c2a9f653caded36ba5274e8a8f5468",
  4154. "reference": "eeecb78945c2a9f653caded36ba5274e8a8f5468",
  4155. "shasum": ""
  4156. },
  4157. "require": {
  4158. "container-interop/container-interop": "~1.0",
  4159. "php": "^5.5 || ^7.0"
  4160. },
  4161. "require-dev": {
  4162. "athletic/athletic": "dev-master",
  4163. "fabpot/php-cs-fixer": "1.7.*",
  4164. "phpunit/phpunit": "~4.0",
  4165. "zendframework/zend-di": "~2.5",
  4166. "zendframework/zend-mvc": "~2.5"
  4167. },
  4168. "suggest": {
  4169. "ocramius/proxy-manager": "ProxyManager 0.5.* to handle lazy initialization of services",
  4170. "zendframework/zend-di": "Zend\\Di component"
  4171. },
  4172. "type": "library",
  4173. "extra": {
  4174. "branch-alias": {
  4175. "dev-master": "2.7-dev",
  4176. "dev-develop": "3.0-dev"
  4177. }
  4178. },
  4179. "autoload": {
  4180. "psr-4": {
  4181. "Zend\\ServiceManager\\": "src/"
  4182. }
  4183. },
  4184. "notification-url": "https://packagist.org/downloads/",
  4185. "license": [
  4186. "BSD-3-Clause"
  4187. ],
  4188. "homepage": "https://github.com/zendframework/zend-servicemanager",
  4189. "keywords": [
  4190. "servicemanager",
  4191. "zf2"
  4192. ],
  4193. "time": "2016-09-01T19:03:15+00:00"
  4194. },
  4195. {
  4196. "name": "zendframework/zend-stdlib",
  4197. "version": "3.0.1",
  4198. "source": {
  4199. "type": "git",
  4200. "url": "https://github.com/zendframework/zend-stdlib.git",
  4201. "reference": "8bafa58574204bdff03c275d1d618aaa601588ae"
  4202. },
  4203. "dist": {
  4204. "type": "zip",
  4205. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/8bafa58574204bdff03c275d1d618aaa601588ae",
  4206. "reference": "8bafa58574204bdff03c275d1d618aaa601588ae",
  4207. "shasum": ""
  4208. },
  4209. "require": {
  4210. "php": "^5.5 || ^7.0"
  4211. },
  4212. "require-dev": {
  4213. "athletic/athletic": "~0.1",
  4214. "fabpot/php-cs-fixer": "1.7.*",
  4215. "phpunit/phpunit": "~4.0"
  4216. },
  4217. "type": "library",
  4218. "extra": {
  4219. "branch-alias": {
  4220. "dev-master": "3.0-dev",
  4221. "dev-develop": "3.1-dev"
  4222. }
  4223. },
  4224. "autoload": {
  4225. "psr-4": {
  4226. "Zend\\Stdlib\\": "src/"
  4227. }
  4228. },
  4229. "notification-url": "https://packagist.org/downloads/",
  4230. "license": [
  4231. "BSD-3-Clause"
  4232. ],
  4233. "homepage": "https://github.com/zendframework/zend-stdlib",
  4234. "keywords": [
  4235. "stdlib",
  4236. "zf2"
  4237. ],
  4238. "time": "2016-04-12T21:19:36+00:00"
  4239. },
  4240. {
  4241. "name": "zendframework/zend-uri",
  4242. "version": "2.5.2",
  4243. "source": {
  4244. "type": "git",
  4245. "url": "https://github.com/zendframework/zend-uri.git",
  4246. "reference": "0bf717a239432b1a1675ae314f7c4acd742749ed"
  4247. },
  4248. "dist": {
  4249. "type": "zip",
  4250. "url": "https://api.github.com/repos/zendframework/zend-uri/zipball/0bf717a239432b1a1675ae314f7c4acd742749ed",
  4251. "reference": "0bf717a239432b1a1675ae314f7c4acd742749ed",
  4252. "shasum": ""
  4253. },
  4254. "require": {
  4255. "php": "^5.5 || ^7.0",
  4256. "zendframework/zend-escaper": "^2.5",
  4257. "zendframework/zend-validator": "^2.5"
  4258. },
  4259. "require-dev": {
  4260. "fabpot/php-cs-fixer": "1.7.*",
  4261. "phpunit/phpunit": "~4.0"
  4262. },
  4263. "type": "library",
  4264. "extra": {
  4265. "branch-alias": {
  4266. "dev-master": "2.5-dev",
  4267. "dev-develop": "2.6-dev"
  4268. }
  4269. },
  4270. "autoload": {
  4271. "psr-4": {
  4272. "Zend\\Uri\\": "src/"
  4273. }
  4274. },
  4275. "notification-url": "https://packagist.org/downloads/",
  4276. "license": [
  4277. "BSD-3-Clause"
  4278. ],
  4279. "description": "a component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  4280. "homepage": "https://github.com/zendframework/zend-uri",
  4281. "keywords": [
  4282. "uri",
  4283. "zf2"
  4284. ],
  4285. "time": "2016-02-17T22:38:51+00:00"
  4286. },
  4287. {
  4288. "name": "zendframework/zend-validator",
  4289. "version": "2.8.1",
  4290. "source": {
  4291. "type": "git",
  4292. "url": "https://github.com/zendframework/zend-validator.git",
  4293. "reference": "8ec9f57a717dd37340308aa632f148a2c2be1cfc"
  4294. },
  4295. "dist": {
  4296. "type": "zip",
  4297. "url": "https://api.github.com/repos/zendframework/zend-validator/zipball/8ec9f57a717dd37340308aa632f148a2c2be1cfc",
  4298. "reference": "8ec9f57a717dd37340308aa632f148a2c2be1cfc",
  4299. "shasum": ""
  4300. },
  4301. "require": {
  4302. "container-interop/container-interop": "^1.1",
  4303. "php": "^5.5 || ^7.0",
  4304. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  4305. },
  4306. "require-dev": {
  4307. "fabpot/php-cs-fixer": "1.7.*",
  4308. "phpunit/phpunit": "^4.0",
  4309. "zendframework/zend-cache": "^2.6.1",
  4310. "zendframework/zend-config": "^2.6",
  4311. "zendframework/zend-db": "^2.7",
  4312. "zendframework/zend-filter": "^2.6",
  4313. "zendframework/zend-http": "^2.5.4",
  4314. "zendframework/zend-i18n": "^2.6",
  4315. "zendframework/zend-math": "^2.6",
  4316. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  4317. "zendframework/zend-session": "^2.6.2",
  4318. "zendframework/zend-uri": "^2.5"
  4319. },
  4320. "suggest": {
  4321. "zendframework/zend-db": "Zend\\Db component",
  4322. "zendframework/zend-filter": "Zend\\Filter component, required by the Digits validator",
  4323. "zendframework/zend-i18n": "Zend\\I18n component to allow translation of validation error messages as well as to use the various Date validators",
  4324. "zendframework/zend-i18n-resources": "Translations of validator messages",
  4325. "zendframework/zend-math": "Zend\\Math component",
  4326. "zendframework/zend-servicemanager": "Zend\\ServiceManager component to allow using the ValidatorPluginManager and validator chains",
  4327. "zendframework/zend-session": "Zend\\Session component",
  4328. "zendframework/zend-uri": "Zend\\Uri component, required by the Uri and Sitemap\\Loc validators"
  4329. },
  4330. "type": "library",
  4331. "extra": {
  4332. "branch-alias": {
  4333. "dev-master": "2.8-dev",
  4334. "dev-develop": "2.9-dev"
  4335. },
  4336. "zf": {
  4337. "component": "Zend\\Validator",
  4338. "config-provider": "Zend\\Validator\\ConfigProvider"
  4339. }
  4340. },
  4341. "autoload": {
  4342. "psr-4": {
  4343. "Zend\\Validator\\": "src/"
  4344. }
  4345. },
  4346. "notification-url": "https://packagist.org/downloads/",
  4347. "license": [
  4348. "BSD-3-Clause"
  4349. ],
  4350. "description": "provides a set of commonly needed validators",
  4351. "homepage": "https://github.com/zendframework/zend-validator",
  4352. "keywords": [
  4353. "validator",
  4354. "zf2"
  4355. ],
  4356. "time": "2016-06-23T13:44:31+00:00"
  4357. },
  4358. {
  4359. "name": "zendframework/zend-version",
  4360. "version": "2.5.1",
  4361. "source": {
  4362. "type": "git",
  4363. "url": "https://github.com/zendframework/zend-version.git",
  4364. "reference": "e30c55dc394eaf396f0347887af0a7bef471fe08"
  4365. },
  4366. "dist": {
  4367. "type": "zip",
  4368. "url": "https://api.github.com/repos/zendframework/zend-version/zipball/e30c55dc394eaf396f0347887af0a7bef471fe08",
  4369. "reference": "e30c55dc394eaf396f0347887af0a7bef471fe08",
  4370. "shasum": ""
  4371. },
  4372. "require": {
  4373. "php": ">=5.3.23",
  4374. "zendframework/zend-json": "~2.5"
  4375. },
  4376. "require-dev": {
  4377. "fabpot/php-cs-fixer": "1.7.*",
  4378. "phpunit/phpunit": "~4.0",
  4379. "zendframework/zend-http": "~2.5"
  4380. },
  4381. "suggest": {
  4382. "zendframework/zend-http": "Allows use of Zend\\Http\\Client to check version information",
  4383. "zendframework/zend-json": "To check latest version hosted in GitHub"
  4384. },
  4385. "type": "library",
  4386. "extra": {
  4387. "branch-alias": {
  4388. "dev-master": "2.5-dev",
  4389. "dev-develop": "2.6-dev"
  4390. }
  4391. },
  4392. "autoload": {
  4393. "psr-4": {
  4394. "Zend\\Version\\": "src/"
  4395. }
  4396. },
  4397. "notification-url": "https://packagist.org/downloads/",
  4398. "license": [
  4399. "BSD-3-Clause"
  4400. ],
  4401. "homepage": "https://github.com/zendframework/zend-version",
  4402. "keywords": [
  4403. "version",
  4404. "zf2"
  4405. ],
  4406. "time": "2015-06-04T15:41:05+00:00"
  4407. }
  4408. ],
  4409. "packages-dev": [
  4410. {
  4411. "name": "myclabs/deep-copy",
  4412. "version": "1.5.2",
  4413. "source": {
  4414. "type": "git",
  4415. "url": "https://github.com/myclabs/DeepCopy.git",
  4416. "reference": "da8529775f14f4fdae33f916eb0cf65f6afbddbc"
  4417. },
  4418. "dist": {
  4419. "type": "zip",
  4420. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/da8529775f14f4fdae33f916eb0cf65f6afbddbc",
  4421. "reference": "da8529775f14f4fdae33f916eb0cf65f6afbddbc",
  4422. "shasum": ""
  4423. },
  4424. "require": {
  4425. "php": ">=5.4.0"
  4426. },
  4427. "require-dev": {
  4428. "doctrine/collections": "1.*",
  4429. "phpunit/phpunit": "~4.1"
  4430. },
  4431. "type": "library",
  4432. "autoload": {
  4433. "psr-4": {
  4434. "DeepCopy\\": "src/DeepCopy/"
  4435. }
  4436. },
  4437. "notification-url": "https://packagist.org/downloads/",
  4438. "license": [
  4439. "MIT"
  4440. ],
  4441. "description": "Create deep copies (clones) of your objects",
  4442. "homepage": "https://github.com/myclabs/DeepCopy",
  4443. "keywords": [
  4444. "clone",
  4445. "copy",
  4446. "duplicate",
  4447. "object",
  4448. "object graph"
  4449. ],
  4450. "time": "2016-09-06T16:07:05+00:00"
  4451. },
  4452. {
  4453. "name": "phpdocumentor/reflection-common",
  4454. "version": "1.0",
  4455. "source": {
  4456. "type": "git",
  4457. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4458. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c"
  4459. },
  4460. "dist": {
  4461. "type": "zip",
  4462. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  4463. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  4464. "shasum": ""
  4465. },
  4466. "require": {
  4467. "php": ">=5.5"
  4468. },
  4469. "require-dev": {
  4470. "phpunit/phpunit": "^4.6"
  4471. },
  4472. "type": "library",
  4473. "extra": {
  4474. "branch-alias": {
  4475. "dev-master": "1.0.x-dev"
  4476. }
  4477. },
  4478. "autoload": {
  4479. "psr-4": {
  4480. "phpDocumentor\\Reflection\\": [
  4481. "src"
  4482. ]
  4483. }
  4484. },
  4485. "notification-url": "https://packagist.org/downloads/",
  4486. "license": [
  4487. "MIT"
  4488. ],
  4489. "authors": [
  4490. {
  4491. "name": "Jaap van Otterdijk",
  4492. "email": "opensource@ijaap.nl"
  4493. }
  4494. ],
  4495. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4496. "homepage": "http://www.phpdoc.org",
  4497. "keywords": [
  4498. "FQSEN",
  4499. "phpDocumentor",
  4500. "phpdoc",
  4501. "reflection",
  4502. "static analysis"
  4503. ],
  4504. "time": "2015-12-27T11:43:31+00:00"
  4505. },
  4506. {
  4507. "name": "phpdocumentor/reflection-docblock",
  4508. "version": "3.1.0",
  4509. "source": {
  4510. "type": "git",
  4511. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4512. "reference": "9270140b940ff02e58ec577c237274e92cd40cdd"
  4513. },
  4514. "dist": {
  4515. "type": "zip",
  4516. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9270140b940ff02e58ec577c237274e92cd40cdd",
  4517. "reference": "9270140b940ff02e58ec577c237274e92cd40cdd",
  4518. "shasum": ""
  4519. },
  4520. "require": {
  4521. "php": ">=5.5",
  4522. "phpdocumentor/reflection-common": "^1.0@dev",
  4523. "phpdocumentor/type-resolver": "^0.2.0",
  4524. "webmozart/assert": "^1.0"
  4525. },
  4526. "require-dev": {
  4527. "mockery/mockery": "^0.9.4",
  4528. "phpunit/phpunit": "^4.4"
  4529. },
  4530. "type": "library",
  4531. "autoload": {
  4532. "psr-4": {
  4533. "phpDocumentor\\Reflection\\": [
  4534. "src/"
  4535. ]
  4536. }
  4537. },
  4538. "notification-url": "https://packagist.org/downloads/",
  4539. "license": [
  4540. "MIT"
  4541. ],
  4542. "authors": [
  4543. {
  4544. "name": "Mike van Riel",
  4545. "email": "me@mikevanriel.com"
  4546. }
  4547. ],
  4548. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4549. "time": "2016-06-10T09:48:41+00:00"
  4550. },
  4551. {
  4552. "name": "phpdocumentor/type-resolver",
  4553. "version": "0.2",
  4554. "source": {
  4555. "type": "git",
  4556. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4557. "reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443"
  4558. },
  4559. "dist": {
  4560. "type": "zip",
  4561. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/b39c7a5b194f9ed7bd0dd345c751007a41862443",
  4562. "reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443",
  4563. "shasum": ""
  4564. },
  4565. "require": {
  4566. "php": ">=5.5",
  4567. "phpdocumentor/reflection-common": "^1.0"
  4568. },
  4569. "require-dev": {
  4570. "mockery/mockery": "^0.9.4",
  4571. "phpunit/phpunit": "^5.2||^4.8.24"
  4572. },
  4573. "type": "library",
  4574. "extra": {
  4575. "branch-alias": {
  4576. "dev-master": "1.0.x-dev"
  4577. }
  4578. },
  4579. "autoload": {
  4580. "psr-4": {
  4581. "phpDocumentor\\Reflection\\": [
  4582. "src/"
  4583. ]
  4584. }
  4585. },
  4586. "notification-url": "https://packagist.org/downloads/",
  4587. "license": [
  4588. "MIT"
  4589. ],
  4590. "authors": [
  4591. {
  4592. "name": "Mike van Riel",
  4593. "email": "me@mikevanriel.com"
  4594. }
  4595. ],
  4596. "time": "2016-06-10T07:14:17+00:00"
  4597. },
  4598. {
  4599. "name": "phpspec/prophecy",
  4600. "version": "v1.6.1",
  4601. "source": {
  4602. "type": "git",
  4603. "url": "https://github.com/phpspec/prophecy.git",
  4604. "reference": "58a8137754bc24b25740d4281399a4a3596058e0"
  4605. },
  4606. "dist": {
  4607. "type": "zip",
  4608. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/58a8137754bc24b25740d4281399a4a3596058e0",
  4609. "reference": "58a8137754bc24b25740d4281399a4a3596058e0",
  4610. "shasum": ""
  4611. },
  4612. "require": {
  4613. "doctrine/instantiator": "^1.0.2",
  4614. "php": "^5.3|^7.0",
  4615. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2",
  4616. "sebastian/comparator": "^1.1",
  4617. "sebastian/recursion-context": "^1.0"
  4618. },
  4619. "require-dev": {
  4620. "phpspec/phpspec": "^2.0"
  4621. },
  4622. "type": "library",
  4623. "extra": {
  4624. "branch-alias": {
  4625. "dev-master": "1.6.x-dev"
  4626. }
  4627. },
  4628. "autoload": {
  4629. "psr-0": {
  4630. "Prophecy\\": "src/"
  4631. }
  4632. },
  4633. "notification-url": "https://packagist.org/downloads/",
  4634. "license": [
  4635. "MIT"
  4636. ],
  4637. "authors": [
  4638. {
  4639. "name": "Konstantin Kudryashov",
  4640. "email": "ever.zet@gmail.com",
  4641. "homepage": "http://everzet.com"
  4642. },
  4643. {
  4644. "name": "Marcello Duarte",
  4645. "email": "marcello.duarte@gmail.com"
  4646. }
  4647. ],
  4648. "description": "Highly opinionated mocking framework for PHP 5.3+",
  4649. "homepage": "https://github.com/phpspec/prophecy",
  4650. "keywords": [
  4651. "Double",
  4652. "Dummy",
  4653. "fake",
  4654. "mock",
  4655. "spy",
  4656. "stub"
  4657. ],
  4658. "time": "2016-06-07T08:13:47+00:00"
  4659. },
  4660. {
  4661. "name": "phpunit/php-code-coverage",
  4662. "version": "4.0.1",
  4663. "source": {
  4664. "type": "git",
  4665. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4666. "reference": "5f3f7e736d6319d5f1fc402aff8b026da26709a3"
  4667. },
  4668. "dist": {
  4669. "type": "zip",
  4670. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/5f3f7e736d6319d5f1fc402aff8b026da26709a3",
  4671. "reference": "5f3f7e736d6319d5f1fc402aff8b026da26709a3",
  4672. "shasum": ""
  4673. },
  4674. "require": {
  4675. "php": "^5.6 || ^7.0",
  4676. "phpunit/php-file-iterator": "~1.3",
  4677. "phpunit/php-text-template": "~1.2",
  4678. "phpunit/php-token-stream": "^1.4.2",
  4679. "sebastian/code-unit-reverse-lookup": "~1.0",
  4680. "sebastian/environment": "^1.3.2 || ^2.0",
  4681. "sebastian/version": "~1.0|~2.0"
  4682. },
  4683. "require-dev": {
  4684. "ext-xdebug": ">=2.1.4",
  4685. "phpunit/phpunit": "^5.4"
  4686. },
  4687. "suggest": {
  4688. "ext-dom": "*",
  4689. "ext-xdebug": ">=2.4.0",
  4690. "ext-xmlwriter": "*"
  4691. },
  4692. "type": "library",
  4693. "extra": {
  4694. "branch-alias": {
  4695. "dev-master": "4.0.x-dev"
  4696. }
  4697. },
  4698. "autoload": {
  4699. "classmap": [
  4700. "src/"
  4701. ]
  4702. },
  4703. "notification-url": "https://packagist.org/downloads/",
  4704. "license": [
  4705. "BSD-3-Clause"
  4706. ],
  4707. "authors": [
  4708. {
  4709. "name": "Sebastian Bergmann",
  4710. "email": "sb@sebastian-bergmann.de",
  4711. "role": "lead"
  4712. }
  4713. ],
  4714. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4715. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4716. "keywords": [
  4717. "coverage",
  4718. "testing",
  4719. "xunit"
  4720. ],
  4721. "time": "2016-07-26T14:39:29+00:00"
  4722. },
  4723. {
  4724. "name": "phpunit/php-file-iterator",
  4725. "version": "1.4.1",
  4726. "source": {
  4727. "type": "git",
  4728. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4729. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0"
  4730. },
  4731. "dist": {
  4732. "type": "zip",
  4733. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  4734. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  4735. "shasum": ""
  4736. },
  4737. "require": {
  4738. "php": ">=5.3.3"
  4739. },
  4740. "type": "library",
  4741. "extra": {
  4742. "branch-alias": {
  4743. "dev-master": "1.4.x-dev"
  4744. }
  4745. },
  4746. "autoload": {
  4747. "classmap": [
  4748. "src/"
  4749. ]
  4750. },
  4751. "notification-url": "https://packagist.org/downloads/",
  4752. "license": [
  4753. "BSD-3-Clause"
  4754. ],
  4755. "authors": [
  4756. {
  4757. "name": "Sebastian Bergmann",
  4758. "email": "sb@sebastian-bergmann.de",
  4759. "role": "lead"
  4760. }
  4761. ],
  4762. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4763. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4764. "keywords": [
  4765. "filesystem",
  4766. "iterator"
  4767. ],
  4768. "time": "2015-06-21T13:08:43+00:00"
  4769. },
  4770. {
  4771. "name": "phpunit/php-text-template",
  4772. "version": "1.2.1",
  4773. "source": {
  4774. "type": "git",
  4775. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4776. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  4777. },
  4778. "dist": {
  4779. "type": "zip",
  4780. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4781. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4782. "shasum": ""
  4783. },
  4784. "require": {
  4785. "php": ">=5.3.3"
  4786. },
  4787. "type": "library",
  4788. "autoload": {
  4789. "classmap": [
  4790. "src/"
  4791. ]
  4792. },
  4793. "notification-url": "https://packagist.org/downloads/",
  4794. "license": [
  4795. "BSD-3-Clause"
  4796. ],
  4797. "authors": [
  4798. {
  4799. "name": "Sebastian Bergmann",
  4800. "email": "sebastian@phpunit.de",
  4801. "role": "lead"
  4802. }
  4803. ],
  4804. "description": "Simple template engine.",
  4805. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4806. "keywords": [
  4807. "template"
  4808. ],
  4809. "time": "2015-06-21T13:50:34+00:00"
  4810. },
  4811. {
  4812. "name": "phpunit/php-timer",
  4813. "version": "1.0.8",
  4814. "source": {
  4815. "type": "git",
  4816. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4817. "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260"
  4818. },
  4819. "dist": {
  4820. "type": "zip",
  4821. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/38e9124049cf1a164f1e4537caf19c99bf1eb260",
  4822. "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260",
  4823. "shasum": ""
  4824. },
  4825. "require": {
  4826. "php": ">=5.3.3"
  4827. },
  4828. "require-dev": {
  4829. "phpunit/phpunit": "~4|~5"
  4830. },
  4831. "type": "library",
  4832. "autoload": {
  4833. "classmap": [
  4834. "src/"
  4835. ]
  4836. },
  4837. "notification-url": "https://packagist.org/downloads/",
  4838. "license": [
  4839. "BSD-3-Clause"
  4840. ],
  4841. "authors": [
  4842. {
  4843. "name": "Sebastian Bergmann",
  4844. "email": "sb@sebastian-bergmann.de",
  4845. "role": "lead"
  4846. }
  4847. ],
  4848. "description": "Utility class for timing",
  4849. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4850. "keywords": [
  4851. "timer"
  4852. ],
  4853. "time": "2016-05-12T18:03:57+00:00"
  4854. },
  4855. {
  4856. "name": "phpunit/php-token-stream",
  4857. "version": "1.4.8",
  4858. "source": {
  4859. "type": "git",
  4860. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4861. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da"
  4862. },
  4863. "dist": {
  4864. "type": "zip",
  4865. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  4866. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  4867. "shasum": ""
  4868. },
  4869. "require": {
  4870. "ext-tokenizer": "*",
  4871. "php": ">=5.3.3"
  4872. },
  4873. "require-dev": {
  4874. "phpunit/phpunit": "~4.2"
  4875. },
  4876. "type": "library",
  4877. "extra": {
  4878. "branch-alias": {
  4879. "dev-master": "1.4-dev"
  4880. }
  4881. },
  4882. "autoload": {
  4883. "classmap": [
  4884. "src/"
  4885. ]
  4886. },
  4887. "notification-url": "https://packagist.org/downloads/",
  4888. "license": [
  4889. "BSD-3-Clause"
  4890. ],
  4891. "authors": [
  4892. {
  4893. "name": "Sebastian Bergmann",
  4894. "email": "sebastian@phpunit.de"
  4895. }
  4896. ],
  4897. "description": "Wrapper around PHP's tokenizer extension.",
  4898. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  4899. "keywords": [
  4900. "tokenizer"
  4901. ],
  4902. "time": "2015-09-15T10:49:45+00:00"
  4903. },
  4904. {
  4905. "name": "phpunit/phpunit",
  4906. "version": "5.5.4",
  4907. "source": {
  4908. "type": "git",
  4909. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4910. "reference": "3e6e88e56c912133de6e99b87728cca7ed70c5f5"
  4911. },
  4912. "dist": {
  4913. "type": "zip",
  4914. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3e6e88e56c912133de6e99b87728cca7ed70c5f5",
  4915. "reference": "3e6e88e56c912133de6e99b87728cca7ed70c5f5",
  4916. "shasum": ""
  4917. },
  4918. "require": {
  4919. "ext-dom": "*",
  4920. "ext-json": "*",
  4921. "ext-pcre": "*",
  4922. "ext-reflection": "*",
  4923. "ext-spl": "*",
  4924. "myclabs/deep-copy": "~1.3",
  4925. "php": "^5.6 || ^7.0",
  4926. "phpspec/prophecy": "^1.3.1",
  4927. "phpunit/php-code-coverage": "^4.0.1",
  4928. "phpunit/php-file-iterator": "~1.4",
  4929. "phpunit/php-text-template": "~1.2",
  4930. "phpunit/php-timer": "^1.0.6",
  4931. "phpunit/phpunit-mock-objects": "^3.2",
  4932. "sebastian/comparator": "~1.1",
  4933. "sebastian/diff": "~1.2",
  4934. "sebastian/environment": "^1.3 || ^2.0",
  4935. "sebastian/exporter": "~1.2",
  4936. "sebastian/global-state": "~1.0",
  4937. "sebastian/object-enumerator": "~1.0",
  4938. "sebastian/resource-operations": "~1.0",
  4939. "sebastian/version": "~1.0|~2.0",
  4940. "symfony/yaml": "~2.1|~3.0"
  4941. },
  4942. "conflict": {
  4943. "phpdocumentor/reflection-docblock": "3.0.2"
  4944. },
  4945. "suggest": {
  4946. "phpunit/php-invoker": "~1.1"
  4947. },
  4948. "bin": [
  4949. "phpunit"
  4950. ],
  4951. "type": "library",
  4952. "extra": {
  4953. "branch-alias": {
  4954. "dev-master": "5.5.x-dev"
  4955. }
  4956. },
  4957. "autoload": {
  4958. "classmap": [
  4959. "src/"
  4960. ]
  4961. },
  4962. "notification-url": "https://packagist.org/downloads/",
  4963. "license": [
  4964. "BSD-3-Clause"
  4965. ],
  4966. "authors": [
  4967. {
  4968. "name": "Sebastian Bergmann",
  4969. "email": "sebastian@phpunit.de",
  4970. "role": "lead"
  4971. }
  4972. ],
  4973. "description": "The PHP Unit Testing framework.",
  4974. "homepage": "https://phpunit.de/",
  4975. "keywords": [
  4976. "phpunit",
  4977. "testing",
  4978. "xunit"
  4979. ],
  4980. "time": "2016-08-26T07:11:44+00:00"
  4981. },
  4982. {
  4983. "name": "phpunit/phpunit-mock-objects",
  4984. "version": "3.2.7",
  4985. "source": {
  4986. "type": "git",
  4987. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  4988. "reference": "546898a2c0c356ef2891b39dd7d07f5d82c8ed0a"
  4989. },
  4990. "dist": {
  4991. "type": "zip",
  4992. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/546898a2c0c356ef2891b39dd7d07f5d82c8ed0a",
  4993. "reference": "546898a2c0c356ef2891b39dd7d07f5d82c8ed0a",
  4994. "shasum": ""
  4995. },
  4996. "require": {
  4997. "doctrine/instantiator": "^1.0.2",
  4998. "php": "^5.6 || ^7.0",
  4999. "phpunit/php-text-template": "^1.2",
  5000. "sebastian/exporter": "^1.2"
  5001. },
  5002. "conflict": {
  5003. "phpunit/phpunit": "<5.4.0"
  5004. },
  5005. "require-dev": {
  5006. "phpunit/phpunit": "^5.4"
  5007. },
  5008. "suggest": {
  5009. "ext-soap": "*"
  5010. },
  5011. "type": "library",
  5012. "extra": {
  5013. "branch-alias": {
  5014. "dev-master": "3.2.x-dev"
  5015. }
  5016. },
  5017. "autoload": {
  5018. "classmap": [
  5019. "src/"
  5020. ]
  5021. },
  5022. "notification-url": "https://packagist.org/downloads/",
  5023. "license": [
  5024. "BSD-3-Clause"
  5025. ],
  5026. "authors": [
  5027. {
  5028. "name": "Sebastian Bergmann",
  5029. "email": "sb@sebastian-bergmann.de",
  5030. "role": "lead"
  5031. }
  5032. ],
  5033. "description": "Mock Object library for PHPUnit",
  5034. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  5035. "keywords": [
  5036. "mock",
  5037. "xunit"
  5038. ],
  5039. "time": "2016-09-06T16:07:45+00:00"
  5040. },
  5041. {
  5042. "name": "sebastian/code-unit-reverse-lookup",
  5043. "version": "1.0.0",
  5044. "source": {
  5045. "type": "git",
  5046. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5047. "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe"
  5048. },
  5049. "dist": {
  5050. "type": "zip",
  5051. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
  5052. "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
  5053. "shasum": ""
  5054. },
  5055. "require": {
  5056. "php": ">=5.6"
  5057. },
  5058. "require-dev": {
  5059. "phpunit/phpunit": "~5"
  5060. },
  5061. "type": "library",
  5062. "extra": {
  5063. "branch-alias": {
  5064. "dev-master": "1.0.x-dev"
  5065. }
  5066. },
  5067. "autoload": {
  5068. "classmap": [
  5069. "src/"
  5070. ]
  5071. },
  5072. "notification-url": "https://packagist.org/downloads/",
  5073. "license": [
  5074. "BSD-3-Clause"
  5075. ],
  5076. "authors": [
  5077. {
  5078. "name": "Sebastian Bergmann",
  5079. "email": "sebastian@phpunit.de"
  5080. }
  5081. ],
  5082. "description": "Looks up which function or method a line of code belongs to",
  5083. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5084. "time": "2016-02-13T06:45:14+00:00"
  5085. },
  5086. {
  5087. "name": "sebastian/comparator",
  5088. "version": "1.2.0",
  5089. "source": {
  5090. "type": "git",
  5091. "url": "https://github.com/sebastianbergmann/comparator.git",
  5092. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22"
  5093. },
  5094. "dist": {
  5095. "type": "zip",
  5096. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22",
  5097. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22",
  5098. "shasum": ""
  5099. },
  5100. "require": {
  5101. "php": ">=5.3.3",
  5102. "sebastian/diff": "~1.2",
  5103. "sebastian/exporter": "~1.2"
  5104. },
  5105. "require-dev": {
  5106. "phpunit/phpunit": "~4.4"
  5107. },
  5108. "type": "library",
  5109. "extra": {
  5110. "branch-alias": {
  5111. "dev-master": "1.2.x-dev"
  5112. }
  5113. },
  5114. "autoload": {
  5115. "classmap": [
  5116. "src/"
  5117. ]
  5118. },
  5119. "notification-url": "https://packagist.org/downloads/",
  5120. "license": [
  5121. "BSD-3-Clause"
  5122. ],
  5123. "authors": [
  5124. {
  5125. "name": "Jeff Welch",
  5126. "email": "whatthejeff@gmail.com"
  5127. },
  5128. {
  5129. "name": "Volker Dusch",
  5130. "email": "github@wallbash.com"
  5131. },
  5132. {
  5133. "name": "Bernhard Schussek",
  5134. "email": "bschussek@2bepublished.at"
  5135. },
  5136. {
  5137. "name": "Sebastian Bergmann",
  5138. "email": "sebastian@phpunit.de"
  5139. }
  5140. ],
  5141. "description": "Provides the functionality to compare PHP values for equality",
  5142. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  5143. "keywords": [
  5144. "comparator",
  5145. "compare",
  5146. "equality"
  5147. ],
  5148. "time": "2015-07-26T15:48:44+00:00"
  5149. },
  5150. {
  5151. "name": "sebastian/diff",
  5152. "version": "1.4.1",
  5153. "source": {
  5154. "type": "git",
  5155. "url": "https://github.com/sebastianbergmann/diff.git",
  5156. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
  5157. },
  5158. "dist": {
  5159. "type": "zip",
  5160. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",
  5161. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
  5162. "shasum": ""
  5163. },
  5164. "require": {
  5165. "php": ">=5.3.3"
  5166. },
  5167. "require-dev": {
  5168. "phpunit/phpunit": "~4.8"
  5169. },
  5170. "type": "library",
  5171. "extra": {
  5172. "branch-alias": {
  5173. "dev-master": "1.4-dev"
  5174. }
  5175. },
  5176. "autoload": {
  5177. "classmap": [
  5178. "src/"
  5179. ]
  5180. },
  5181. "notification-url": "https://packagist.org/downloads/",
  5182. "license": [
  5183. "BSD-3-Clause"
  5184. ],
  5185. "authors": [
  5186. {
  5187. "name": "Kore Nordmann",
  5188. "email": "mail@kore-nordmann.de"
  5189. },
  5190. {
  5191. "name": "Sebastian Bergmann",
  5192. "email": "sebastian@phpunit.de"
  5193. }
  5194. ],
  5195. "description": "Diff implementation",
  5196. "homepage": "https://github.com/sebastianbergmann/diff",
  5197. "keywords": [
  5198. "diff"
  5199. ],
  5200. "time": "2015-12-08T07:14:41+00:00"
  5201. },
  5202. {
  5203. "name": "sebastian/environment",
  5204. "version": "1.3.8",
  5205. "source": {
  5206. "type": "git",
  5207. "url": "https://github.com/sebastianbergmann/environment.git",
  5208. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  5209. },
  5210. "dist": {
  5211. "type": "zip",
  5212. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  5213. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  5214. "shasum": ""
  5215. },
  5216. "require": {
  5217. "php": "^5.3.3 || ^7.0"
  5218. },
  5219. "require-dev": {
  5220. "phpunit/phpunit": "^4.8 || ^5.0"
  5221. },
  5222. "type": "library",
  5223. "extra": {
  5224. "branch-alias": {
  5225. "dev-master": "1.3.x-dev"
  5226. }
  5227. },
  5228. "autoload": {
  5229. "classmap": [
  5230. "src/"
  5231. ]
  5232. },
  5233. "notification-url": "https://packagist.org/downloads/",
  5234. "license": [
  5235. "BSD-3-Clause"
  5236. ],
  5237. "authors": [
  5238. {
  5239. "name": "Sebastian Bergmann",
  5240. "email": "sebastian@phpunit.de"
  5241. }
  5242. ],
  5243. "description": "Provides functionality to handle HHVM/PHP environments",
  5244. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5245. "keywords": [
  5246. "Xdebug",
  5247. "environment",
  5248. "hhvm"
  5249. ],
  5250. "time": "2016-08-18T05:49:44+00:00"
  5251. },
  5252. {
  5253. "name": "sebastian/exporter",
  5254. "version": "1.2.2",
  5255. "source": {
  5256. "type": "git",
  5257. "url": "https://github.com/sebastianbergmann/exporter.git",
  5258. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  5259. },
  5260. "dist": {
  5261. "type": "zip",
  5262. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  5263. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  5264. "shasum": ""
  5265. },
  5266. "require": {
  5267. "php": ">=5.3.3",
  5268. "sebastian/recursion-context": "~1.0"
  5269. },
  5270. "require-dev": {
  5271. "ext-mbstring": "*",
  5272. "phpunit/phpunit": "~4.4"
  5273. },
  5274. "type": "library",
  5275. "extra": {
  5276. "branch-alias": {
  5277. "dev-master": "1.3.x-dev"
  5278. }
  5279. },
  5280. "autoload": {
  5281. "classmap": [
  5282. "src/"
  5283. ]
  5284. },
  5285. "notification-url": "https://packagist.org/downloads/",
  5286. "license": [
  5287. "BSD-3-Clause"
  5288. ],
  5289. "authors": [
  5290. {
  5291. "name": "Jeff Welch",
  5292. "email": "whatthejeff@gmail.com"
  5293. },
  5294. {
  5295. "name": "Volker Dusch",
  5296. "email": "github@wallbash.com"
  5297. },
  5298. {
  5299. "name": "Bernhard Schussek",
  5300. "email": "bschussek@2bepublished.at"
  5301. },
  5302. {
  5303. "name": "Sebastian Bergmann",
  5304. "email": "sebastian@phpunit.de"
  5305. },
  5306. {
  5307. "name": "Adam Harvey",
  5308. "email": "aharvey@php.net"
  5309. }
  5310. ],
  5311. "description": "Provides the functionality to export PHP variables for visualization",
  5312. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  5313. "keywords": [
  5314. "export",
  5315. "exporter"
  5316. ],
  5317. "time": "2016-06-17T09:04:28+00:00"
  5318. },
  5319. {
  5320. "name": "sebastian/global-state",
  5321. "version": "1.1.1",
  5322. "source": {
  5323. "type": "git",
  5324. "url": "https://github.com/sebastianbergmann/global-state.git",
  5325. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  5326. },
  5327. "dist": {
  5328. "type": "zip",
  5329. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  5330. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  5331. "shasum": ""
  5332. },
  5333. "require": {
  5334. "php": ">=5.3.3"
  5335. },
  5336. "require-dev": {
  5337. "phpunit/phpunit": "~4.2"
  5338. },
  5339. "suggest": {
  5340. "ext-uopz": "*"
  5341. },
  5342. "type": "library",
  5343. "extra": {
  5344. "branch-alias": {
  5345. "dev-master": "1.0-dev"
  5346. }
  5347. },
  5348. "autoload": {
  5349. "classmap": [
  5350. "src/"
  5351. ]
  5352. },
  5353. "notification-url": "https://packagist.org/downloads/",
  5354. "license": [
  5355. "BSD-3-Clause"
  5356. ],
  5357. "authors": [
  5358. {
  5359. "name": "Sebastian Bergmann",
  5360. "email": "sebastian@phpunit.de"
  5361. }
  5362. ],
  5363. "description": "Snapshotting of global state",
  5364. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5365. "keywords": [
  5366. "global state"
  5367. ],
  5368. "time": "2015-10-12T03:26:01+00:00"
  5369. },
  5370. {
  5371. "name": "sebastian/object-enumerator",
  5372. "version": "1.0.0",
  5373. "source": {
  5374. "type": "git",
  5375. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5376. "reference": "d4ca2fb70344987502567bc50081c03e6192fb26"
  5377. },
  5378. "dist": {
  5379. "type": "zip",
  5380. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/d4ca2fb70344987502567bc50081c03e6192fb26",
  5381. "reference": "d4ca2fb70344987502567bc50081c03e6192fb26",
  5382. "shasum": ""
  5383. },
  5384. "require": {
  5385. "php": ">=5.6",
  5386. "sebastian/recursion-context": "~1.0"
  5387. },
  5388. "require-dev": {
  5389. "phpunit/phpunit": "~5"
  5390. },
  5391. "type": "library",
  5392. "extra": {
  5393. "branch-alias": {
  5394. "dev-master": "1.0.x-dev"
  5395. }
  5396. },
  5397. "autoload": {
  5398. "classmap": [
  5399. "src/"
  5400. ]
  5401. },
  5402. "notification-url": "https://packagist.org/downloads/",
  5403. "license": [
  5404. "BSD-3-Clause"
  5405. ],
  5406. "authors": [
  5407. {
  5408. "name": "Sebastian Bergmann",
  5409. "email": "sebastian@phpunit.de"
  5410. }
  5411. ],
  5412. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5413. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5414. "time": "2016-01-28T13:25:10+00:00"
  5415. },
  5416. {
  5417. "name": "sebastian/recursion-context",
  5418. "version": "1.0.2",
  5419. "source": {
  5420. "type": "git",
  5421. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5422. "reference": "913401df809e99e4f47b27cdd781f4a258d58791"
  5423. },
  5424. "dist": {
  5425. "type": "zip",
  5426. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/913401df809e99e4f47b27cdd781f4a258d58791",
  5427. "reference": "913401df809e99e4f47b27cdd781f4a258d58791",
  5428. "shasum": ""
  5429. },
  5430. "require": {
  5431. "php": ">=5.3.3"
  5432. },
  5433. "require-dev": {
  5434. "phpunit/phpunit": "~4.4"
  5435. },
  5436. "type": "library",
  5437. "extra": {
  5438. "branch-alias": {
  5439. "dev-master": "1.0.x-dev"
  5440. }
  5441. },
  5442. "autoload": {
  5443. "classmap": [
  5444. "src/"
  5445. ]
  5446. },
  5447. "notification-url": "https://packagist.org/downloads/",
  5448. "license": [
  5449. "BSD-3-Clause"
  5450. ],
  5451. "authors": [
  5452. {
  5453. "name": "Jeff Welch",
  5454. "email": "whatthejeff@gmail.com"
  5455. },
  5456. {
  5457. "name": "Sebastian Bergmann",
  5458. "email": "sebastian@phpunit.de"
  5459. },
  5460. {
  5461. "name": "Adam Harvey",
  5462. "email": "aharvey@php.net"
  5463. }
  5464. ],
  5465. "description": "Provides functionality to recursively process PHP variables",
  5466. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5467. "time": "2015-11-11T19:50:13+00:00"
  5468. },
  5469. {
  5470. "name": "sebastian/resource-operations",
  5471. "version": "1.0.0",
  5472. "source": {
  5473. "type": "git",
  5474. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5475. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  5476. },
  5477. "dist": {
  5478. "type": "zip",
  5479. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  5480. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  5481. "shasum": ""
  5482. },
  5483. "require": {
  5484. "php": ">=5.6.0"
  5485. },
  5486. "type": "library",
  5487. "extra": {
  5488. "branch-alias": {
  5489. "dev-master": "1.0.x-dev"
  5490. }
  5491. },
  5492. "autoload": {
  5493. "classmap": [
  5494. "src/"
  5495. ]
  5496. },
  5497. "notification-url": "https://packagist.org/downloads/",
  5498. "license": [
  5499. "BSD-3-Clause"
  5500. ],
  5501. "authors": [
  5502. {
  5503. "name": "Sebastian Bergmann",
  5504. "email": "sebastian@phpunit.de"
  5505. }
  5506. ],
  5507. "description": "Provides a list of PHP built-in functions that operate on resources",
  5508. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5509. "time": "2015-07-28T20:34:47+00:00"
  5510. },
  5511. {
  5512. "name": "sebastian/version",
  5513. "version": "2.0.0",
  5514. "source": {
  5515. "type": "git",
  5516. "url": "https://github.com/sebastianbergmann/version.git",
  5517. "reference": "c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5"
  5518. },
  5519. "dist": {
  5520. "type": "zip",
  5521. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5",
  5522. "reference": "c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5",
  5523. "shasum": ""
  5524. },
  5525. "require": {
  5526. "php": ">=5.6"
  5527. },
  5528. "type": "library",
  5529. "extra": {
  5530. "branch-alias": {
  5531. "dev-master": "2.0.x-dev"
  5532. }
  5533. },
  5534. "autoload": {
  5535. "classmap": [
  5536. "src/"
  5537. ]
  5538. },
  5539. "notification-url": "https://packagist.org/downloads/",
  5540. "license": [
  5541. "BSD-3-Clause"
  5542. ],
  5543. "authors": [
  5544. {
  5545. "name": "Sebastian Bergmann",
  5546. "email": "sebastian@phpunit.de",
  5547. "role": "lead"
  5548. }
  5549. ],
  5550. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5551. "homepage": "https://github.com/sebastianbergmann/version",
  5552. "time": "2016-02-04T12:56:52+00:00"
  5553. },
  5554. {
  5555. "name": "symfony/phpunit-bridge",
  5556. "version": "v3.1.4",
  5557. "source": {
  5558. "type": "git",
  5559. "url": "https://github.com/symfony/phpunit-bridge.git",
  5560. "reference": "1f4e2059cf4ecae1053b9c3027b3fc548fd077b9"
  5561. },
  5562. "dist": {
  5563. "type": "zip",
  5564. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/1f4e2059cf4ecae1053b9c3027b3fc548fd077b9",
  5565. "reference": "1f4e2059cf4ecae1053b9c3027b3fc548fd077b9",
  5566. "shasum": ""
  5567. },
  5568. "require": {
  5569. "php": ">=5.3.3"
  5570. },
  5571. "suggest": {
  5572. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  5573. },
  5574. "type": "symfony-bridge",
  5575. "extra": {
  5576. "branch-alias": {
  5577. "dev-master": "3.1-dev"
  5578. }
  5579. },
  5580. "autoload": {
  5581. "files": [
  5582. "bootstrap.php"
  5583. ],
  5584. "psr-4": {
  5585. "Symfony\\Bridge\\PhpUnit\\": ""
  5586. },
  5587. "exclude-from-classmap": [
  5588. "/Tests/"
  5589. ]
  5590. },
  5591. "notification-url": "https://packagist.org/downloads/",
  5592. "license": [
  5593. "MIT"
  5594. ],
  5595. "authors": [
  5596. {
  5597. "name": "Nicolas Grekas",
  5598. "email": "p@tchwork.com"
  5599. },
  5600. {
  5601. "name": "Symfony Community",
  5602. "homepage": "https://symfony.com/contributors"
  5603. }
  5604. ],
  5605. "description": "Symfony PHPUnit Bridge",
  5606. "homepage": "https://symfony.com",
  5607. "time": "2016-08-19T06:48:39+00:00"
  5608. },
  5609. {
  5610. "name": "webmozart/assert",
  5611. "version": "1.1.0",
  5612. "source": {
  5613. "type": "git",
  5614. "url": "https://github.com/webmozart/assert.git",
  5615. "reference": "bb2d123231c095735130cc8f6d31385a44c7b308"
  5616. },
  5617. "dist": {
  5618. "type": "zip",
  5619. "url": "https://api.github.com/repos/webmozart/assert/zipball/bb2d123231c095735130cc8f6d31385a44c7b308",
  5620. "reference": "bb2d123231c095735130cc8f6d31385a44c7b308",
  5621. "shasum": ""
  5622. },
  5623. "require": {
  5624. "php": "^5.3.3|^7.0"
  5625. },
  5626. "require-dev": {
  5627. "phpunit/phpunit": "^4.6",
  5628. "sebastian/version": "^1.0.1"
  5629. },
  5630. "type": "library",
  5631. "extra": {
  5632. "branch-alias": {
  5633. "dev-master": "1.2-dev"
  5634. }
  5635. },
  5636. "autoload": {
  5637. "psr-4": {
  5638. "Webmozart\\Assert\\": "src/"
  5639. }
  5640. },
  5641. "notification-url": "https://packagist.org/downloads/",
  5642. "license": [
  5643. "MIT"
  5644. ],
  5645. "authors": [
  5646. {
  5647. "name": "Bernhard Schussek",
  5648. "email": "bschussek@gmail.com"
  5649. }
  5650. ],
  5651. "description": "Assertions to validate method input/output with nice error messages.",
  5652. "keywords": [
  5653. "assert",
  5654. "check",
  5655. "validate"
  5656. ],
  5657. "time": "2016-08-09T15:02:57+00:00"
  5658. }
  5659. ],
  5660. "aliases": [],
  5661. "minimum-stability": "stable",
  5662. "stability-flags": {
  5663. "composer/composer": 20,
  5664. "friendsofsymfony/user-bundle": 20
  5665. },
  5666. "prefer-stable": false,
  5667. "prefer-lowest": false,
  5668. "platform": {
  5669. "php": ">=7.0"
  5670. },
  5671. "platform-dev": []
  5672. }