composer.lock 214 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126
  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": "6dff2f3964ad9fde78ee91c38ccf1d70",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/5ffdc93de0af2770d396bf433d8b2667c77277ea",
  20. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "ext-mbstring": "*",
  26. "php": ">=5.5",
  27. "symfony/filesystem": "^2.0.5|^3.0",
  28. "symfony/process": "^2.1|^3.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0|^5.0",
  35. "symfony/finder": "^2.0.5|^3.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "time": "2016-11-03T16:10:31+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.2.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  84. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "time": "2017-12-20T14:37:45+00:00"
  124. },
  125. {
  126. "name": "chi-teck/drupal-code-generator",
  127. "version": "1.23.2",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "b157b38c8c148c67d5b80c7c349b1a446115ea0e"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/b157b38c8c148c67d5b80c7c349b1a446115ea0e",
  136. "reference": "b157b38c8c148c67d5b80c7c349b1a446115ea0e",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": ">=5.5.9",
  141. "symfony/console": "~2.7|^3",
  142. "symfony/filesystem": "~2.7|^3",
  143. "twig/twig": "^1.23.1"
  144. },
  145. "bin": [
  146. "bin/dcg"
  147. ],
  148. "type": "library",
  149. "autoload": {
  150. "files": [
  151. "src/bootstrap.php"
  152. ],
  153. "psr-4": {
  154. "DrupalCodeGenerator\\": "src"
  155. }
  156. },
  157. "notification-url": "https://packagist.org/downloads/",
  158. "license": [
  159. "GPL-2.0-or-later"
  160. ],
  161. "description": "Drupal code generator",
  162. "time": "2018-03-03T04:17:26+00:00"
  163. },
  164. {
  165. "name": "composer/installers",
  166. "version": "v1.5.0",
  167. "source": {
  168. "type": "git",
  169. "url": "https://github.com/composer/installers.git",
  170. "reference": "049797d727261bf27f2690430d935067710049c2"
  171. },
  172. "dist": {
  173. "type": "zip",
  174. "url": "https://api.github.com/repos/composer/installers/zipball/049797d727261bf27f2690430d935067710049c2",
  175. "reference": "049797d727261bf27f2690430d935067710049c2",
  176. "shasum": ""
  177. },
  178. "require": {
  179. "composer-plugin-api": "^1.0"
  180. },
  181. "replace": {
  182. "roundcube/plugin-installer": "*",
  183. "shama/baton": "*"
  184. },
  185. "require-dev": {
  186. "composer/composer": "1.0.*@dev",
  187. "phpunit/phpunit": "^4.8.36"
  188. },
  189. "type": "composer-plugin",
  190. "extra": {
  191. "class": "Composer\\Installers\\Plugin",
  192. "branch-alias": {
  193. "dev-master": "1.0-dev"
  194. }
  195. },
  196. "autoload": {
  197. "psr-4": {
  198. "Composer\\Installers\\": "src/Composer/Installers"
  199. }
  200. },
  201. "notification-url": "https://packagist.org/downloads/",
  202. "license": [
  203. "MIT"
  204. ],
  205. "authors": [
  206. {
  207. "name": "Kyle Robinson Young",
  208. "email": "kyle@dontkry.com",
  209. "homepage": "https://github.com/shama"
  210. }
  211. ],
  212. "description": "A multi-framework Composer library installer",
  213. "homepage": "https://composer.github.io/installers/",
  214. "keywords": [
  215. "Craft",
  216. "Dolibarr",
  217. "Eliasis",
  218. "Hurad",
  219. "ImageCMS",
  220. "Kanboard",
  221. "Lan Management System",
  222. "MODX Evo",
  223. "Mautic",
  224. "Maya",
  225. "OXID",
  226. "Plentymarkets",
  227. "Porto",
  228. "RadPHP",
  229. "SMF",
  230. "Thelia",
  231. "WolfCMS",
  232. "agl",
  233. "aimeos",
  234. "annotatecms",
  235. "attogram",
  236. "bitrix",
  237. "cakephp",
  238. "chef",
  239. "cockpit",
  240. "codeigniter",
  241. "concrete5",
  242. "croogo",
  243. "dokuwiki",
  244. "drupal",
  245. "eZ Platform",
  246. "elgg",
  247. "expressionengine",
  248. "fuelphp",
  249. "grav",
  250. "installer",
  251. "itop",
  252. "joomla",
  253. "kohana",
  254. "laravel",
  255. "lavalite",
  256. "lithium",
  257. "magento",
  258. "majima",
  259. "mako",
  260. "mediawiki",
  261. "modulework",
  262. "modx",
  263. "moodle",
  264. "osclass",
  265. "phpbb",
  266. "piwik",
  267. "ppi",
  268. "puppet",
  269. "pxcms",
  270. "reindex",
  271. "roundcube",
  272. "shopware",
  273. "silverstripe",
  274. "sydes",
  275. "symfony",
  276. "typo3",
  277. "wordpress",
  278. "yawik",
  279. "zend",
  280. "zikula"
  281. ],
  282. "time": "2017-12-29T09:13:20+00:00"
  283. },
  284. {
  285. "name": "composer/semver",
  286. "version": "1.4.2",
  287. "source": {
  288. "type": "git",
  289. "url": "https://github.com/composer/semver.git",
  290. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  291. },
  292. "dist": {
  293. "type": "zip",
  294. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  295. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  296. "shasum": ""
  297. },
  298. "require": {
  299. "php": "^5.3.2 || ^7.0"
  300. },
  301. "require-dev": {
  302. "phpunit/phpunit": "^4.5 || ^5.0.5",
  303. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  304. },
  305. "type": "library",
  306. "extra": {
  307. "branch-alias": {
  308. "dev-master": "1.x-dev"
  309. }
  310. },
  311. "autoload": {
  312. "psr-4": {
  313. "Composer\\Semver\\": "src"
  314. }
  315. },
  316. "notification-url": "https://packagist.org/downloads/",
  317. "license": [
  318. "MIT"
  319. ],
  320. "authors": [
  321. {
  322. "name": "Nils Adermann",
  323. "email": "naderman@naderman.de",
  324. "homepage": "http://www.naderman.de"
  325. },
  326. {
  327. "name": "Jordi Boggiano",
  328. "email": "j.boggiano@seld.be",
  329. "homepage": "http://seld.be"
  330. },
  331. {
  332. "name": "Rob Bast",
  333. "email": "rob.bast@gmail.com",
  334. "homepage": "http://robbast.nl"
  335. }
  336. ],
  337. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  338. "keywords": [
  339. "semantic",
  340. "semver",
  341. "validation",
  342. "versioning"
  343. ],
  344. "time": "2016-08-30T16:08:34+00:00"
  345. },
  346. {
  347. "name": "consolidation/annotated-command",
  348. "version": "2.8.3",
  349. "source": {
  350. "type": "git",
  351. "url": "https://github.com/consolidation/annotated-command.git",
  352. "reference": "8f8f5da2ca06fbd3a85f7d551c49f844b7c59437"
  353. },
  354. "dist": {
  355. "type": "zip",
  356. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/8f8f5da2ca06fbd3a85f7d551c49f844b7c59437",
  357. "reference": "8f8f5da2ca06fbd3a85f7d551c49f844b7c59437",
  358. "shasum": ""
  359. },
  360. "require": {
  361. "consolidation/output-formatters": "^3.1.12",
  362. "php": ">=5.4.0",
  363. "psr/log": "^1",
  364. "symfony/console": "^2.8|^3|^4",
  365. "symfony/event-dispatcher": "^2.5|^3|^4",
  366. "symfony/finder": "^2.5|^3|^4"
  367. },
  368. "require-dev": {
  369. "greg-1-anderson/composer-test-scenarios": "^1",
  370. "phpunit/phpunit": "^4.8",
  371. "satooshi/php-coveralls": "^1.0.2 | dev-master",
  372. "squizlabs/php_codesniffer": "^2.7"
  373. },
  374. "type": "library",
  375. "extra": {
  376. "branch-alias": {
  377. "dev-master": "2.x-dev"
  378. }
  379. },
  380. "autoload": {
  381. "psr-4": {
  382. "Consolidation\\AnnotatedCommand\\": "src"
  383. }
  384. },
  385. "notification-url": "https://packagist.org/downloads/",
  386. "license": [
  387. "MIT"
  388. ],
  389. "authors": [
  390. {
  391. "name": "Greg Anderson",
  392. "email": "greg.1.anderson@greenknowe.org"
  393. }
  394. ],
  395. "description": "Initialize Symfony Console commands from annotated command class methods.",
  396. "time": "2018-02-23T16:32:04+00:00"
  397. },
  398. {
  399. "name": "consolidation/config",
  400. "version": "1.0.9",
  401. "source": {
  402. "type": "git",
  403. "url": "https://github.com/consolidation/config.git",
  404. "reference": "34ca8d7c1ee60a7b591b10617114cf1210a2e92c"
  405. },
  406. "dist": {
  407. "type": "zip",
  408. "url": "https://api.github.com/repos/consolidation/config/zipball/34ca8d7c1ee60a7b591b10617114cf1210a2e92c",
  409. "reference": "34ca8d7c1ee60a7b591b10617114cf1210a2e92c",
  410. "shasum": ""
  411. },
  412. "require": {
  413. "dflydev/dot-access-data": "^1.1.0",
  414. "grasmash/expander": "^1",
  415. "php": ">=5.4.0"
  416. },
  417. "require-dev": {
  418. "greg-1-anderson/composer-test-scenarios": "^1",
  419. "phpunit/phpunit": "^4",
  420. "satooshi/php-coveralls": "^1.0",
  421. "squizlabs/php_codesniffer": "2.*",
  422. "symfony/console": "^2.5|^3|^4",
  423. "symfony/yaml": "^2.8.11|^3|^4"
  424. },
  425. "suggest": {
  426. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  427. },
  428. "type": "library",
  429. "extra": {
  430. "branch-alias": {
  431. "dev-master": "1.x-dev"
  432. }
  433. },
  434. "autoload": {
  435. "psr-4": {
  436. "Consolidation\\Config\\": "src"
  437. }
  438. },
  439. "notification-url": "https://packagist.org/downloads/",
  440. "license": [
  441. "MIT"
  442. ],
  443. "authors": [
  444. {
  445. "name": "Greg Anderson",
  446. "email": "greg.1.anderson@greenknowe.org"
  447. }
  448. ],
  449. "description": "Provide configuration services for a commandline tool.",
  450. "time": "2017-12-22T17:28:19+00:00"
  451. },
  452. {
  453. "name": "consolidation/log",
  454. "version": "1.0.5",
  455. "source": {
  456. "type": "git",
  457. "url": "https://github.com/consolidation/log.git",
  458. "reference": "dbc7c535f319a4a2d5a5077738f8eb7c10df8821"
  459. },
  460. "dist": {
  461. "type": "zip",
  462. "url": "https://api.github.com/repos/consolidation/log/zipball/dbc7c535f319a4a2d5a5077738f8eb7c10df8821",
  463. "reference": "dbc7c535f319a4a2d5a5077738f8eb7c10df8821",
  464. "shasum": ""
  465. },
  466. "require": {
  467. "php": ">=5.5.0",
  468. "psr/log": "~1.0",
  469. "symfony/console": "^2.8|^3|^4"
  470. },
  471. "require-dev": {
  472. "phpunit/phpunit": "4.*",
  473. "satooshi/php-coveralls": "dev-master",
  474. "squizlabs/php_codesniffer": "2.*"
  475. },
  476. "type": "library",
  477. "extra": {
  478. "branch-alias": {
  479. "dev-master": "1.x-dev"
  480. }
  481. },
  482. "autoload": {
  483. "psr-4": {
  484. "Consolidation\\Log\\": "src"
  485. }
  486. },
  487. "notification-url": "https://packagist.org/downloads/",
  488. "license": [
  489. "MIT"
  490. ],
  491. "authors": [
  492. {
  493. "name": "Greg Anderson",
  494. "email": "greg.1.anderson@greenknowe.org"
  495. }
  496. ],
  497. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  498. "time": "2017-11-29T01:44:16+00:00"
  499. },
  500. {
  501. "name": "consolidation/output-formatters",
  502. "version": "3.1.13",
  503. "source": {
  504. "type": "git",
  505. "url": "https://github.com/consolidation/output-formatters.git",
  506. "reference": "3188461e965b32148c8fb85261833b2b72d34b8c"
  507. },
  508. "dist": {
  509. "type": "zip",
  510. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/3188461e965b32148c8fb85261833b2b72d34b8c",
  511. "reference": "3188461e965b32148c8fb85261833b2b72d34b8c",
  512. "shasum": ""
  513. },
  514. "require": {
  515. "php": ">=5.4.0",
  516. "symfony/console": "^2.8|^3|^4",
  517. "symfony/finder": "^2.5|^3|^4"
  518. },
  519. "require-dev": {
  520. "phpunit/phpunit": "^4.8",
  521. "satooshi/php-coveralls": "^1.0.2 | dev-master",
  522. "squizlabs/php_codesniffer": "^2.7",
  523. "victorjonsson/markdowndocs": "^1.3"
  524. },
  525. "type": "library",
  526. "extra": {
  527. "branch-alias": {
  528. "dev-master": "3.x-dev"
  529. }
  530. },
  531. "autoload": {
  532. "psr-4": {
  533. "Consolidation\\OutputFormatters\\": "src"
  534. }
  535. },
  536. "notification-url": "https://packagist.org/downloads/",
  537. "license": [
  538. "MIT"
  539. ],
  540. "authors": [
  541. {
  542. "name": "Greg Anderson",
  543. "email": "greg.1.anderson@greenknowe.org"
  544. }
  545. ],
  546. "description": "Format text by applying transformations provided by plug-in formatters.",
  547. "time": "2017-11-29T15:25:38+00:00"
  548. },
  549. {
  550. "name": "consolidation/robo",
  551. "version": "1.2.2",
  552. "source": {
  553. "type": "git",
  554. "url": "https://github.com/consolidation/Robo.git",
  555. "reference": "9ef2724f72feb017517a755564516dbde99e15e4"
  556. },
  557. "dist": {
  558. "type": "zip",
  559. "url": "https://api.github.com/repos/consolidation/Robo/zipball/9ef2724f72feb017517a755564516dbde99e15e4",
  560. "reference": "9ef2724f72feb017517a755564516dbde99e15e4",
  561. "shasum": ""
  562. },
  563. "require": {
  564. "consolidation/annotated-command": "^2.8.2",
  565. "consolidation/config": "^1.0.1",
  566. "consolidation/log": "~1",
  567. "consolidation/output-formatters": "^3.1.13",
  568. "grasmash/yaml-expander": "^1.3",
  569. "league/container": "^2.2",
  570. "php": ">=5.5.0",
  571. "symfony/console": "^2.8|^3|^4",
  572. "symfony/event-dispatcher": "^2.5|^3|^4",
  573. "symfony/filesystem": "^2.5|^3|^4",
  574. "symfony/finder": "^2.5|^3|^4",
  575. "symfony/process": "^2.5|^3|^4"
  576. },
  577. "replace": {
  578. "codegyre/robo": "< 1.0"
  579. },
  580. "require-dev": {
  581. "codeception/aspect-mock": "^1|^2.1.1",
  582. "codeception/base": "^2.3.7",
  583. "codeception/verify": "^0.3.2",
  584. "goaop/framework": "~2.1.2",
  585. "greg-1-anderson/composer-test-scenarios": "^1",
  586. "natxet/cssmin": "3.0.4",
  587. "patchwork/jsqueeze": "~2",
  588. "pear/archive_tar": "^1.4.2",
  589. "phpunit/php-code-coverage": "~2|~4",
  590. "satooshi/php-coveralls": "^2",
  591. "squizlabs/php_codesniffer": "^2.8"
  592. },
  593. "suggest": {
  594. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  595. "natxet/CssMin": "For minifying CSS files in taskMinify",
  596. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  597. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  598. },
  599. "bin": [
  600. "robo"
  601. ],
  602. "type": "library",
  603. "extra": {
  604. "branch-alias": {
  605. "dev-master": "1.x-dev",
  606. "dev-state": "1.x-dev"
  607. }
  608. },
  609. "autoload": {
  610. "psr-4": {
  611. "Robo\\": "src"
  612. }
  613. },
  614. "notification-url": "https://packagist.org/downloads/",
  615. "license": [
  616. "MIT"
  617. ],
  618. "authors": [
  619. {
  620. "name": "Davert",
  621. "email": "davert.php@resend.cc"
  622. }
  623. ],
  624. "description": "Modern task runner",
  625. "time": "2018-02-28T01:03:54+00:00"
  626. },
  627. {
  628. "name": "container-interop/container-interop",
  629. "version": "1.2.0",
  630. "source": {
  631. "type": "git",
  632. "url": "https://github.com/container-interop/container-interop.git",
  633. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  634. },
  635. "dist": {
  636. "type": "zip",
  637. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  638. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  639. "shasum": ""
  640. },
  641. "require": {
  642. "psr/container": "^1.0"
  643. },
  644. "type": "library",
  645. "autoload": {
  646. "psr-4": {
  647. "Interop\\Container\\": "src/Interop/Container/"
  648. }
  649. },
  650. "notification-url": "https://packagist.org/downloads/",
  651. "license": [
  652. "MIT"
  653. ],
  654. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  655. "homepage": "https://github.com/container-interop/container-interop",
  656. "time": "2017-02-14T19:40:03+00:00"
  657. },
  658. {
  659. "name": "dflydev/dot-access-configuration",
  660. "version": "v1.0.2",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  664. "reference": "ae6e7138b1d9063d343322cca63994ee1ac5161d"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/ae6e7138b1d9063d343322cca63994ee1ac5161d",
  669. "reference": "ae6e7138b1d9063d343322cca63994ee1ac5161d",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "dflydev/dot-access-data": "1.*",
  674. "dflydev/placeholder-resolver": "1.*",
  675. "php": ">=5.3.2"
  676. },
  677. "require-dev": {
  678. "symfony/yaml": "~2.1"
  679. },
  680. "suggest": {
  681. "symfony/yaml": "Required for using the YAML Configuration Builders"
  682. },
  683. "type": "library",
  684. "extra": {
  685. "branch-alias": {
  686. "dev-master": "1.0-dev"
  687. }
  688. },
  689. "autoload": {
  690. "psr-0": {
  691. "Dflydev\\DotAccessConfiguration": "src"
  692. }
  693. },
  694. "notification-url": "https://packagist.org/downloads/",
  695. "license": [
  696. "MIT"
  697. ],
  698. "authors": [
  699. {
  700. "name": "Dragonfly Development Inc.",
  701. "email": "info@dflydev.com",
  702. "homepage": "http://dflydev.com"
  703. },
  704. {
  705. "name": "Beau Simensen",
  706. "email": "beau@dflydev.com",
  707. "homepage": "http://beausimensen.com"
  708. }
  709. ],
  710. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  711. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  712. "keywords": [
  713. "config",
  714. "configuration"
  715. ],
  716. "time": "2016-12-12T17:43:40+00:00"
  717. },
  718. {
  719. "name": "dflydev/dot-access-data",
  720. "version": "v1.1.0",
  721. "source": {
  722. "type": "git",
  723. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  724. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  725. },
  726. "dist": {
  727. "type": "zip",
  728. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  729. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  730. "shasum": ""
  731. },
  732. "require": {
  733. "php": ">=5.3.2"
  734. },
  735. "type": "library",
  736. "extra": {
  737. "branch-alias": {
  738. "dev-master": "1.0-dev"
  739. }
  740. },
  741. "autoload": {
  742. "psr-0": {
  743. "Dflydev\\DotAccessData": "src"
  744. }
  745. },
  746. "notification-url": "https://packagist.org/downloads/",
  747. "license": [
  748. "MIT"
  749. ],
  750. "authors": [
  751. {
  752. "name": "Dragonfly Development Inc.",
  753. "email": "info@dflydev.com",
  754. "homepage": "http://dflydev.com"
  755. },
  756. {
  757. "name": "Beau Simensen",
  758. "email": "beau@dflydev.com",
  759. "homepage": "http://beausimensen.com"
  760. },
  761. {
  762. "name": "Carlos Frutos",
  763. "email": "carlos@kiwing.it",
  764. "homepage": "https://github.com/cfrutos"
  765. }
  766. ],
  767. "description": "Given a deep data structure, access data by dot notation.",
  768. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  769. "keywords": [
  770. "access",
  771. "data",
  772. "dot",
  773. "notation"
  774. ],
  775. "time": "2017-01-20T21:14:22+00:00"
  776. },
  777. {
  778. "name": "dflydev/placeholder-resolver",
  779. "version": "v1.0.2",
  780. "source": {
  781. "type": "git",
  782. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  783. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  784. },
  785. "dist": {
  786. "type": "zip",
  787. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  788. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  789. "shasum": ""
  790. },
  791. "require": {
  792. "php": ">=5.3.2"
  793. },
  794. "type": "library",
  795. "extra": {
  796. "branch-alias": {
  797. "dev-master": "1.0-dev"
  798. }
  799. },
  800. "autoload": {
  801. "psr-0": {
  802. "Dflydev\\PlaceholderResolver": "src"
  803. }
  804. },
  805. "notification-url": "https://packagist.org/downloads/",
  806. "license": [
  807. "MIT"
  808. ],
  809. "authors": [
  810. {
  811. "name": "Dragonfly Development Inc.",
  812. "email": "info@dflydev.com",
  813. "homepage": "http://dflydev.com"
  814. },
  815. {
  816. "name": "Beau Simensen",
  817. "email": "beau@dflydev.com",
  818. "homepage": "http://beausimensen.com"
  819. }
  820. ],
  821. "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  822. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  823. "keywords": [
  824. "placeholder",
  825. "resolver"
  826. ],
  827. "time": "2012-10-28T21:08:28+00:00"
  828. },
  829. {
  830. "name": "dnoegel/php-xdg-base-dir",
  831. "version": "0.1",
  832. "source": {
  833. "type": "git",
  834. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  835. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  836. },
  837. "dist": {
  838. "type": "zip",
  839. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  840. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  841. "shasum": ""
  842. },
  843. "require": {
  844. "php": ">=5.3.2"
  845. },
  846. "require-dev": {
  847. "phpunit/phpunit": "@stable"
  848. },
  849. "type": "project",
  850. "autoload": {
  851. "psr-4": {
  852. "XdgBaseDir\\": "src/"
  853. }
  854. },
  855. "notification-url": "https://packagist.org/downloads/",
  856. "license": [
  857. "MIT"
  858. ],
  859. "description": "implementation of xdg base directory specification for php",
  860. "time": "2014-10-24T07:27:01+00:00"
  861. },
  862. {
  863. "name": "doctrine/annotations",
  864. "version": "v1.4.0",
  865. "source": {
  866. "type": "git",
  867. "url": "https://github.com/doctrine/annotations.git",
  868. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  869. },
  870. "dist": {
  871. "type": "zip",
  872. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  873. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  874. "shasum": ""
  875. },
  876. "require": {
  877. "doctrine/lexer": "1.*",
  878. "php": "^5.6 || ^7.0"
  879. },
  880. "require-dev": {
  881. "doctrine/cache": "1.*",
  882. "phpunit/phpunit": "^5.7"
  883. },
  884. "type": "library",
  885. "extra": {
  886. "branch-alias": {
  887. "dev-master": "1.4.x-dev"
  888. }
  889. },
  890. "autoload": {
  891. "psr-4": {
  892. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  893. }
  894. },
  895. "notification-url": "https://packagist.org/downloads/",
  896. "license": [
  897. "MIT"
  898. ],
  899. "authors": [
  900. {
  901. "name": "Roman Borschel",
  902. "email": "roman@code-factory.org"
  903. },
  904. {
  905. "name": "Benjamin Eberlei",
  906. "email": "kontakt@beberlei.de"
  907. },
  908. {
  909. "name": "Guilherme Blanco",
  910. "email": "guilhermeblanco@gmail.com"
  911. },
  912. {
  913. "name": "Jonathan Wage",
  914. "email": "jonwage@gmail.com"
  915. },
  916. {
  917. "name": "Johannes Schmitt",
  918. "email": "schmittjoh@gmail.com"
  919. }
  920. ],
  921. "description": "Docblock Annotations Parser",
  922. "homepage": "http://www.doctrine-project.org",
  923. "keywords": [
  924. "annotations",
  925. "docblock",
  926. "parser"
  927. ],
  928. "time": "2017-02-24T16:22:25+00:00"
  929. },
  930. {
  931. "name": "doctrine/cache",
  932. "version": "v1.6.2",
  933. "source": {
  934. "type": "git",
  935. "url": "https://github.com/doctrine/cache.git",
  936. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  937. },
  938. "dist": {
  939. "type": "zip",
  940. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  941. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  942. "shasum": ""
  943. },
  944. "require": {
  945. "php": "~5.5|~7.0"
  946. },
  947. "conflict": {
  948. "doctrine/common": ">2.2,<2.4"
  949. },
  950. "require-dev": {
  951. "phpunit/phpunit": "~4.8|~5.0",
  952. "predis/predis": "~1.0",
  953. "satooshi/php-coveralls": "~0.6"
  954. },
  955. "type": "library",
  956. "extra": {
  957. "branch-alias": {
  958. "dev-master": "1.6.x-dev"
  959. }
  960. },
  961. "autoload": {
  962. "psr-4": {
  963. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  964. }
  965. },
  966. "notification-url": "https://packagist.org/downloads/",
  967. "license": [
  968. "MIT"
  969. ],
  970. "authors": [
  971. {
  972. "name": "Roman Borschel",
  973. "email": "roman@code-factory.org"
  974. },
  975. {
  976. "name": "Benjamin Eberlei",
  977. "email": "kontakt@beberlei.de"
  978. },
  979. {
  980. "name": "Guilherme Blanco",
  981. "email": "guilhermeblanco@gmail.com"
  982. },
  983. {
  984. "name": "Jonathan Wage",
  985. "email": "jonwage@gmail.com"
  986. },
  987. {
  988. "name": "Johannes Schmitt",
  989. "email": "schmittjoh@gmail.com"
  990. }
  991. ],
  992. "description": "Caching library offering an object-oriented API for many cache backends",
  993. "homepage": "http://www.doctrine-project.org",
  994. "keywords": [
  995. "cache",
  996. "caching"
  997. ],
  998. "time": "2017-07-22T12:49:21+00:00"
  999. },
  1000. {
  1001. "name": "doctrine/collections",
  1002. "version": "v1.4.0",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/doctrine/collections.git",
  1006. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1011. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1012. "shasum": ""
  1013. },
  1014. "require": {
  1015. "php": "^5.6 || ^7.0"
  1016. },
  1017. "require-dev": {
  1018. "doctrine/coding-standard": "~0.1@dev",
  1019. "phpunit/phpunit": "^5.7"
  1020. },
  1021. "type": "library",
  1022. "extra": {
  1023. "branch-alias": {
  1024. "dev-master": "1.3.x-dev"
  1025. }
  1026. },
  1027. "autoload": {
  1028. "psr-0": {
  1029. "Doctrine\\Common\\Collections\\": "lib/"
  1030. }
  1031. },
  1032. "notification-url": "https://packagist.org/downloads/",
  1033. "license": [
  1034. "MIT"
  1035. ],
  1036. "authors": [
  1037. {
  1038. "name": "Roman Borschel",
  1039. "email": "roman@code-factory.org"
  1040. },
  1041. {
  1042. "name": "Benjamin Eberlei",
  1043. "email": "kontakt@beberlei.de"
  1044. },
  1045. {
  1046. "name": "Guilherme Blanco",
  1047. "email": "guilhermeblanco@gmail.com"
  1048. },
  1049. {
  1050. "name": "Jonathan Wage",
  1051. "email": "jonwage@gmail.com"
  1052. },
  1053. {
  1054. "name": "Johannes Schmitt",
  1055. "email": "schmittjoh@gmail.com"
  1056. }
  1057. ],
  1058. "description": "Collections Abstraction library",
  1059. "homepage": "http://www.doctrine-project.org",
  1060. "keywords": [
  1061. "array",
  1062. "collections",
  1063. "iterator"
  1064. ],
  1065. "time": "2017-01-03T10:49:41+00:00"
  1066. },
  1067. {
  1068. "name": "doctrine/common",
  1069. "version": "v2.7.3",
  1070. "source": {
  1071. "type": "git",
  1072. "url": "https://github.com/doctrine/common.git",
  1073. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1074. },
  1075. "dist": {
  1076. "type": "zip",
  1077. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1078. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1079. "shasum": ""
  1080. },
  1081. "require": {
  1082. "doctrine/annotations": "1.*",
  1083. "doctrine/cache": "1.*",
  1084. "doctrine/collections": "1.*",
  1085. "doctrine/inflector": "1.*",
  1086. "doctrine/lexer": "1.*",
  1087. "php": "~5.6|~7.0"
  1088. },
  1089. "require-dev": {
  1090. "phpunit/phpunit": "^5.4.6"
  1091. },
  1092. "type": "library",
  1093. "extra": {
  1094. "branch-alias": {
  1095. "dev-master": "2.7.x-dev"
  1096. }
  1097. },
  1098. "autoload": {
  1099. "psr-4": {
  1100. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1101. }
  1102. },
  1103. "notification-url": "https://packagist.org/downloads/",
  1104. "license": [
  1105. "MIT"
  1106. ],
  1107. "authors": [
  1108. {
  1109. "name": "Roman Borschel",
  1110. "email": "roman@code-factory.org"
  1111. },
  1112. {
  1113. "name": "Benjamin Eberlei",
  1114. "email": "kontakt@beberlei.de"
  1115. },
  1116. {
  1117. "name": "Guilherme Blanco",
  1118. "email": "guilhermeblanco@gmail.com"
  1119. },
  1120. {
  1121. "name": "Jonathan Wage",
  1122. "email": "jonwage@gmail.com"
  1123. },
  1124. {
  1125. "name": "Johannes Schmitt",
  1126. "email": "schmittjoh@gmail.com"
  1127. }
  1128. ],
  1129. "description": "Common Library for Doctrine projects",
  1130. "homepage": "http://www.doctrine-project.org",
  1131. "keywords": [
  1132. "annotations",
  1133. "collections",
  1134. "eventmanager",
  1135. "persistence",
  1136. "spl"
  1137. ],
  1138. "time": "2017-07-22T08:35:12+00:00"
  1139. },
  1140. {
  1141. "name": "doctrine/inflector",
  1142. "version": "v1.2.0",
  1143. "source": {
  1144. "type": "git",
  1145. "url": "https://github.com/doctrine/inflector.git",
  1146. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1147. },
  1148. "dist": {
  1149. "type": "zip",
  1150. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1151. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1152. "shasum": ""
  1153. },
  1154. "require": {
  1155. "php": "^7.0"
  1156. },
  1157. "require-dev": {
  1158. "phpunit/phpunit": "^6.2"
  1159. },
  1160. "type": "library",
  1161. "extra": {
  1162. "branch-alias": {
  1163. "dev-master": "1.2.x-dev"
  1164. }
  1165. },
  1166. "autoload": {
  1167. "psr-4": {
  1168. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1169. }
  1170. },
  1171. "notification-url": "https://packagist.org/downloads/",
  1172. "license": [
  1173. "MIT"
  1174. ],
  1175. "authors": [
  1176. {
  1177. "name": "Roman Borschel",
  1178. "email": "roman@code-factory.org"
  1179. },
  1180. {
  1181. "name": "Benjamin Eberlei",
  1182. "email": "kontakt@beberlei.de"
  1183. },
  1184. {
  1185. "name": "Guilherme Blanco",
  1186. "email": "guilhermeblanco@gmail.com"
  1187. },
  1188. {
  1189. "name": "Jonathan Wage",
  1190. "email": "jonwage@gmail.com"
  1191. },
  1192. {
  1193. "name": "Johannes Schmitt",
  1194. "email": "schmittjoh@gmail.com"
  1195. }
  1196. ],
  1197. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1198. "homepage": "http://www.doctrine-project.org",
  1199. "keywords": [
  1200. "inflection",
  1201. "pluralize",
  1202. "singularize",
  1203. "string"
  1204. ],
  1205. "time": "2017-07-22T12:18:28+00:00"
  1206. },
  1207. {
  1208. "name": "doctrine/lexer",
  1209. "version": "v1.0.1",
  1210. "source": {
  1211. "type": "git",
  1212. "url": "https://github.com/doctrine/lexer.git",
  1213. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1214. },
  1215. "dist": {
  1216. "type": "zip",
  1217. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1218. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1219. "shasum": ""
  1220. },
  1221. "require": {
  1222. "php": ">=5.3.2"
  1223. },
  1224. "type": "library",
  1225. "extra": {
  1226. "branch-alias": {
  1227. "dev-master": "1.0.x-dev"
  1228. }
  1229. },
  1230. "autoload": {
  1231. "psr-0": {
  1232. "Doctrine\\Common\\Lexer\\": "lib/"
  1233. }
  1234. },
  1235. "notification-url": "https://packagist.org/downloads/",
  1236. "license": [
  1237. "MIT"
  1238. ],
  1239. "authors": [
  1240. {
  1241. "name": "Roman Borschel",
  1242. "email": "roman@code-factory.org"
  1243. },
  1244. {
  1245. "name": "Guilherme Blanco",
  1246. "email": "guilhermeblanco@gmail.com"
  1247. },
  1248. {
  1249. "name": "Johannes Schmitt",
  1250. "email": "schmittjoh@gmail.com"
  1251. }
  1252. ],
  1253. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1254. "homepage": "http://www.doctrine-project.org",
  1255. "keywords": [
  1256. "lexer",
  1257. "parser"
  1258. ],
  1259. "time": "2014-09-09T13:34:57+00:00"
  1260. },
  1261. {
  1262. "name": "drupal/console",
  1263. "version": "1.7.0",
  1264. "source": {
  1265. "type": "git",
  1266. "url": "https://github.com/hechoendrupal/drupal-console.git",
  1267. "reference": "f4edcad048bd70fa2e74a6858c061425117c1ace"
  1268. },
  1269. "dist": {
  1270. "type": "zip",
  1271. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/f4edcad048bd70fa2e74a6858c061425117c1ace",
  1272. "reference": "f4edcad048bd70fa2e74a6858c061425117c1ace",
  1273. "shasum": ""
  1274. },
  1275. "require": {
  1276. "alchemy/zippy": "0.4.3",
  1277. "composer/installers": "~1.0",
  1278. "doctrine/annotations": "^1.2",
  1279. "doctrine/collections": "^1.3",
  1280. "drupal/console-core": "1.7.0",
  1281. "drupal/console-extend-plugin": "~0",
  1282. "guzzlehttp/guzzle": "~6.1",
  1283. "php": "^5.5.9 || ^7.0",
  1284. "psy/psysh": "0.6.* || ~0.8",
  1285. "symfony/css-selector": "~2.8|~3.0",
  1286. "symfony/dom-crawler": "~2.8|~3.0",
  1287. "symfony/http-foundation": "~2.8|~3.0"
  1288. },
  1289. "suggest": {
  1290. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  1291. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  1292. },
  1293. "bin": [
  1294. "bin/drupal"
  1295. ],
  1296. "type": "library",
  1297. "autoload": {
  1298. "psr-4": {
  1299. "Drupal\\Console\\": "src"
  1300. }
  1301. },
  1302. "notification-url": "https://packagist.org/downloads/",
  1303. "license": [
  1304. "GPL-2.0-or-later"
  1305. ],
  1306. "authors": [
  1307. {
  1308. "name": "David Flores",
  1309. "email": "dmousex@gmail.com",
  1310. "homepage": "http://dmouse.net"
  1311. },
  1312. {
  1313. "name": "Jesus Manuel Olivas",
  1314. "email": "jesus.olivas@gmail.com",
  1315. "homepage": "http://jmolivas.com"
  1316. },
  1317. {
  1318. "name": "Eduardo Garcia",
  1319. "email": "enzo@enzolutions.com",
  1320. "homepage": "http://enzolutions.com/"
  1321. },
  1322. {
  1323. "name": "Omar Aguirre",
  1324. "email": "omersguchigu@gmail.com"
  1325. },
  1326. {
  1327. "name": "Drupal Console Contributors",
  1328. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  1329. }
  1330. ],
  1331. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  1332. "homepage": "http://drupalconsole.com/",
  1333. "keywords": [
  1334. "console",
  1335. "development",
  1336. "drupal",
  1337. "symfony"
  1338. ],
  1339. "time": "2018-03-06T21:58:52+00:00"
  1340. },
  1341. {
  1342. "name": "drupal/console-core",
  1343. "version": "1.7.0",
  1344. "source": {
  1345. "type": "git",
  1346. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  1347. "reference": "af8b3e42d225a2782f14163aafdeebbc486fd3e5"
  1348. },
  1349. "dist": {
  1350. "type": "zip",
  1351. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/af8b3e42d225a2782f14163aafdeebbc486fd3e5",
  1352. "reference": "af8b3e42d225a2782f14163aafdeebbc486fd3e5",
  1353. "shasum": ""
  1354. },
  1355. "require": {
  1356. "dflydev/dot-access-configuration": "^1.0",
  1357. "drupal/console-en": "1.7.0",
  1358. "php": "^5.5.9 || ^7.0",
  1359. "stecman/symfony-console-completion": "~0.7",
  1360. "symfony/config": "~2.8|~3.0",
  1361. "symfony/console": "~2.8|~3.0",
  1362. "symfony/debug": "~2.8|~3.0",
  1363. "symfony/dependency-injection": "~2.8|~3.0",
  1364. "symfony/event-dispatcher": "~2.8|~3.0",
  1365. "symfony/filesystem": "~2.8|~3.0",
  1366. "symfony/finder": "~2.8|~3.0",
  1367. "symfony/process": "~2.8|~3.0",
  1368. "symfony/translation": "~2.8|~3.0",
  1369. "symfony/yaml": "~2.8|~3.0",
  1370. "twig/twig": "^1.23.1",
  1371. "webflo/drupal-finder": "^1.0",
  1372. "webmozart/path-util": "^2.3"
  1373. },
  1374. "type": "library",
  1375. "autoload": {
  1376. "files": [
  1377. "src/functions.php"
  1378. ],
  1379. "psr-4": {
  1380. "Drupal\\Console\\Core\\": "src"
  1381. }
  1382. },
  1383. "notification-url": "https://packagist.org/downloads/",
  1384. "license": [
  1385. "GPL-2.0-or-later"
  1386. ],
  1387. "authors": [
  1388. {
  1389. "name": "David Flores",
  1390. "email": "dmousex@gmail.com",
  1391. "homepage": "http://dmouse.net"
  1392. },
  1393. {
  1394. "name": "Jesus Manuel Olivas",
  1395. "email": "jesus.olivas@gmail.com",
  1396. "homepage": "http://jmolivas.com"
  1397. },
  1398. {
  1399. "name": "Drupal Console Contributors",
  1400. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  1401. },
  1402. {
  1403. "name": "Eduardo Garcia",
  1404. "email": "enzo@enzolutions.com",
  1405. "homepage": "http://enzolutions.com/"
  1406. },
  1407. {
  1408. "name": "Omar Aguirre",
  1409. "email": "omersguchigu@gmail.com"
  1410. }
  1411. ],
  1412. "description": "Drupal Console Core",
  1413. "homepage": "http://drupalconsole.com/",
  1414. "keywords": [
  1415. "console",
  1416. "development",
  1417. "drupal",
  1418. "symfony"
  1419. ],
  1420. "time": "2018-03-06T21:34:03+00:00"
  1421. },
  1422. {
  1423. "name": "drupal/console-en",
  1424. "version": "1.7.0",
  1425. "source": {
  1426. "type": "git",
  1427. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  1428. "reference": "916e121fad50155fc96d1fc98fed2e4aa0d6cd85"
  1429. },
  1430. "dist": {
  1431. "type": "zip",
  1432. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/916e121fad50155fc96d1fc98fed2e4aa0d6cd85",
  1433. "reference": "916e121fad50155fc96d1fc98fed2e4aa0d6cd85",
  1434. "shasum": ""
  1435. },
  1436. "type": "drupal-console-language",
  1437. "notification-url": "https://packagist.org/downloads/",
  1438. "license": [
  1439. "GPL-2.0-or-later"
  1440. ],
  1441. "authors": [
  1442. {
  1443. "name": "David Flores",
  1444. "email": "dmousex@gmail.com",
  1445. "homepage": "http://dmouse.net"
  1446. },
  1447. {
  1448. "name": "Jesus Manuel Olivas",
  1449. "email": "jesus.olivas@gmail.com",
  1450. "homepage": "http://jmolivas.com"
  1451. },
  1452. {
  1453. "name": "Drupal Console Contributors",
  1454. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  1455. },
  1456. {
  1457. "name": "Eduardo Garcia",
  1458. "email": "enzo@enzolutions.com",
  1459. "homepage": "http://enzolutions.com/"
  1460. },
  1461. {
  1462. "name": "Omar Aguirre",
  1463. "email": "omersguchigu@gmail.com"
  1464. }
  1465. ],
  1466. "description": "Drupal Console English Language",
  1467. "homepage": "http://drupalconsole.com/",
  1468. "keywords": [
  1469. "console",
  1470. "development",
  1471. "drupal",
  1472. "symfony"
  1473. ],
  1474. "time": "2018-03-06T15:51:54+00:00"
  1475. },
  1476. {
  1477. "name": "drupal/console-extend-plugin",
  1478. "version": "0.9.2",
  1479. "source": {
  1480. "type": "git",
  1481. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  1482. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  1483. },
  1484. "dist": {
  1485. "type": "zip",
  1486. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  1487. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  1488. "shasum": ""
  1489. },
  1490. "require": {
  1491. "composer-plugin-api": "^1.0",
  1492. "symfony/finder": "~2.7|~3.0",
  1493. "symfony/yaml": "~2.7|~3.0"
  1494. },
  1495. "type": "composer-plugin",
  1496. "extra": {
  1497. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  1498. },
  1499. "autoload": {
  1500. "psr-4": {
  1501. "Drupal\\Console\\Composer\\Plugin\\": "src"
  1502. }
  1503. },
  1504. "notification-url": "https://packagist.org/downloads/",
  1505. "license": [
  1506. "GPL-2.0+"
  1507. ],
  1508. "authors": [
  1509. {
  1510. "name": "Jesus Manuel Olivas",
  1511. "email": "jesus.olivas@gmail.com"
  1512. }
  1513. ],
  1514. "description": "Drupal Console Extend Plugin",
  1515. "time": "2017-07-28T17:11:54+00:00"
  1516. },
  1517. {
  1518. "name": "drush/drush",
  1519. "version": "9.2.1",
  1520. "source": {
  1521. "type": "git",
  1522. "url": "https://github.com/drush-ops/drush.git",
  1523. "reference": "e40f5bb6a291f643d4699a95ef6873ac40ae8302"
  1524. },
  1525. "dist": {
  1526. "type": "zip",
  1527. "url": "https://api.github.com/repos/drush-ops/drush/zipball/e40f5bb6a291f643d4699a95ef6873ac40ae8302",
  1528. "reference": "e40f5bb6a291f643d4699a95ef6873ac40ae8302",
  1529. "shasum": ""
  1530. },
  1531. "require": {
  1532. "chi-teck/drupal-code-generator": "^1.21.0",
  1533. "composer/semver": "^1.4",
  1534. "consolidation/annotated-command": "^2.8.1",
  1535. "consolidation/config": "^1.0.9",
  1536. "consolidation/output-formatters": "^3.1.12",
  1537. "consolidation/robo": "^1.1.5",
  1538. "ext-dom": "*",
  1539. "grasmash/yaml-expander": "^1.1.1",
  1540. "league/container": "~2",
  1541. "php": ">=5.6.0",
  1542. "psr/log": "~1.0",
  1543. "psy/psysh": "~0.6",
  1544. "sebastian/version": "^1|^2",
  1545. "symfony/config": "~2.2|^3",
  1546. "symfony/console": "~2.7|^3",
  1547. "symfony/event-dispatcher": "~2.7|^3",
  1548. "symfony/finder": "~2.7|^3",
  1549. "symfony/process": "~2.7|^3",
  1550. "symfony/var-dumper": "~2.7|^3",
  1551. "symfony/yaml": "~2.3|^3",
  1552. "webflo/drupal-finder": "^1.1",
  1553. "webmozart/path-util": "^2.1.0"
  1554. },
  1555. "require-dev": {
  1556. "lox/xhprof": "dev-master",
  1557. "phpunit/phpunit": "^4.8|^5.5.4",
  1558. "squizlabs/php_codesniffer": "^2.7"
  1559. },
  1560. "bin": [
  1561. "drush"
  1562. ],
  1563. "type": "library",
  1564. "extra": {
  1565. "branch-alias": {
  1566. "dev-master": "9.0.x-dev"
  1567. }
  1568. },
  1569. "autoload": {
  1570. "psr-4": {
  1571. "Drush\\": "src/",
  1572. "Drush\\Internal\\": "internal-copy/",
  1573. "Unish\\": "tests/"
  1574. }
  1575. },
  1576. "notification-url": "https://packagist.org/downloads/",
  1577. "license": [
  1578. "GPL-2.0-or-later"
  1579. ],
  1580. "authors": [
  1581. {
  1582. "name": "Moshe Weitzman",
  1583. "email": "weitzman@tejasa.com"
  1584. },
  1585. {
  1586. "name": "Owen Barton",
  1587. "email": "drupal@owenbarton.com"
  1588. },
  1589. {
  1590. "name": "Greg Anderson",
  1591. "email": "greg.1.anderson@greenknowe.org"
  1592. },
  1593. {
  1594. "name": "Jonathan Araña Cruz",
  1595. "email": "jonhattan@faita.net"
  1596. },
  1597. {
  1598. "name": "Jonathan Hedstrom",
  1599. "email": "jhedstrom@gmail.com"
  1600. },
  1601. {
  1602. "name": "Christopher Gervais",
  1603. "email": "chris@ergonlogic.com"
  1604. },
  1605. {
  1606. "name": "Dave Reid",
  1607. "email": "dave@davereid.net"
  1608. },
  1609. {
  1610. "name": "Damian Lee",
  1611. "email": "damiankloip@googlemail.com"
  1612. }
  1613. ],
  1614. "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.",
  1615. "homepage": "http://www.drush.org",
  1616. "time": "2018-02-27T21:26:53+00:00"
  1617. },
  1618. {
  1619. "name": "easyrdf/easyrdf",
  1620. "version": "0.9.1",
  1621. "source": {
  1622. "type": "git",
  1623. "url": "https://github.com/njh/easyrdf.git",
  1624. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  1625. },
  1626. "dist": {
  1627. "type": "zip",
  1628. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  1629. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  1630. "shasum": ""
  1631. },
  1632. "require": {
  1633. "ext-mbstring": "*",
  1634. "ext-pcre": "*",
  1635. "php": ">=5.2.8"
  1636. },
  1637. "require-dev": {
  1638. "phpunit/phpunit": "~3.5",
  1639. "sami/sami": "~1.4",
  1640. "squizlabs/php_codesniffer": "~1.4.3"
  1641. },
  1642. "suggest": {
  1643. "ml/json-ld": "~1.0"
  1644. },
  1645. "type": "library",
  1646. "autoload": {
  1647. "psr-0": {
  1648. "EasyRdf_": "lib/"
  1649. }
  1650. },
  1651. "notification-url": "https://packagist.org/downloads/",
  1652. "license": [
  1653. "BSD-3-Clause"
  1654. ],
  1655. "authors": [
  1656. {
  1657. "name": "Nicholas Humfrey",
  1658. "email": "njh@aelius.com",
  1659. "homepage": "http://www.aelius.com/njh/",
  1660. "role": "Developer"
  1661. },
  1662. {
  1663. "name": "Alexey Zakhlestin",
  1664. "email": "indeyets@gmail.com",
  1665. "role": "Developer"
  1666. }
  1667. ],
  1668. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  1669. "homepage": "http://www.easyrdf.org/",
  1670. "keywords": [
  1671. "Linked Data",
  1672. "RDF",
  1673. "Semantic Web",
  1674. "Turtle",
  1675. "rdfa",
  1676. "sparql"
  1677. ],
  1678. "time": "2015-02-27T09:45:49+00:00"
  1679. },
  1680. {
  1681. "name": "egulias/email-validator",
  1682. "version": "1.2.14",
  1683. "source": {
  1684. "type": "git",
  1685. "url": "https://github.com/egulias/EmailValidator.git",
  1686. "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9"
  1687. },
  1688. "dist": {
  1689. "type": "zip",
  1690. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/5642614492f0ca2064c01d60cc33284cc2f731a9",
  1691. "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9",
  1692. "shasum": ""
  1693. },
  1694. "require": {
  1695. "doctrine/lexer": "^1.0.1",
  1696. "php": ">= 5.3.3"
  1697. },
  1698. "require-dev": {
  1699. "phpunit/phpunit": "^4.8.24"
  1700. },
  1701. "type": "library",
  1702. "extra": {
  1703. "branch-alias": {
  1704. "dev-master": "2.0.x-dev"
  1705. }
  1706. },
  1707. "autoload": {
  1708. "psr-0": {
  1709. "Egulias\\": "src/"
  1710. }
  1711. },
  1712. "notification-url": "https://packagist.org/downloads/",
  1713. "license": [
  1714. "MIT"
  1715. ],
  1716. "authors": [
  1717. {
  1718. "name": "Eduardo Gulias Davis"
  1719. }
  1720. ],
  1721. "description": "A library for validating emails",
  1722. "homepage": "https://github.com/egulias/EmailValidator",
  1723. "keywords": [
  1724. "email",
  1725. "emailvalidation",
  1726. "emailvalidator",
  1727. "validation",
  1728. "validator"
  1729. ],
  1730. "time": "2017-02-03T22:48:59+00:00"
  1731. },
  1732. {
  1733. "name": "grasmash/expander",
  1734. "version": "1.0.0",
  1735. "source": {
  1736. "type": "git",
  1737. "url": "https://github.com/grasmash/expander.git",
  1738. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  1739. },
  1740. "dist": {
  1741. "type": "zip",
  1742. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  1743. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  1744. "shasum": ""
  1745. },
  1746. "require": {
  1747. "dflydev/dot-access-data": "^1.1.0",
  1748. "php": ">=5.4"
  1749. },
  1750. "require-dev": {
  1751. "greg-1-anderson/composer-test-scenarios": "^1",
  1752. "phpunit/phpunit": "^4|^5.5.4",
  1753. "satooshi/php-coveralls": "^1.0.2|dev-master",
  1754. "squizlabs/php_codesniffer": "^2.7"
  1755. },
  1756. "type": "library",
  1757. "extra": {
  1758. "branch-alias": {
  1759. "dev-master": "1.x-dev"
  1760. }
  1761. },
  1762. "autoload": {
  1763. "psr-4": {
  1764. "Grasmash\\Expander\\": "src/"
  1765. }
  1766. },
  1767. "notification-url": "https://packagist.org/downloads/",
  1768. "license": [
  1769. "MIT"
  1770. ],
  1771. "authors": [
  1772. {
  1773. "name": "Matthew Grasmick"
  1774. }
  1775. ],
  1776. "description": "Expands internal property references in PHP arrays file.",
  1777. "time": "2017-12-21T22:14:55+00:00"
  1778. },
  1779. {
  1780. "name": "grasmash/yaml-expander",
  1781. "version": "1.4.0",
  1782. "source": {
  1783. "type": "git",
  1784. "url": "https://github.com/grasmash/yaml-expander.git",
  1785. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  1786. },
  1787. "dist": {
  1788. "type": "zip",
  1789. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  1790. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  1791. "shasum": ""
  1792. },
  1793. "require": {
  1794. "dflydev/dot-access-data": "^1.1.0",
  1795. "php": ">=5.4",
  1796. "symfony/yaml": "^2.8.11|^3|^4"
  1797. },
  1798. "require-dev": {
  1799. "greg-1-anderson/composer-test-scenarios": "^1",
  1800. "phpunit/phpunit": "^4.8|^5.5.4",
  1801. "satooshi/php-coveralls": "^1.0.2|dev-master",
  1802. "squizlabs/php_codesniffer": "^2.7"
  1803. },
  1804. "type": "library",
  1805. "extra": {
  1806. "branch-alias": {
  1807. "dev-master": "1.x-dev"
  1808. }
  1809. },
  1810. "autoload": {
  1811. "psr-4": {
  1812. "Grasmash\\YamlExpander\\": "src/"
  1813. }
  1814. },
  1815. "notification-url": "https://packagist.org/downloads/",
  1816. "license": [
  1817. "MIT"
  1818. ],
  1819. "authors": [
  1820. {
  1821. "name": "Matthew Grasmick"
  1822. }
  1823. ],
  1824. "description": "Expands internal property references in a yaml file.",
  1825. "time": "2017-12-16T16:06:03+00:00"
  1826. },
  1827. {
  1828. "name": "guzzlehttp/guzzle",
  1829. "version": "6.3.0",
  1830. "source": {
  1831. "type": "git",
  1832. "url": "https://github.com/guzzle/guzzle.git",
  1833. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699"
  1834. },
  1835. "dist": {
  1836. "type": "zip",
  1837. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  1838. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  1839. "shasum": ""
  1840. },
  1841. "require": {
  1842. "guzzlehttp/promises": "^1.0",
  1843. "guzzlehttp/psr7": "^1.4",
  1844. "php": ">=5.5"
  1845. },
  1846. "require-dev": {
  1847. "ext-curl": "*",
  1848. "phpunit/phpunit": "^4.0 || ^5.0",
  1849. "psr/log": "^1.0"
  1850. },
  1851. "suggest": {
  1852. "psr/log": "Required for using the Log middleware"
  1853. },
  1854. "type": "library",
  1855. "extra": {
  1856. "branch-alias": {
  1857. "dev-master": "6.2-dev"
  1858. }
  1859. },
  1860. "autoload": {
  1861. "files": [
  1862. "src/functions_include.php"
  1863. ],
  1864. "psr-4": {
  1865. "GuzzleHttp\\": "src/"
  1866. }
  1867. },
  1868. "notification-url": "https://packagist.org/downloads/",
  1869. "license": [
  1870. "MIT"
  1871. ],
  1872. "authors": [
  1873. {
  1874. "name": "Michael Dowling",
  1875. "email": "mtdowling@gmail.com",
  1876. "homepage": "https://github.com/mtdowling"
  1877. }
  1878. ],
  1879. "description": "Guzzle is a PHP HTTP client library",
  1880. "homepage": "http://guzzlephp.org/",
  1881. "keywords": [
  1882. "client",
  1883. "curl",
  1884. "framework",
  1885. "http",
  1886. "http client",
  1887. "rest",
  1888. "web service"
  1889. ],
  1890. "time": "2017-06-22T18:50:49+00:00"
  1891. },
  1892. {
  1893. "name": "guzzlehttp/promises",
  1894. "version": "v1.3.1",
  1895. "source": {
  1896. "type": "git",
  1897. "url": "https://github.com/guzzle/promises.git",
  1898. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1899. },
  1900. "dist": {
  1901. "type": "zip",
  1902. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1903. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1904. "shasum": ""
  1905. },
  1906. "require": {
  1907. "php": ">=5.5.0"
  1908. },
  1909. "require-dev": {
  1910. "phpunit/phpunit": "^4.0"
  1911. },
  1912. "type": "library",
  1913. "extra": {
  1914. "branch-alias": {
  1915. "dev-master": "1.4-dev"
  1916. }
  1917. },
  1918. "autoload": {
  1919. "psr-4": {
  1920. "GuzzleHttp\\Promise\\": "src/"
  1921. },
  1922. "files": [
  1923. "src/functions_include.php"
  1924. ]
  1925. },
  1926. "notification-url": "https://packagist.org/downloads/",
  1927. "license": [
  1928. "MIT"
  1929. ],
  1930. "authors": [
  1931. {
  1932. "name": "Michael Dowling",
  1933. "email": "mtdowling@gmail.com",
  1934. "homepage": "https://github.com/mtdowling"
  1935. }
  1936. ],
  1937. "description": "Guzzle promises library",
  1938. "keywords": [
  1939. "promise"
  1940. ],
  1941. "time": "2016-12-20T10:07:11+00:00"
  1942. },
  1943. {
  1944. "name": "guzzlehttp/psr7",
  1945. "version": "1.4.2",
  1946. "source": {
  1947. "type": "git",
  1948. "url": "https://github.com/guzzle/psr7.git",
  1949. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  1950. },
  1951. "dist": {
  1952. "type": "zip",
  1953. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  1954. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  1955. "shasum": ""
  1956. },
  1957. "require": {
  1958. "php": ">=5.4.0",
  1959. "psr/http-message": "~1.0"
  1960. },
  1961. "provide": {
  1962. "psr/http-message-implementation": "1.0"
  1963. },
  1964. "require-dev": {
  1965. "phpunit/phpunit": "~4.0"
  1966. },
  1967. "type": "library",
  1968. "extra": {
  1969. "branch-alias": {
  1970. "dev-master": "1.4-dev"
  1971. }
  1972. },
  1973. "autoload": {
  1974. "psr-4": {
  1975. "GuzzleHttp\\Psr7\\": "src/"
  1976. },
  1977. "files": [
  1978. "src/functions_include.php"
  1979. ]
  1980. },
  1981. "notification-url": "https://packagist.org/downloads/",
  1982. "license": [
  1983. "MIT"
  1984. ],
  1985. "authors": [
  1986. {
  1987. "name": "Michael Dowling",
  1988. "email": "mtdowling@gmail.com",
  1989. "homepage": "https://github.com/mtdowling"
  1990. },
  1991. {
  1992. "name": "Tobias Schultze",
  1993. "homepage": "https://github.com/Tobion"
  1994. }
  1995. ],
  1996. "description": "PSR-7 message implementation that also provides common utility methods",
  1997. "keywords": [
  1998. "http",
  1999. "message",
  2000. "request",
  2001. "response",
  2002. "stream",
  2003. "uri",
  2004. "url"
  2005. ],
  2006. "time": "2017-03-20T17:10:46+00:00"
  2007. },
  2008. {
  2009. "name": "jakub-onderka/php-console-color",
  2010. "version": "0.1",
  2011. "source": {
  2012. "type": "git",
  2013. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  2014. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
  2015. },
  2016. "dist": {
  2017. "type": "zip",
  2018. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
  2019. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
  2020. "shasum": ""
  2021. },
  2022. "require": {
  2023. "php": ">=5.3.2"
  2024. },
  2025. "require-dev": {
  2026. "jakub-onderka/php-code-style": "1.0",
  2027. "jakub-onderka/php-parallel-lint": "0.*",
  2028. "jakub-onderka/php-var-dump-check": "0.*",
  2029. "phpunit/phpunit": "3.7.*",
  2030. "squizlabs/php_codesniffer": "1.*"
  2031. },
  2032. "type": "library",
  2033. "autoload": {
  2034. "psr-0": {
  2035. "JakubOnderka\\PhpConsoleColor": "src/"
  2036. }
  2037. },
  2038. "notification-url": "https://packagist.org/downloads/",
  2039. "license": [
  2040. "BSD-2-Clause"
  2041. ],
  2042. "authors": [
  2043. {
  2044. "name": "Jakub Onderka",
  2045. "email": "jakub.onderka@gmail.com",
  2046. "homepage": "http://www.acci.cz"
  2047. }
  2048. ],
  2049. "time": "2014-04-08T15:00:19+00:00"
  2050. },
  2051. {
  2052. "name": "jakub-onderka/php-console-highlighter",
  2053. "version": "v0.3.2",
  2054. "source": {
  2055. "type": "git",
  2056. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  2057. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
  2058. },
  2059. "dist": {
  2060. "type": "zip",
  2061. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  2062. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  2063. "shasum": ""
  2064. },
  2065. "require": {
  2066. "jakub-onderka/php-console-color": "~0.1",
  2067. "php": ">=5.3.0"
  2068. },
  2069. "require-dev": {
  2070. "jakub-onderka/php-code-style": "~1.0",
  2071. "jakub-onderka/php-parallel-lint": "~0.5",
  2072. "jakub-onderka/php-var-dump-check": "~0.1",
  2073. "phpunit/phpunit": "~4.0",
  2074. "squizlabs/php_codesniffer": "~1.5"
  2075. },
  2076. "type": "library",
  2077. "autoload": {
  2078. "psr-0": {
  2079. "JakubOnderka\\PhpConsoleHighlighter": "src/"
  2080. }
  2081. },
  2082. "notification-url": "https://packagist.org/downloads/",
  2083. "license": [
  2084. "MIT"
  2085. ],
  2086. "authors": [
  2087. {
  2088. "name": "Jakub Onderka",
  2089. "email": "acci@acci.cz",
  2090. "homepage": "http://www.acci.cz/"
  2091. }
  2092. ],
  2093. "time": "2015-04-20T18:58:01+00:00"
  2094. },
  2095. {
  2096. "name": "league/container",
  2097. "version": "2.4.1",
  2098. "source": {
  2099. "type": "git",
  2100. "url": "https://github.com/thephpleague/container.git",
  2101. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  2102. },
  2103. "dist": {
  2104. "type": "zip",
  2105. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  2106. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  2107. "shasum": ""
  2108. },
  2109. "require": {
  2110. "container-interop/container-interop": "^1.2",
  2111. "php": "^5.4.0 || ^7.0"
  2112. },
  2113. "provide": {
  2114. "container-interop/container-interop-implementation": "^1.2",
  2115. "psr/container-implementation": "^1.0"
  2116. },
  2117. "replace": {
  2118. "orno/di": "~2.0"
  2119. },
  2120. "require-dev": {
  2121. "phpunit/phpunit": "4.*"
  2122. },
  2123. "type": "library",
  2124. "extra": {
  2125. "branch-alias": {
  2126. "dev-2.x": "2.x-dev",
  2127. "dev-1.x": "1.x-dev"
  2128. }
  2129. },
  2130. "autoload": {
  2131. "psr-4": {
  2132. "League\\Container\\": "src"
  2133. }
  2134. },
  2135. "notification-url": "https://packagist.org/downloads/",
  2136. "license": [
  2137. "MIT"
  2138. ],
  2139. "authors": [
  2140. {
  2141. "name": "Phil Bennett",
  2142. "email": "philipobenito@gmail.com",
  2143. "homepage": "http://www.philipobenito.com",
  2144. "role": "Developer"
  2145. }
  2146. ],
  2147. "description": "A fast and intuitive dependency injection container.",
  2148. "homepage": "https://github.com/thephpleague/container",
  2149. "keywords": [
  2150. "container",
  2151. "dependency",
  2152. "di",
  2153. "injection",
  2154. "league",
  2155. "provider",
  2156. "service"
  2157. ],
  2158. "time": "2017-05-10T09:20:27+00:00"
  2159. },
  2160. {
  2161. "name": "masterminds/html5",
  2162. "version": "2.3.0",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/Masterminds/html5-php.git",
  2166. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  2171. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  2172. "shasum": ""
  2173. },
  2174. "require": {
  2175. "ext-libxml": "*",
  2176. "php": ">=5.3.0"
  2177. },
  2178. "require-dev": {
  2179. "phpunit/phpunit": "4.*",
  2180. "sami/sami": "~2.0",
  2181. "satooshi/php-coveralls": "1.0.*"
  2182. },
  2183. "type": "library",
  2184. "extra": {
  2185. "branch-alias": {
  2186. "dev-master": "2.2-dev"
  2187. }
  2188. },
  2189. "autoload": {
  2190. "psr-4": {
  2191. "Masterminds\\": "src"
  2192. }
  2193. },
  2194. "notification-url": "https://packagist.org/downloads/",
  2195. "license": [
  2196. "MIT"
  2197. ],
  2198. "authors": [
  2199. {
  2200. "name": "Matt Butcher",
  2201. "email": "technosophos@gmail.com"
  2202. },
  2203. {
  2204. "name": "Asmir Mustafic",
  2205. "email": "goetas@gmail.com"
  2206. },
  2207. {
  2208. "name": "Matt Farina",
  2209. "email": "matt@mattfarina.com"
  2210. }
  2211. ],
  2212. "description": "An HTML5 parser and serializer.",
  2213. "homepage": "http://masterminds.github.io/html5-php",
  2214. "keywords": [
  2215. "HTML5",
  2216. "dom",
  2217. "html",
  2218. "parser",
  2219. "querypath",
  2220. "serializer",
  2221. "xml"
  2222. ],
  2223. "time": "2017-09-04T12:26:28+00:00"
  2224. },
  2225. {
  2226. "name": "nikic/php-parser",
  2227. "version": "v3.1.5",
  2228. "source": {
  2229. "type": "git",
  2230. "url": "https://github.com/nikic/PHP-Parser.git",
  2231. "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce"
  2232. },
  2233. "dist": {
  2234. "type": "zip",
  2235. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bb87e28e7d7b8d9a7fda231d37457c9210faf6ce",
  2236. "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce",
  2237. "shasum": ""
  2238. },
  2239. "require": {
  2240. "ext-tokenizer": "*",
  2241. "php": ">=5.5"
  2242. },
  2243. "require-dev": {
  2244. "phpunit/phpunit": "~4.0|~5.0"
  2245. },
  2246. "bin": [
  2247. "bin/php-parse"
  2248. ],
  2249. "type": "library",
  2250. "extra": {
  2251. "branch-alias": {
  2252. "dev-master": "3.0-dev"
  2253. }
  2254. },
  2255. "autoload": {
  2256. "psr-4": {
  2257. "PhpParser\\": "lib/PhpParser"
  2258. }
  2259. },
  2260. "notification-url": "https://packagist.org/downloads/",
  2261. "license": [
  2262. "BSD-3-Clause"
  2263. ],
  2264. "authors": [
  2265. {
  2266. "name": "Nikita Popov"
  2267. }
  2268. ],
  2269. "description": "A PHP parser written in PHP",
  2270. "keywords": [
  2271. "parser",
  2272. "php"
  2273. ],
  2274. "time": "2018-02-28T20:30:58+00:00"
  2275. },
  2276. {
  2277. "name": "paragonie/random_compat",
  2278. "version": "v2.0.11",
  2279. "source": {
  2280. "type": "git",
  2281. "url": "https://github.com/paragonie/random_compat.git",
  2282. "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8"
  2283. },
  2284. "dist": {
  2285. "type": "zip",
  2286. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/5da4d3c796c275c55f057af5a643ae297d96b4d8",
  2287. "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8",
  2288. "shasum": ""
  2289. },
  2290. "require": {
  2291. "php": ">=5.2.0"
  2292. },
  2293. "require-dev": {
  2294. "phpunit/phpunit": "4.*|5.*"
  2295. },
  2296. "suggest": {
  2297. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2298. },
  2299. "type": "library",
  2300. "autoload": {
  2301. "files": [
  2302. "lib/random.php"
  2303. ]
  2304. },
  2305. "notification-url": "https://packagist.org/downloads/",
  2306. "license": [
  2307. "MIT"
  2308. ],
  2309. "authors": [
  2310. {
  2311. "name": "Paragon Initiative Enterprises",
  2312. "email": "security@paragonie.com",
  2313. "homepage": "https://paragonie.com"
  2314. }
  2315. ],
  2316. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2317. "keywords": [
  2318. "csprng",
  2319. "pseudorandom",
  2320. "random"
  2321. ],
  2322. "time": "2017-09-27T21:40:39+00:00"
  2323. },
  2324. {
  2325. "name": "psr/container",
  2326. "version": "1.0.0",
  2327. "source": {
  2328. "type": "git",
  2329. "url": "https://github.com/php-fig/container.git",
  2330. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2331. },
  2332. "dist": {
  2333. "type": "zip",
  2334. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2335. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2336. "shasum": ""
  2337. },
  2338. "require": {
  2339. "php": ">=5.3.0"
  2340. },
  2341. "type": "library",
  2342. "extra": {
  2343. "branch-alias": {
  2344. "dev-master": "1.0.x-dev"
  2345. }
  2346. },
  2347. "autoload": {
  2348. "psr-4": {
  2349. "Psr\\Container\\": "src/"
  2350. }
  2351. },
  2352. "notification-url": "https://packagist.org/downloads/",
  2353. "license": [
  2354. "MIT"
  2355. ],
  2356. "authors": [
  2357. {
  2358. "name": "PHP-FIG",
  2359. "homepage": "http://www.php-fig.org/"
  2360. }
  2361. ],
  2362. "description": "Common Container Interface (PHP FIG PSR-11)",
  2363. "homepage": "https://github.com/php-fig/container",
  2364. "keywords": [
  2365. "PSR-11",
  2366. "container",
  2367. "container-interface",
  2368. "container-interop",
  2369. "psr"
  2370. ],
  2371. "time": "2017-02-14T16:28:37+00:00"
  2372. },
  2373. {
  2374. "name": "psr/http-message",
  2375. "version": "1.0.1",
  2376. "source": {
  2377. "type": "git",
  2378. "url": "https://github.com/php-fig/http-message.git",
  2379. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2380. },
  2381. "dist": {
  2382. "type": "zip",
  2383. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2384. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2385. "shasum": ""
  2386. },
  2387. "require": {
  2388. "php": ">=5.3.0"
  2389. },
  2390. "type": "library",
  2391. "extra": {
  2392. "branch-alias": {
  2393. "dev-master": "1.0.x-dev"
  2394. }
  2395. },
  2396. "autoload": {
  2397. "psr-4": {
  2398. "Psr\\Http\\Message\\": "src/"
  2399. }
  2400. },
  2401. "notification-url": "https://packagist.org/downloads/",
  2402. "license": [
  2403. "MIT"
  2404. ],
  2405. "authors": [
  2406. {
  2407. "name": "PHP-FIG",
  2408. "homepage": "http://www.php-fig.org/"
  2409. }
  2410. ],
  2411. "description": "Common interface for HTTP messages",
  2412. "homepage": "https://github.com/php-fig/http-message",
  2413. "keywords": [
  2414. "http",
  2415. "http-message",
  2416. "psr",
  2417. "psr-7",
  2418. "request",
  2419. "response"
  2420. ],
  2421. "time": "2016-08-06T14:39:51+00:00"
  2422. },
  2423. {
  2424. "name": "psr/log",
  2425. "version": "1.0.2",
  2426. "source": {
  2427. "type": "git",
  2428. "url": "https://github.com/php-fig/log.git",
  2429. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  2430. },
  2431. "dist": {
  2432. "type": "zip",
  2433. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  2434. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  2435. "shasum": ""
  2436. },
  2437. "require": {
  2438. "php": ">=5.3.0"
  2439. },
  2440. "type": "library",
  2441. "extra": {
  2442. "branch-alias": {
  2443. "dev-master": "1.0.x-dev"
  2444. }
  2445. },
  2446. "autoload": {
  2447. "psr-4": {
  2448. "Psr\\Log\\": "Psr/Log/"
  2449. }
  2450. },
  2451. "notification-url": "https://packagist.org/downloads/",
  2452. "license": [
  2453. "MIT"
  2454. ],
  2455. "authors": [
  2456. {
  2457. "name": "PHP-FIG",
  2458. "homepage": "http://www.php-fig.org/"
  2459. }
  2460. ],
  2461. "description": "Common interface for logging libraries",
  2462. "homepage": "https://github.com/php-fig/log",
  2463. "keywords": [
  2464. "log",
  2465. "psr",
  2466. "psr-3"
  2467. ],
  2468. "time": "2016-10-10T12:19:37+00:00"
  2469. },
  2470. {
  2471. "name": "psy/psysh",
  2472. "version": "v0.8.17",
  2473. "source": {
  2474. "type": "git",
  2475. "url": "https://github.com/bobthecow/psysh.git",
  2476. "reference": "5069b70e8c4ea492c2b5939b6eddc78bfe41cfec"
  2477. },
  2478. "dist": {
  2479. "type": "zip",
  2480. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/5069b70e8c4ea492c2b5939b6eddc78bfe41cfec",
  2481. "reference": "5069b70e8c4ea492c2b5939b6eddc78bfe41cfec",
  2482. "shasum": ""
  2483. },
  2484. "require": {
  2485. "dnoegel/php-xdg-base-dir": "0.1",
  2486. "jakub-onderka/php-console-highlighter": "0.3.*",
  2487. "nikic/php-parser": "~1.3|~2.0|~3.0",
  2488. "php": ">=5.3.9",
  2489. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  2490. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  2491. },
  2492. "require-dev": {
  2493. "hoa/console": "~3.16|~1.14",
  2494. "phpunit/phpunit": "^4.8.35|^5.4.3",
  2495. "symfony/finder": "~2.1|~3.0|~4.0"
  2496. },
  2497. "suggest": {
  2498. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2499. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2500. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2501. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2502. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2503. },
  2504. "bin": [
  2505. "bin/psysh"
  2506. ],
  2507. "type": "library",
  2508. "extra": {
  2509. "branch-alias": {
  2510. "dev-develop": "0.8.x-dev"
  2511. }
  2512. },
  2513. "autoload": {
  2514. "files": [
  2515. "src/Psy/functions.php"
  2516. ],
  2517. "psr-4": {
  2518. "Psy\\": "src/Psy/"
  2519. }
  2520. },
  2521. "notification-url": "https://packagist.org/downloads/",
  2522. "license": [
  2523. "MIT"
  2524. ],
  2525. "authors": [
  2526. {
  2527. "name": "Justin Hileman",
  2528. "email": "justin@justinhileman.info",
  2529. "homepage": "http://justinhileman.com"
  2530. }
  2531. ],
  2532. "description": "An interactive shell for modern PHP.",
  2533. "homepage": "http://psysh.org",
  2534. "keywords": [
  2535. "REPL",
  2536. "console",
  2537. "interactive",
  2538. "shell"
  2539. ],
  2540. "time": "2017-12-28T16:14:16+00:00"
  2541. },
  2542. {
  2543. "name": "sebastian/version",
  2544. "version": "1.0.6",
  2545. "source": {
  2546. "type": "git",
  2547. "url": "https://github.com/sebastianbergmann/version.git",
  2548. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  2549. },
  2550. "dist": {
  2551. "type": "zip",
  2552. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  2553. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  2554. "shasum": ""
  2555. },
  2556. "type": "library",
  2557. "autoload": {
  2558. "classmap": [
  2559. "src/"
  2560. ]
  2561. },
  2562. "notification-url": "https://packagist.org/downloads/",
  2563. "license": [
  2564. "BSD-3-Clause"
  2565. ],
  2566. "authors": [
  2567. {
  2568. "name": "Sebastian Bergmann",
  2569. "email": "sebastian@phpunit.de",
  2570. "role": "lead"
  2571. }
  2572. ],
  2573. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2574. "homepage": "https://github.com/sebastianbergmann/version",
  2575. "time": "2015-06-21T13:59:46+00:00"
  2576. },
  2577. {
  2578. "name": "stack/builder",
  2579. "version": "v1.0.5",
  2580. "source": {
  2581. "type": "git",
  2582. "url": "https://github.com/stackphp/builder.git",
  2583. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  2584. },
  2585. "dist": {
  2586. "type": "zip",
  2587. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  2588. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  2589. "shasum": ""
  2590. },
  2591. "require": {
  2592. "php": ">=5.3.0",
  2593. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  2594. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  2595. },
  2596. "require-dev": {
  2597. "silex/silex": "~1.0"
  2598. },
  2599. "type": "library",
  2600. "extra": {
  2601. "branch-alias": {
  2602. "dev-master": "1.0-dev"
  2603. }
  2604. },
  2605. "autoload": {
  2606. "psr-0": {
  2607. "Stack": "src"
  2608. }
  2609. },
  2610. "notification-url": "https://packagist.org/downloads/",
  2611. "license": [
  2612. "MIT"
  2613. ],
  2614. "authors": [
  2615. {
  2616. "name": "Igor Wiedler",
  2617. "email": "igor@wiedler.ch"
  2618. }
  2619. ],
  2620. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  2621. "keywords": [
  2622. "stack"
  2623. ],
  2624. "time": "2017-11-18T14:57:29+00:00"
  2625. },
  2626. {
  2627. "name": "stecman/symfony-console-completion",
  2628. "version": "0.7.0",
  2629. "source": {
  2630. "type": "git",
  2631. "url": "https://github.com/stecman/symfony-console-completion.git",
  2632. "reference": "5461d43e53092b3d3b9dbd9d999f2054730f4bbb"
  2633. },
  2634. "dist": {
  2635. "type": "zip",
  2636. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/5461d43e53092b3d3b9dbd9d999f2054730f4bbb",
  2637. "reference": "5461d43e53092b3d3b9dbd9d999f2054730f4bbb",
  2638. "shasum": ""
  2639. },
  2640. "require": {
  2641. "php": ">=5.3.2",
  2642. "symfony/console": "~2.3 || ~3.0"
  2643. },
  2644. "require-dev": {
  2645. "phpunit/phpunit": "~4.4"
  2646. },
  2647. "type": "library",
  2648. "extra": {
  2649. "branch-alias": {
  2650. "dev-master": "0.6.x-dev"
  2651. }
  2652. },
  2653. "autoload": {
  2654. "psr-4": {
  2655. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  2656. }
  2657. },
  2658. "notification-url": "https://packagist.org/downloads/",
  2659. "license": [
  2660. "MIT"
  2661. ],
  2662. "authors": [
  2663. {
  2664. "name": "Stephen Holdaway",
  2665. "email": "stephen@stecman.co.nz"
  2666. }
  2667. ],
  2668. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  2669. "time": "2016-02-24T05:08:54+00:00"
  2670. },
  2671. {
  2672. "name": "symfony-cmf/routing",
  2673. "version": "1.4.1",
  2674. "source": {
  2675. "type": "git",
  2676. "url": "https://github.com/symfony-cmf/routing.git",
  2677. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  2678. },
  2679. "dist": {
  2680. "type": "zip",
  2681. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  2682. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  2683. "shasum": ""
  2684. },
  2685. "require": {
  2686. "php": "^5.3.9|^7.0",
  2687. "psr/log": "1.*",
  2688. "symfony/http-kernel": "^2.2|3.*",
  2689. "symfony/routing": "^2.2|3.*"
  2690. },
  2691. "require-dev": {
  2692. "friendsofsymfony/jsrouting-bundle": "^1.1",
  2693. "symfony-cmf/testing": "^1.3",
  2694. "symfony/config": "^2.2|3.*",
  2695. "symfony/dependency-injection": "^2.0.5|3.*",
  2696. "symfony/event-dispatcher": "^2.1|3.*"
  2697. },
  2698. "suggest": {
  2699. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  2700. },
  2701. "type": "library",
  2702. "extra": {
  2703. "branch-alias": {
  2704. "dev-master": "1.4-dev"
  2705. }
  2706. },
  2707. "autoload": {
  2708. "psr-4": {
  2709. "Symfony\\Cmf\\Component\\Routing\\": ""
  2710. }
  2711. },
  2712. "notification-url": "https://packagist.org/downloads/",
  2713. "license": [
  2714. "MIT"
  2715. ],
  2716. "authors": [
  2717. {
  2718. "name": "Symfony CMF Community",
  2719. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  2720. }
  2721. ],
  2722. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  2723. "homepage": "http://cmf.symfony.com",
  2724. "keywords": [
  2725. "database",
  2726. "routing"
  2727. ],
  2728. "time": "2017-05-09T08:10:41+00:00"
  2729. },
  2730. {
  2731. "name": "symfony/class-loader",
  2732. "version": "v3.2.14",
  2733. "source": {
  2734. "type": "git",
  2735. "url": "https://github.com/symfony/class-loader.git",
  2736. "reference": "e192d96b15fdd168bdb1c91001d26c93ba4af482"
  2737. },
  2738. "dist": {
  2739. "type": "zip",
  2740. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e192d96b15fdd168bdb1c91001d26c93ba4af482",
  2741. "reference": "e192d96b15fdd168bdb1c91001d26c93ba4af482",
  2742. "shasum": ""
  2743. },
  2744. "require": {
  2745. "php": ">=5.5.9"
  2746. },
  2747. "require-dev": {
  2748. "symfony/finder": "~2.8|~3.0",
  2749. "symfony/polyfill-apcu": "~1.1"
  2750. },
  2751. "suggest": {
  2752. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  2753. },
  2754. "type": "library",
  2755. "extra": {
  2756. "branch-alias": {
  2757. "dev-master": "3.2-dev"
  2758. }
  2759. },
  2760. "autoload": {
  2761. "psr-4": {
  2762. "Symfony\\Component\\ClassLoader\\": ""
  2763. },
  2764. "exclude-from-classmap": [
  2765. "/Tests/"
  2766. ]
  2767. },
  2768. "notification-url": "https://packagist.org/downloads/",
  2769. "license": [
  2770. "MIT"
  2771. ],
  2772. "authors": [
  2773. {
  2774. "name": "Fabien Potencier",
  2775. "email": "fabien@symfony.com"
  2776. },
  2777. {
  2778. "name": "Symfony Community",
  2779. "homepage": "https://symfony.com/contributors"
  2780. }
  2781. ],
  2782. "description": "Symfony ClassLoader Component",
  2783. "homepage": "https://symfony.com",
  2784. "time": "2017-06-01T21:00:24+00:00"
  2785. },
  2786. {
  2787. "name": "symfony/config",
  2788. "version": "v3.2.14",
  2789. "source": {
  2790. "type": "git",
  2791. "url": "https://github.com/symfony/config.git",
  2792. "reference": "e5533fcc0b3dd377626153b2852707878f363728"
  2793. },
  2794. "dist": {
  2795. "type": "zip",
  2796. "url": "https://api.github.com/repos/symfony/config/zipball/e5533fcc0b3dd377626153b2852707878f363728",
  2797. "reference": "e5533fcc0b3dd377626153b2852707878f363728",
  2798. "shasum": ""
  2799. },
  2800. "require": {
  2801. "php": ">=5.5.9",
  2802. "symfony/filesystem": "~2.8|~3.0"
  2803. },
  2804. "require-dev": {
  2805. "symfony/yaml": "~3.0"
  2806. },
  2807. "suggest": {
  2808. "symfony/yaml": "To use the yaml reference dumper"
  2809. },
  2810. "type": "library",
  2811. "extra": {
  2812. "branch-alias": {
  2813. "dev-master": "3.2-dev"
  2814. }
  2815. },
  2816. "autoload": {
  2817. "psr-4": {
  2818. "Symfony\\Component\\Config\\": ""
  2819. },
  2820. "exclude-from-classmap": [
  2821. "/Tests/"
  2822. ]
  2823. },
  2824. "notification-url": "https://packagist.org/downloads/",
  2825. "license": [
  2826. "MIT"
  2827. ],
  2828. "authors": [
  2829. {
  2830. "name": "Fabien Potencier",
  2831. "email": "fabien@symfony.com"
  2832. },
  2833. {
  2834. "name": "Symfony Community",
  2835. "homepage": "https://symfony.com/contributors"
  2836. }
  2837. ],
  2838. "description": "Symfony Config Component",
  2839. "homepage": "https://symfony.com",
  2840. "time": "2017-04-12T14:13:17+00:00"
  2841. },
  2842. {
  2843. "name": "symfony/console",
  2844. "version": "v3.2.14",
  2845. "source": {
  2846. "type": "git",
  2847. "url": "https://github.com/symfony/console.git",
  2848. "reference": "eced439413608647aeff243038a33ea246b2b33a"
  2849. },
  2850. "dist": {
  2851. "type": "zip",
  2852. "url": "https://api.github.com/repos/symfony/console/zipball/eced439413608647aeff243038a33ea246b2b33a",
  2853. "reference": "eced439413608647aeff243038a33ea246b2b33a",
  2854. "shasum": ""
  2855. },
  2856. "require": {
  2857. "php": ">=5.5.9",
  2858. "symfony/debug": "~2.8|~3.0",
  2859. "symfony/polyfill-mbstring": "~1.0"
  2860. },
  2861. "require-dev": {
  2862. "psr/log": "~1.0",
  2863. "symfony/event-dispatcher": "~2.8|~3.0",
  2864. "symfony/filesystem": "~2.8|~3.0",
  2865. "symfony/process": "~2.8|~3.0"
  2866. },
  2867. "suggest": {
  2868. "psr/log": "For using the console logger",
  2869. "symfony/event-dispatcher": "",
  2870. "symfony/filesystem": "",
  2871. "symfony/process": ""
  2872. },
  2873. "type": "library",
  2874. "extra": {
  2875. "branch-alias": {
  2876. "dev-master": "3.2-dev"
  2877. }
  2878. },
  2879. "autoload": {
  2880. "psr-4": {
  2881. "Symfony\\Component\\Console\\": ""
  2882. },
  2883. "exclude-from-classmap": [
  2884. "/Tests/"
  2885. ]
  2886. },
  2887. "notification-url": "https://packagist.org/downloads/",
  2888. "license": [
  2889. "MIT"
  2890. ],
  2891. "authors": [
  2892. {
  2893. "name": "Fabien Potencier",
  2894. "email": "fabien@symfony.com"
  2895. },
  2896. {
  2897. "name": "Symfony Community",
  2898. "homepage": "https://symfony.com/contributors"
  2899. }
  2900. ],
  2901. "description": "Symfony Console Component",
  2902. "homepage": "https://symfony.com",
  2903. "time": "2017-07-29T21:27:41+00:00"
  2904. },
  2905. {
  2906. "name": "symfony/css-selector",
  2907. "version": "v3.2.14",
  2908. "source": {
  2909. "type": "git",
  2910. "url": "https://github.com/symfony/css-selector.git",
  2911. "reference": "02983c144038e697c959e6b06ef6666de759ccbc"
  2912. },
  2913. "dist": {
  2914. "type": "zip",
  2915. "url": "https://api.github.com/repos/symfony/css-selector/zipball/02983c144038e697c959e6b06ef6666de759ccbc",
  2916. "reference": "02983c144038e697c959e6b06ef6666de759ccbc",
  2917. "shasum": ""
  2918. },
  2919. "require": {
  2920. "php": ">=5.5.9"
  2921. },
  2922. "type": "library",
  2923. "extra": {
  2924. "branch-alias": {
  2925. "dev-master": "3.2-dev"
  2926. }
  2927. },
  2928. "autoload": {
  2929. "psr-4": {
  2930. "Symfony\\Component\\CssSelector\\": ""
  2931. },
  2932. "exclude-from-classmap": [
  2933. "/Tests/"
  2934. ]
  2935. },
  2936. "notification-url": "https://packagist.org/downloads/",
  2937. "license": [
  2938. "MIT"
  2939. ],
  2940. "authors": [
  2941. {
  2942. "name": "Jean-François Simon",
  2943. "email": "jeanfrancois.simon@sensiolabs.com"
  2944. },
  2945. {
  2946. "name": "Fabien Potencier",
  2947. "email": "fabien@symfony.com"
  2948. },
  2949. {
  2950. "name": "Symfony Community",
  2951. "homepage": "https://symfony.com/contributors"
  2952. }
  2953. ],
  2954. "description": "Symfony CssSelector Component",
  2955. "homepage": "https://symfony.com",
  2956. "time": "2017-05-01T14:55:58+00:00"
  2957. },
  2958. {
  2959. "name": "symfony/debug",
  2960. "version": "v3.4.6",
  2961. "source": {
  2962. "type": "git",
  2963. "url": "https://github.com/symfony/debug.git",
  2964. "reference": "9b1071f86e79e1999b3d3675d2e0e7684268b9bc"
  2965. },
  2966. "dist": {
  2967. "type": "zip",
  2968. "url": "https://api.github.com/repos/symfony/debug/zipball/9b1071f86e79e1999b3d3675d2e0e7684268b9bc",
  2969. "reference": "9b1071f86e79e1999b3d3675d2e0e7684268b9bc",
  2970. "shasum": ""
  2971. },
  2972. "require": {
  2973. "php": "^5.5.9|>=7.0.8",
  2974. "psr/log": "~1.0"
  2975. },
  2976. "conflict": {
  2977. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2978. },
  2979. "require-dev": {
  2980. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  2981. },
  2982. "type": "library",
  2983. "extra": {
  2984. "branch-alias": {
  2985. "dev-master": "3.4-dev"
  2986. }
  2987. },
  2988. "autoload": {
  2989. "psr-4": {
  2990. "Symfony\\Component\\Debug\\": ""
  2991. },
  2992. "exclude-from-classmap": [
  2993. "/Tests/"
  2994. ]
  2995. },
  2996. "notification-url": "https://packagist.org/downloads/",
  2997. "license": [
  2998. "MIT"
  2999. ],
  3000. "authors": [
  3001. {
  3002. "name": "Fabien Potencier",
  3003. "email": "fabien@symfony.com"
  3004. },
  3005. {
  3006. "name": "Symfony Community",
  3007. "homepage": "https://symfony.com/contributors"
  3008. }
  3009. ],
  3010. "description": "Symfony Debug Component",
  3011. "homepage": "https://symfony.com",
  3012. "time": "2018-02-28T21:49:22+00:00"
  3013. },
  3014. {
  3015. "name": "symfony/dependency-injection",
  3016. "version": "v3.2.14",
  3017. "source": {
  3018. "type": "git",
  3019. "url": "https://github.com/symfony/dependency-injection.git",
  3020. "reference": "d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761"
  3021. },
  3022. "dist": {
  3023. "type": "zip",
  3024. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761",
  3025. "reference": "d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761",
  3026. "shasum": ""
  3027. },
  3028. "require": {
  3029. "php": ">=5.5.9"
  3030. },
  3031. "conflict": {
  3032. "symfony/yaml": "<3.2"
  3033. },
  3034. "require-dev": {
  3035. "symfony/config": "~2.8|~3.0",
  3036. "symfony/expression-language": "~2.8|~3.0",
  3037. "symfony/yaml": "~3.2"
  3038. },
  3039. "suggest": {
  3040. "symfony/config": "",
  3041. "symfony/expression-language": "For using expressions in service container configuration",
  3042. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  3043. "symfony/yaml": ""
  3044. },
  3045. "type": "library",
  3046. "extra": {
  3047. "branch-alias": {
  3048. "dev-master": "3.2-dev"
  3049. }
  3050. },
  3051. "autoload": {
  3052. "psr-4": {
  3053. "Symfony\\Component\\DependencyInjection\\": ""
  3054. },
  3055. "exclude-from-classmap": [
  3056. "/Tests/"
  3057. ]
  3058. },
  3059. "notification-url": "https://packagist.org/downloads/",
  3060. "license": [
  3061. "MIT"
  3062. ],
  3063. "authors": [
  3064. {
  3065. "name": "Fabien Potencier",
  3066. "email": "fabien@symfony.com"
  3067. },
  3068. {
  3069. "name": "Symfony Community",
  3070. "homepage": "https://symfony.com/contributors"
  3071. }
  3072. ],
  3073. "description": "Symfony DependencyInjection Component",
  3074. "homepage": "https://symfony.com",
  3075. "time": "2017-07-28T15:22:55+00:00"
  3076. },
  3077. {
  3078. "name": "symfony/dom-crawler",
  3079. "version": "v3.4.6",
  3080. "source": {
  3081. "type": "git",
  3082. "url": "https://github.com/symfony/dom-crawler.git",
  3083. "reference": "2bb5d3101cc01f4fe580e536daf4f1959bc2d24d"
  3084. },
  3085. "dist": {
  3086. "type": "zip",
  3087. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/2bb5d3101cc01f4fe580e536daf4f1959bc2d24d",
  3088. "reference": "2bb5d3101cc01f4fe580e536daf4f1959bc2d24d",
  3089. "shasum": ""
  3090. },
  3091. "require": {
  3092. "php": "^5.5.9|>=7.0.8",
  3093. "symfony/polyfill-mbstring": "~1.0"
  3094. },
  3095. "require-dev": {
  3096. "symfony/css-selector": "~2.8|~3.0|~4.0"
  3097. },
  3098. "suggest": {
  3099. "symfony/css-selector": ""
  3100. },
  3101. "type": "library",
  3102. "extra": {
  3103. "branch-alias": {
  3104. "dev-master": "3.4-dev"
  3105. }
  3106. },
  3107. "autoload": {
  3108. "psr-4": {
  3109. "Symfony\\Component\\DomCrawler\\": ""
  3110. },
  3111. "exclude-from-classmap": [
  3112. "/Tests/"
  3113. ]
  3114. },
  3115. "notification-url": "https://packagist.org/downloads/",
  3116. "license": [
  3117. "MIT"
  3118. ],
  3119. "authors": [
  3120. {
  3121. "name": "Fabien Potencier",
  3122. "email": "fabien@symfony.com"
  3123. },
  3124. {
  3125. "name": "Symfony Community",
  3126. "homepage": "https://symfony.com/contributors"
  3127. }
  3128. ],
  3129. "description": "Symfony DomCrawler Component",
  3130. "homepage": "https://symfony.com",
  3131. "time": "2018-02-22T10:48:49+00:00"
  3132. },
  3133. {
  3134. "name": "symfony/event-dispatcher",
  3135. "version": "v3.2.14",
  3136. "source": {
  3137. "type": "git",
  3138. "url": "https://github.com/symfony/event-dispatcher.git",
  3139. "reference": "b8de6ee252af19330dd72ad5fc0dd4658a1d6325"
  3140. },
  3141. "dist": {
  3142. "type": "zip",
  3143. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b8de6ee252af19330dd72ad5fc0dd4658a1d6325",
  3144. "reference": "b8de6ee252af19330dd72ad5fc0dd4658a1d6325",
  3145. "shasum": ""
  3146. },
  3147. "require": {
  3148. "php": ">=5.5.9"
  3149. },
  3150. "require-dev": {
  3151. "psr/log": "~1.0",
  3152. "symfony/config": "~2.8|~3.0",
  3153. "symfony/dependency-injection": "~2.8|~3.0",
  3154. "symfony/expression-language": "~2.8|~3.0",
  3155. "symfony/stopwatch": "~2.8|~3.0"
  3156. },
  3157. "suggest": {
  3158. "symfony/dependency-injection": "",
  3159. "symfony/http-kernel": ""
  3160. },
  3161. "type": "library",
  3162. "extra": {
  3163. "branch-alias": {
  3164. "dev-master": "3.2-dev"
  3165. }
  3166. },
  3167. "autoload": {
  3168. "psr-4": {
  3169. "Symfony\\Component\\EventDispatcher\\": ""
  3170. },
  3171. "exclude-from-classmap": [
  3172. "/Tests/"
  3173. ]
  3174. },
  3175. "notification-url": "https://packagist.org/downloads/",
  3176. "license": [
  3177. "MIT"
  3178. ],
  3179. "authors": [
  3180. {
  3181. "name": "Fabien Potencier",
  3182. "email": "fabien@symfony.com"
  3183. },
  3184. {
  3185. "name": "Symfony Community",
  3186. "homepage": "https://symfony.com/contributors"
  3187. }
  3188. ],
  3189. "description": "Symfony EventDispatcher Component",
  3190. "homepage": "https://symfony.com",
  3191. "time": "2017-06-02T08:26:05+00:00"
  3192. },
  3193. {
  3194. "name": "symfony/filesystem",
  3195. "version": "v3.4.6",
  3196. "source": {
  3197. "type": "git",
  3198. "url": "https://github.com/symfony/filesystem.git",
  3199. "reference": "253a4490b528597aa14d2bf5aeded6f5e5e4a541"
  3200. },
  3201. "dist": {
  3202. "type": "zip",
  3203. "url": "https://api.github.com/repos/symfony/filesystem/zipball/253a4490b528597aa14d2bf5aeded6f5e5e4a541",
  3204. "reference": "253a4490b528597aa14d2bf5aeded6f5e5e4a541",
  3205. "shasum": ""
  3206. },
  3207. "require": {
  3208. "php": "^5.5.9|>=7.0.8"
  3209. },
  3210. "type": "library",
  3211. "extra": {
  3212. "branch-alias": {
  3213. "dev-master": "3.4-dev"
  3214. }
  3215. },
  3216. "autoload": {
  3217. "psr-4": {
  3218. "Symfony\\Component\\Filesystem\\": ""
  3219. },
  3220. "exclude-from-classmap": [
  3221. "/Tests/"
  3222. ]
  3223. },
  3224. "notification-url": "https://packagist.org/downloads/",
  3225. "license": [
  3226. "MIT"
  3227. ],
  3228. "authors": [
  3229. {
  3230. "name": "Fabien Potencier",
  3231. "email": "fabien@symfony.com"
  3232. },
  3233. {
  3234. "name": "Symfony Community",
  3235. "homepage": "https://symfony.com/contributors"
  3236. }
  3237. ],
  3238. "description": "Symfony Filesystem Component",
  3239. "homepage": "https://symfony.com",
  3240. "time": "2018-02-22T10:48:49+00:00"
  3241. },
  3242. {
  3243. "name": "symfony/finder",
  3244. "version": "v3.4.6",
  3245. "source": {
  3246. "type": "git",
  3247. "url": "https://github.com/symfony/finder.git",
  3248. "reference": "a479817ce0a9e4adfd7d39c6407c95d97c254625"
  3249. },
  3250. "dist": {
  3251. "type": "zip",
  3252. "url": "https://api.github.com/repos/symfony/finder/zipball/a479817ce0a9e4adfd7d39c6407c95d97c254625",
  3253. "reference": "a479817ce0a9e4adfd7d39c6407c95d97c254625",
  3254. "shasum": ""
  3255. },
  3256. "require": {
  3257. "php": "^5.5.9|>=7.0.8"
  3258. },
  3259. "type": "library",
  3260. "extra": {
  3261. "branch-alias": {
  3262. "dev-master": "3.4-dev"
  3263. }
  3264. },
  3265. "autoload": {
  3266. "psr-4": {
  3267. "Symfony\\Component\\Finder\\": ""
  3268. },
  3269. "exclude-from-classmap": [
  3270. "/Tests/"
  3271. ]
  3272. },
  3273. "notification-url": "https://packagist.org/downloads/",
  3274. "license": [
  3275. "MIT"
  3276. ],
  3277. "authors": [
  3278. {
  3279. "name": "Fabien Potencier",
  3280. "email": "fabien@symfony.com"
  3281. },
  3282. {
  3283. "name": "Symfony Community",
  3284. "homepage": "https://symfony.com/contributors"
  3285. }
  3286. ],
  3287. "description": "Symfony Finder Component",
  3288. "homepage": "https://symfony.com",
  3289. "time": "2018-03-05T18:28:11+00:00"
  3290. },
  3291. {
  3292. "name": "symfony/http-foundation",
  3293. "version": "v3.2.14",
  3294. "source": {
  3295. "type": "git",
  3296. "url": "https://github.com/symfony/http-foundation.git",
  3297. "reference": "107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1"
  3298. },
  3299. "dist": {
  3300. "type": "zip",
  3301. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1",
  3302. "reference": "107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1",
  3303. "shasum": ""
  3304. },
  3305. "require": {
  3306. "php": ">=5.5.9",
  3307. "symfony/polyfill-mbstring": "~1.1"
  3308. },
  3309. "require-dev": {
  3310. "symfony/expression-language": "~2.8|~3.0"
  3311. },
  3312. "type": "library",
  3313. "extra": {
  3314. "branch-alias": {
  3315. "dev-master": "3.2-dev"
  3316. }
  3317. },
  3318. "autoload": {
  3319. "psr-4": {
  3320. "Symfony\\Component\\HttpFoundation\\": ""
  3321. },
  3322. "exclude-from-classmap": [
  3323. "/Tests/"
  3324. ]
  3325. },
  3326. "notification-url": "https://packagist.org/downloads/",
  3327. "license": [
  3328. "MIT"
  3329. ],
  3330. "authors": [
  3331. {
  3332. "name": "Fabien Potencier",
  3333. "email": "fabien@symfony.com"
  3334. },
  3335. {
  3336. "name": "Symfony Community",
  3337. "homepage": "https://symfony.com/contributors"
  3338. }
  3339. ],
  3340. "description": "Symfony HttpFoundation Component",
  3341. "homepage": "https://symfony.com",
  3342. "time": "2017-07-20T07:58:49+00:00"
  3343. },
  3344. {
  3345. "name": "symfony/http-kernel",
  3346. "version": "v3.2.14",
  3347. "source": {
  3348. "type": "git",
  3349. "url": "https://github.com/symfony/http-kernel.git",
  3350. "reference": "18ec42e19ec676d7da5ddff13f1eed68d88fb460"
  3351. },
  3352. "dist": {
  3353. "type": "zip",
  3354. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/18ec42e19ec676d7da5ddff13f1eed68d88fb460",
  3355. "reference": "18ec42e19ec676d7da5ddff13f1eed68d88fb460",
  3356. "shasum": ""
  3357. },
  3358. "require": {
  3359. "php": ">=5.5.9",
  3360. "psr/log": "~1.0",
  3361. "symfony/debug": "~2.8|~3.0",
  3362. "symfony/event-dispatcher": "~2.8|~3.0",
  3363. "symfony/http-foundation": "~2.8.13|~3.1.6|~3.2"
  3364. },
  3365. "conflict": {
  3366. "symfony/config": "<2.8",
  3367. "twig/twig": "<1.34|<2.4,>=2"
  3368. },
  3369. "require-dev": {
  3370. "symfony/browser-kit": "~2.8|~3.0",
  3371. "symfony/class-loader": "~2.8|~3.0",
  3372. "symfony/config": "~2.8|~3.0",
  3373. "symfony/console": "~2.8|~3.0",
  3374. "symfony/css-selector": "~2.8|~3.0",
  3375. "symfony/dependency-injection": "~2.8|~3.0",
  3376. "symfony/dom-crawler": "~2.8|~3.0",
  3377. "symfony/expression-language": "~2.8|~3.0",
  3378. "symfony/finder": "~2.8|~3.0",
  3379. "symfony/process": "~2.8|~3.0",
  3380. "symfony/routing": "~2.8|~3.0",
  3381. "symfony/stopwatch": "~2.8|~3.0",
  3382. "symfony/templating": "~2.8|~3.0",
  3383. "symfony/translation": "~2.8|~3.0",
  3384. "symfony/var-dumper": "~3.2"
  3385. },
  3386. "suggest": {
  3387. "symfony/browser-kit": "",
  3388. "symfony/class-loader": "",
  3389. "symfony/config": "",
  3390. "symfony/console": "",
  3391. "symfony/dependency-injection": "",
  3392. "symfony/finder": "",
  3393. "symfony/var-dumper": ""
  3394. },
  3395. "type": "library",
  3396. "extra": {
  3397. "branch-alias": {
  3398. "dev-master": "3.2-dev"
  3399. }
  3400. },
  3401. "autoload": {
  3402. "psr-4": {
  3403. "Symfony\\Component\\HttpKernel\\": ""
  3404. },
  3405. "exclude-from-classmap": [
  3406. "/Tests/"
  3407. ]
  3408. },
  3409. "notification-url": "https://packagist.org/downloads/",
  3410. "license": [
  3411. "MIT"
  3412. ],
  3413. "authors": [
  3414. {
  3415. "name": "Fabien Potencier",
  3416. "email": "fabien@symfony.com"
  3417. },
  3418. {
  3419. "name": "Symfony Community",
  3420. "homepage": "https://symfony.com/contributors"
  3421. }
  3422. ],
  3423. "description": "Symfony HttpKernel Component",
  3424. "homepage": "https://symfony.com",
  3425. "time": "2017-08-01T09:40:19+00:00"
  3426. },
  3427. {
  3428. "name": "symfony/polyfill-iconv",
  3429. "version": "v1.7.0",
  3430. "source": {
  3431. "type": "git",
  3432. "url": "https://github.com/symfony/polyfill-iconv.git",
  3433. "reference": "bd515d8f392730c833bc1ba993a4f598da64fa5b"
  3434. },
  3435. "dist": {
  3436. "type": "zip",
  3437. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/bd515d8f392730c833bc1ba993a4f598da64fa5b",
  3438. "reference": "bd515d8f392730c833bc1ba993a4f598da64fa5b",
  3439. "shasum": ""
  3440. },
  3441. "require": {
  3442. "php": ">=5.3.3"
  3443. },
  3444. "suggest": {
  3445. "ext-iconv": "For best performance"
  3446. },
  3447. "type": "library",
  3448. "extra": {
  3449. "branch-alias": {
  3450. "dev-master": "1.7-dev"
  3451. }
  3452. },
  3453. "autoload": {
  3454. "psr-4": {
  3455. "Symfony\\Polyfill\\Iconv\\": ""
  3456. },
  3457. "files": [
  3458. "bootstrap.php"
  3459. ]
  3460. },
  3461. "notification-url": "https://packagist.org/downloads/",
  3462. "license": [
  3463. "MIT"
  3464. ],
  3465. "authors": [
  3466. {
  3467. "name": "Nicolas Grekas",
  3468. "email": "p@tchwork.com"
  3469. },
  3470. {
  3471. "name": "Symfony Community",
  3472. "homepage": "https://symfony.com/contributors"
  3473. }
  3474. ],
  3475. "description": "Symfony polyfill for the Iconv extension",
  3476. "homepage": "https://symfony.com",
  3477. "keywords": [
  3478. "compatibility",
  3479. "iconv",
  3480. "polyfill",
  3481. "portable",
  3482. "shim"
  3483. ],
  3484. "time": "2018-01-30T19:27:44+00:00"
  3485. },
  3486. {
  3487. "name": "symfony/polyfill-mbstring",
  3488. "version": "v1.7.0",
  3489. "source": {
  3490. "type": "git",
  3491. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3492. "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b"
  3493. },
  3494. "dist": {
  3495. "type": "zip",
  3496. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/78be803ce01e55d3491c1397cf1c64beb9c1b63b",
  3497. "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b",
  3498. "shasum": ""
  3499. },
  3500. "require": {
  3501. "php": ">=5.3.3"
  3502. },
  3503. "suggest": {
  3504. "ext-mbstring": "For best performance"
  3505. },
  3506. "type": "library",
  3507. "extra": {
  3508. "branch-alias": {
  3509. "dev-master": "1.7-dev"
  3510. }
  3511. },
  3512. "autoload": {
  3513. "psr-4": {
  3514. "Symfony\\Polyfill\\Mbstring\\": ""
  3515. },
  3516. "files": [
  3517. "bootstrap.php"
  3518. ]
  3519. },
  3520. "notification-url": "https://packagist.org/downloads/",
  3521. "license": [
  3522. "MIT"
  3523. ],
  3524. "authors": [
  3525. {
  3526. "name": "Nicolas Grekas",
  3527. "email": "p@tchwork.com"
  3528. },
  3529. {
  3530. "name": "Symfony Community",
  3531. "homepage": "https://symfony.com/contributors"
  3532. }
  3533. ],
  3534. "description": "Symfony polyfill for the Mbstring extension",
  3535. "homepage": "https://symfony.com",
  3536. "keywords": [
  3537. "compatibility",
  3538. "mbstring",
  3539. "polyfill",
  3540. "portable",
  3541. "shim"
  3542. ],
  3543. "time": "2018-01-30T19:27:44+00:00"
  3544. },
  3545. {
  3546. "name": "symfony/process",
  3547. "version": "v3.2.14",
  3548. "source": {
  3549. "type": "git",
  3550. "url": "https://github.com/symfony/process.git",
  3551. "reference": "b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc"
  3552. },
  3553. "dist": {
  3554. "type": "zip",
  3555. "url": "https://api.github.com/repos/symfony/process/zipball/b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc",
  3556. "reference": "b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc",
  3557. "shasum": ""
  3558. },
  3559. "require": {
  3560. "php": ">=5.5.9"
  3561. },
  3562. "type": "library",
  3563. "extra": {
  3564. "branch-alias": {
  3565. "dev-master": "3.2-dev"
  3566. }
  3567. },
  3568. "autoload": {
  3569. "psr-4": {
  3570. "Symfony\\Component\\Process\\": ""
  3571. },
  3572. "exclude-from-classmap": [
  3573. "/Tests/"
  3574. ]
  3575. },
  3576. "notification-url": "https://packagist.org/downloads/",
  3577. "license": [
  3578. "MIT"
  3579. ],
  3580. "authors": [
  3581. {
  3582. "name": "Fabien Potencier",
  3583. "email": "fabien@symfony.com"
  3584. },
  3585. {
  3586. "name": "Symfony Community",
  3587. "homepage": "https://symfony.com/contributors"
  3588. }
  3589. ],
  3590. "description": "Symfony Process Component",
  3591. "homepage": "https://symfony.com",
  3592. "time": "2017-07-03T08:06:20+00:00"
  3593. },
  3594. {
  3595. "name": "symfony/psr-http-message-bridge",
  3596. "version": "v1.0.2",
  3597. "source": {
  3598. "type": "git",
  3599. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  3600. "reference": "c2b757934f2d9681a287e662efbc27c41fe8ef86"
  3601. },
  3602. "dist": {
  3603. "type": "zip",
  3604. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c2b757934f2d9681a287e662efbc27c41fe8ef86",
  3605. "reference": "c2b757934f2d9681a287e662efbc27c41fe8ef86",
  3606. "shasum": ""
  3607. },
  3608. "require": {
  3609. "php": ">=5.3.3",
  3610. "psr/http-message": "~1.0",
  3611. "symfony/http-foundation": "~2.3|~3.0|~4.0"
  3612. },
  3613. "require-dev": {
  3614. "symfony/phpunit-bridge": "~3.2|4.0"
  3615. },
  3616. "suggest": {
  3617. "psr/http-message-implementation": "To use the HttpFoundation factory",
  3618. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  3619. },
  3620. "type": "symfony-bridge",
  3621. "extra": {
  3622. "branch-alias": {
  3623. "dev-master": "1.0-dev"
  3624. }
  3625. },
  3626. "autoload": {
  3627. "psr-4": {
  3628. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  3629. }
  3630. },
  3631. "notification-url": "https://packagist.org/downloads/",
  3632. "license": [
  3633. "MIT"
  3634. ],
  3635. "authors": [
  3636. {
  3637. "name": "Symfony Community",
  3638. "homepage": "http://symfony.com/contributors"
  3639. },
  3640. {
  3641. "name": "Fabien Potencier",
  3642. "email": "fabien@symfony.com"
  3643. }
  3644. ],
  3645. "description": "PSR HTTP message bridge",
  3646. "homepage": "http://symfony.com",
  3647. "keywords": [
  3648. "http",
  3649. "http-message",
  3650. "psr-7"
  3651. ],
  3652. "time": "2017-12-19T00:31:44+00:00"
  3653. },
  3654. {
  3655. "name": "symfony/routing",
  3656. "version": "v3.2.14",
  3657. "source": {
  3658. "type": "git",
  3659. "url": "https://github.com/symfony/routing.git",
  3660. "reference": "b382d7c4f443372c118efcd0cd2bf1028434f2f5"
  3661. },
  3662. "dist": {
  3663. "type": "zip",
  3664. "url": "https://api.github.com/repos/symfony/routing/zipball/b382d7c4f443372c118efcd0cd2bf1028434f2f5",
  3665. "reference": "b382d7c4f443372c118efcd0cd2bf1028434f2f5",
  3666. "shasum": ""
  3667. },
  3668. "require": {
  3669. "php": ">=5.5.9"
  3670. },
  3671. "conflict": {
  3672. "symfony/config": "<2.8"
  3673. },
  3674. "require-dev": {
  3675. "doctrine/annotations": "~1.0",
  3676. "doctrine/common": "~2.2",
  3677. "psr/log": "~1.0",
  3678. "symfony/config": "~2.8|~3.0",
  3679. "symfony/expression-language": "~2.8|~3.0",
  3680. "symfony/http-foundation": "~2.8|~3.0",
  3681. "symfony/yaml": "~2.8|~3.0"
  3682. },
  3683. "suggest": {
  3684. "doctrine/annotations": "For using the annotation loader",
  3685. "symfony/config": "For using the all-in-one router or any loader",
  3686. "symfony/dependency-injection": "For loading routes from a service",
  3687. "symfony/expression-language": "For using expression matching",
  3688. "symfony/http-foundation": "For using a Symfony Request object",
  3689. "symfony/yaml": "For using the YAML loader"
  3690. },
  3691. "type": "library",
  3692. "extra": {
  3693. "branch-alias": {
  3694. "dev-master": "3.2-dev"
  3695. }
  3696. },
  3697. "autoload": {
  3698. "psr-4": {
  3699. "Symfony\\Component\\Routing\\": ""
  3700. },
  3701. "exclude-from-classmap": [
  3702. "/Tests/"
  3703. ]
  3704. },
  3705. "notification-url": "https://packagist.org/downloads/",
  3706. "license": [
  3707. "MIT"
  3708. ],
  3709. "authors": [
  3710. {
  3711. "name": "Fabien Potencier",
  3712. "email": "fabien@symfony.com"
  3713. },
  3714. {
  3715. "name": "Symfony Community",
  3716. "homepage": "https://symfony.com/contributors"
  3717. }
  3718. ],
  3719. "description": "Symfony Routing Component",
  3720. "homepage": "https://symfony.com",
  3721. "keywords": [
  3722. "router",
  3723. "routing",
  3724. "uri",
  3725. "url"
  3726. ],
  3727. "time": "2017-06-23T06:35:45+00:00"
  3728. },
  3729. {
  3730. "name": "symfony/serializer",
  3731. "version": "v3.2.14",
  3732. "source": {
  3733. "type": "git",
  3734. "url": "https://github.com/symfony/serializer.git",
  3735. "reference": "dc98d5ab4ae29dc47bfb1507b39806bfe13d3477"
  3736. },
  3737. "dist": {
  3738. "type": "zip",
  3739. "url": "https://api.github.com/repos/symfony/serializer/zipball/dc98d5ab4ae29dc47bfb1507b39806bfe13d3477",
  3740. "reference": "dc98d5ab4ae29dc47bfb1507b39806bfe13d3477",
  3741. "shasum": ""
  3742. },
  3743. "require": {
  3744. "php": ">=5.5.9"
  3745. },
  3746. "conflict": {
  3747. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  3748. "symfony/property-info": "<3.1",
  3749. "symfony/yaml": "<3.1"
  3750. },
  3751. "require-dev": {
  3752. "doctrine/annotations": "~1.0",
  3753. "doctrine/cache": "~1.0",
  3754. "phpdocumentor/reflection-docblock": "~3.0",
  3755. "symfony/cache": "~3.1",
  3756. "symfony/config": "~2.8|~3.0",
  3757. "symfony/http-foundation": "~2.8|~3.0",
  3758. "symfony/property-access": "~2.8|~3.0",
  3759. "symfony/property-info": "~3.1",
  3760. "symfony/yaml": "~3.1"
  3761. },
  3762. "suggest": {
  3763. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  3764. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  3765. "psr/cache-implementation": "For using the metadata cache.",
  3766. "symfony/config": "For using the XML mapping loader.",
  3767. "symfony/http-foundation": "To use the DataUriNormalizer.",
  3768. "symfony/property-access": "For using the ObjectNormalizer.",
  3769. "symfony/property-info": "To deserialize relations.",
  3770. "symfony/yaml": "For using the default YAML mapping loader."
  3771. },
  3772. "type": "library",
  3773. "extra": {
  3774. "branch-alias": {
  3775. "dev-master": "3.2-dev"
  3776. }
  3777. },
  3778. "autoload": {
  3779. "psr-4": {
  3780. "Symfony\\Component\\Serializer\\": ""
  3781. },
  3782. "exclude-from-classmap": [
  3783. "/Tests/"
  3784. ]
  3785. },
  3786. "notification-url": "https://packagist.org/downloads/",
  3787. "license": [
  3788. "MIT"
  3789. ],
  3790. "authors": [
  3791. {
  3792. "name": "Fabien Potencier",
  3793. "email": "fabien@symfony.com"
  3794. },
  3795. {
  3796. "name": "Symfony Community",
  3797. "homepage": "https://symfony.com/contributors"
  3798. }
  3799. ],
  3800. "description": "Symfony Serializer Component",
  3801. "homepage": "https://symfony.com",
  3802. "time": "2017-07-06T07:39:51+00:00"
  3803. },
  3804. {
  3805. "name": "symfony/translation",
  3806. "version": "v3.2.14",
  3807. "source": {
  3808. "type": "git",
  3809. "url": "https://github.com/symfony/translation.git",
  3810. "reference": "df36a48672b929bf3995eb62c58d83004b1d0d50"
  3811. },
  3812. "dist": {
  3813. "type": "zip",
  3814. "url": "https://api.github.com/repos/symfony/translation/zipball/df36a48672b929bf3995eb62c58d83004b1d0d50",
  3815. "reference": "df36a48672b929bf3995eb62c58d83004b1d0d50",
  3816. "shasum": ""
  3817. },
  3818. "require": {
  3819. "php": ">=5.5.9",
  3820. "symfony/polyfill-mbstring": "~1.0"
  3821. },
  3822. "conflict": {
  3823. "symfony/config": "<2.8"
  3824. },
  3825. "require-dev": {
  3826. "psr/log": "~1.0",
  3827. "symfony/config": "~2.8|~3.0",
  3828. "symfony/intl": "^2.8.18|^3.2.5",
  3829. "symfony/yaml": "~2.8|~3.0"
  3830. },
  3831. "suggest": {
  3832. "psr/log": "To use logging capability in translator",
  3833. "symfony/config": "",
  3834. "symfony/yaml": ""
  3835. },
  3836. "type": "library",
  3837. "extra": {
  3838. "branch-alias": {
  3839. "dev-master": "3.2-dev"
  3840. }
  3841. },
  3842. "autoload": {
  3843. "psr-4": {
  3844. "Symfony\\Component\\Translation\\": ""
  3845. },
  3846. "exclude-from-classmap": [
  3847. "/Tests/"
  3848. ]
  3849. },
  3850. "notification-url": "https://packagist.org/downloads/",
  3851. "license": [
  3852. "MIT"
  3853. ],
  3854. "authors": [
  3855. {
  3856. "name": "Fabien Potencier",
  3857. "email": "fabien@symfony.com"
  3858. },
  3859. {
  3860. "name": "Symfony Community",
  3861. "homepage": "https://symfony.com/contributors"
  3862. }
  3863. ],
  3864. "description": "Symfony Translation Component",
  3865. "homepage": "https://symfony.com",
  3866. "time": "2017-06-24T16:45:17+00:00"
  3867. },
  3868. {
  3869. "name": "symfony/validator",
  3870. "version": "v3.2.14",
  3871. "source": {
  3872. "type": "git",
  3873. "url": "https://github.com/symfony/validator.git",
  3874. "reference": "39244fbf580e01acc3f5df01238a8f69b1b3e46f"
  3875. },
  3876. "dist": {
  3877. "type": "zip",
  3878. "url": "https://api.github.com/repos/symfony/validator/zipball/39244fbf580e01acc3f5df01238a8f69b1b3e46f",
  3879. "reference": "39244fbf580e01acc3f5df01238a8f69b1b3e46f",
  3880. "shasum": ""
  3881. },
  3882. "require": {
  3883. "php": ">=5.5.9",
  3884. "symfony/polyfill-mbstring": "~1.0",
  3885. "symfony/translation": "~2.8|~3.0"
  3886. },
  3887. "conflict": {
  3888. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  3889. },
  3890. "require-dev": {
  3891. "doctrine/annotations": "~1.0",
  3892. "doctrine/cache": "~1.0",
  3893. "egulias/email-validator": "^1.2.8|~2.0",
  3894. "symfony/cache": "~3.1",
  3895. "symfony/config": "~2.8|~3.0",
  3896. "symfony/expression-language": "~2.8|~3.0",
  3897. "symfony/http-foundation": "~2.8|~3.0",
  3898. "symfony/intl": "^2.8.18|^3.2.5",
  3899. "symfony/yaml": "~2.8|~3.0"
  3900. },
  3901. "suggest": {
  3902. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  3903. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  3904. "egulias/email-validator": "Strict (RFC compliant) email validation",
  3905. "psr/cache-implementation": "For using the metadata cache.",
  3906. "symfony/config": "",
  3907. "symfony/expression-language": "For using the Expression validator",
  3908. "symfony/http-foundation": "",
  3909. "symfony/intl": "",
  3910. "symfony/yaml": ""
  3911. },
  3912. "type": "library",
  3913. "extra": {
  3914. "branch-alias": {
  3915. "dev-master": "3.2-dev"
  3916. }
  3917. },
  3918. "autoload": {
  3919. "psr-4": {
  3920. "Symfony\\Component\\Validator\\": ""
  3921. },
  3922. "exclude-from-classmap": [
  3923. "/Tests/"
  3924. ]
  3925. },
  3926. "notification-url": "https://packagist.org/downloads/",
  3927. "license": [
  3928. "MIT"
  3929. ],
  3930. "authors": [
  3931. {
  3932. "name": "Fabien Potencier",
  3933. "email": "fabien@symfony.com"
  3934. },
  3935. {
  3936. "name": "Symfony Community",
  3937. "homepage": "https://symfony.com/contributors"
  3938. }
  3939. ],
  3940. "description": "Symfony Validator Component",
  3941. "homepage": "https://symfony.com",
  3942. "time": "2017-07-26T06:34:07+00:00"
  3943. },
  3944. {
  3945. "name": "symfony/var-dumper",
  3946. "version": "v3.4.6",
  3947. "source": {
  3948. "type": "git",
  3949. "url": "https://github.com/symfony/var-dumper.git",
  3950. "reference": "80964679d81da3d5618519e0e4be488c3d7ecd7d"
  3951. },
  3952. "dist": {
  3953. "type": "zip",
  3954. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/80964679d81da3d5618519e0e4be488c3d7ecd7d",
  3955. "reference": "80964679d81da3d5618519e0e4be488c3d7ecd7d",
  3956. "shasum": ""
  3957. },
  3958. "require": {
  3959. "php": "^5.5.9|>=7.0.8",
  3960. "symfony/polyfill-mbstring": "~1.0"
  3961. },
  3962. "conflict": {
  3963. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  3964. },
  3965. "require-dev": {
  3966. "ext-iconv": "*",
  3967. "twig/twig": "~1.34|~2.4"
  3968. },
  3969. "suggest": {
  3970. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3971. "ext-intl": "To show region name in time zone dump",
  3972. "ext-symfony_debug": ""
  3973. },
  3974. "type": "library",
  3975. "extra": {
  3976. "branch-alias": {
  3977. "dev-master": "3.4-dev"
  3978. }
  3979. },
  3980. "autoload": {
  3981. "files": [
  3982. "Resources/functions/dump.php"
  3983. ],
  3984. "psr-4": {
  3985. "Symfony\\Component\\VarDumper\\": ""
  3986. },
  3987. "exclude-from-classmap": [
  3988. "/Tests/"
  3989. ]
  3990. },
  3991. "notification-url": "https://packagist.org/downloads/",
  3992. "license": [
  3993. "MIT"
  3994. ],
  3995. "authors": [
  3996. {
  3997. "name": "Nicolas Grekas",
  3998. "email": "p@tchwork.com"
  3999. },
  4000. {
  4001. "name": "Symfony Community",
  4002. "homepage": "https://symfony.com/contributors"
  4003. }
  4004. ],
  4005. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4006. "homepage": "https://symfony.com",
  4007. "keywords": [
  4008. "debug",
  4009. "dump"
  4010. ],
  4011. "time": "2018-02-22T17:29:24+00:00"
  4012. },
  4013. {
  4014. "name": "symfony/yaml",
  4015. "version": "v3.2.14",
  4016. "source": {
  4017. "type": "git",
  4018. "url": "https://github.com/symfony/yaml.git",
  4019. "reference": "78a0c5d7d43713212aac73d7c6a56754a5c26cea"
  4020. },
  4021. "dist": {
  4022. "type": "zip",
  4023. "url": "https://api.github.com/repos/symfony/yaml/zipball/78a0c5d7d43713212aac73d7c6a56754a5c26cea",
  4024. "reference": "78a0c5d7d43713212aac73d7c6a56754a5c26cea",
  4025. "shasum": ""
  4026. },
  4027. "require": {
  4028. "php": ">=5.5.9"
  4029. },
  4030. "require-dev": {
  4031. "symfony/console": "~2.8|~3.0"
  4032. },
  4033. "suggest": {
  4034. "symfony/console": "For validating YAML files using the lint command"
  4035. },
  4036. "type": "library",
  4037. "extra": {
  4038. "branch-alias": {
  4039. "dev-master": "3.2-dev"
  4040. }
  4041. },
  4042. "autoload": {
  4043. "psr-4": {
  4044. "Symfony\\Component\\Yaml\\": ""
  4045. },
  4046. "exclude-from-classmap": [
  4047. "/Tests/"
  4048. ]
  4049. },
  4050. "notification-url": "https://packagist.org/downloads/",
  4051. "license": [
  4052. "MIT"
  4053. ],
  4054. "authors": [
  4055. {
  4056. "name": "Fabien Potencier",
  4057. "email": "fabien@symfony.com"
  4058. },
  4059. {
  4060. "name": "Symfony Community",
  4061. "homepage": "https://symfony.com/contributors"
  4062. }
  4063. ],
  4064. "description": "Symfony Yaml Component",
  4065. "homepage": "https://symfony.com",
  4066. "time": "2017-06-02T09:43:35+00:00"
  4067. },
  4068. {
  4069. "name": "twig/twig",
  4070. "version": "v1.35.2",
  4071. "source": {
  4072. "type": "git",
  4073. "url": "https://github.com/twigphp/Twig.git",
  4074. "reference": "9c24f2cd39dc1906b76879e099970b7e53724601"
  4075. },
  4076. "dist": {
  4077. "type": "zip",
  4078. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9c24f2cd39dc1906b76879e099970b7e53724601",
  4079. "reference": "9c24f2cd39dc1906b76879e099970b7e53724601",
  4080. "shasum": ""
  4081. },
  4082. "require": {
  4083. "php": ">=5.3.3"
  4084. },
  4085. "require-dev": {
  4086. "psr/container": "^1.0",
  4087. "symfony/debug": "~2.7",
  4088. "symfony/phpunit-bridge": "~3.3@dev"
  4089. },
  4090. "type": "library",
  4091. "extra": {
  4092. "branch-alias": {
  4093. "dev-master": "1.35-dev"
  4094. }
  4095. },
  4096. "autoload": {
  4097. "psr-0": {
  4098. "Twig_": "lib/"
  4099. },
  4100. "psr-4": {
  4101. "Twig\\": "src/"
  4102. }
  4103. },
  4104. "notification-url": "https://packagist.org/downloads/",
  4105. "license": [
  4106. "BSD-3-Clause"
  4107. ],
  4108. "authors": [
  4109. {
  4110. "name": "Fabien Potencier",
  4111. "email": "fabien@symfony.com",
  4112. "homepage": "http://fabien.potencier.org",
  4113. "role": "Lead Developer"
  4114. },
  4115. {
  4116. "name": "Armin Ronacher",
  4117. "email": "armin.ronacher@active-4.com",
  4118. "role": "Project Founder"
  4119. },
  4120. {
  4121. "name": "Twig Team",
  4122. "homepage": "http://twig.sensiolabs.org/contributors",
  4123. "role": "Contributors"
  4124. }
  4125. ],
  4126. "description": "Twig, the flexible, fast, and secure template language for PHP",
  4127. "homepage": "http://twig.sensiolabs.org",
  4128. "keywords": [
  4129. "templating"
  4130. ],
  4131. "time": "2018-03-03T16:21:29+00:00"
  4132. },
  4133. {
  4134. "name": "webflo/drupal-finder",
  4135. "version": "1.1.0",
  4136. "source": {
  4137. "type": "git",
  4138. "url": "https://github.com/webflo/drupal-finder.git",
  4139. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  4140. },
  4141. "dist": {
  4142. "type": "zip",
  4143. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  4144. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  4145. "shasum": ""
  4146. },
  4147. "require-dev": {
  4148. "mikey179/vfsstream": "^1.6",
  4149. "phpunit/phpunit": "^4.8"
  4150. },
  4151. "type": "library",
  4152. "autoload": {
  4153. "classmap": [
  4154. "src/DrupalFinder.php"
  4155. ]
  4156. },
  4157. "notification-url": "https://packagist.org/downloads/",
  4158. "license": [
  4159. "GPL-2.0+"
  4160. ],
  4161. "authors": [
  4162. {
  4163. "name": "Florian Weber",
  4164. "email": "florian@webflo.org"
  4165. }
  4166. ],
  4167. "description": "Helper class to locate a Drupal installation from a given path.",
  4168. "time": "2017-10-24T08:12:11+00:00"
  4169. },
  4170. {
  4171. "name": "webmozart/assert",
  4172. "version": "1.3.0",
  4173. "source": {
  4174. "type": "git",
  4175. "url": "https://github.com/webmozart/assert.git",
  4176. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  4177. },
  4178. "dist": {
  4179. "type": "zip",
  4180. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  4181. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  4182. "shasum": ""
  4183. },
  4184. "require": {
  4185. "php": "^5.3.3 || ^7.0"
  4186. },
  4187. "require-dev": {
  4188. "phpunit/phpunit": "^4.6",
  4189. "sebastian/version": "^1.0.1"
  4190. },
  4191. "type": "library",
  4192. "extra": {
  4193. "branch-alias": {
  4194. "dev-master": "1.3-dev"
  4195. }
  4196. },
  4197. "autoload": {
  4198. "psr-4": {
  4199. "Webmozart\\Assert\\": "src/"
  4200. }
  4201. },
  4202. "notification-url": "https://packagist.org/downloads/",
  4203. "license": [
  4204. "MIT"
  4205. ],
  4206. "authors": [
  4207. {
  4208. "name": "Bernhard Schussek",
  4209. "email": "bschussek@gmail.com"
  4210. }
  4211. ],
  4212. "description": "Assertions to validate method input/output with nice error messages.",
  4213. "keywords": [
  4214. "assert",
  4215. "check",
  4216. "validate"
  4217. ],
  4218. "time": "2018-01-29T19:49:41+00:00"
  4219. },
  4220. {
  4221. "name": "webmozart/path-util",
  4222. "version": "2.3.0",
  4223. "source": {
  4224. "type": "git",
  4225. "url": "https://github.com/webmozart/path-util.git",
  4226. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  4227. },
  4228. "dist": {
  4229. "type": "zip",
  4230. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  4231. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  4232. "shasum": ""
  4233. },
  4234. "require": {
  4235. "php": ">=5.3.3",
  4236. "webmozart/assert": "~1.0"
  4237. },
  4238. "require-dev": {
  4239. "phpunit/phpunit": "^4.6",
  4240. "sebastian/version": "^1.0.1"
  4241. },
  4242. "type": "library",
  4243. "extra": {
  4244. "branch-alias": {
  4245. "dev-master": "2.3-dev"
  4246. }
  4247. },
  4248. "autoload": {
  4249. "psr-4": {
  4250. "Webmozart\\PathUtil\\": "src/"
  4251. }
  4252. },
  4253. "notification-url": "https://packagist.org/downloads/",
  4254. "license": [
  4255. "MIT"
  4256. ],
  4257. "authors": [
  4258. {
  4259. "name": "Bernhard Schussek",
  4260. "email": "bschussek@gmail.com"
  4261. }
  4262. ],
  4263. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  4264. "time": "2015-12-17T08:42:14+00:00"
  4265. },
  4266. {
  4267. "name": "wikimedia/composer-merge-plugin",
  4268. "version": "v1.4.1",
  4269. "source": {
  4270. "type": "git",
  4271. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  4272. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  4273. },
  4274. "dist": {
  4275. "type": "zip",
  4276. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  4277. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  4278. "shasum": ""
  4279. },
  4280. "require": {
  4281. "composer-plugin-api": "^1.0",
  4282. "php": ">=5.3.2"
  4283. },
  4284. "require-dev": {
  4285. "composer/composer": "~1.0.0",
  4286. "jakub-onderka/php-parallel-lint": "~0.8",
  4287. "phpunit/phpunit": "~4.8|~5.0",
  4288. "squizlabs/php_codesniffer": "~2.1.0"
  4289. },
  4290. "type": "composer-plugin",
  4291. "extra": {
  4292. "branch-alias": {
  4293. "dev-master": "1.3.x-dev"
  4294. },
  4295. "class": "Wikimedia\\Composer\\MergePlugin"
  4296. },
  4297. "autoload": {
  4298. "psr-4": {
  4299. "Wikimedia\\Composer\\": "src/"
  4300. }
  4301. },
  4302. "notification-url": "https://packagist.org/downloads/",
  4303. "license": [
  4304. "MIT"
  4305. ],
  4306. "authors": [
  4307. {
  4308. "name": "Bryan Davis",
  4309. "email": "bd808@wikimedia.org"
  4310. }
  4311. ],
  4312. "description": "Composer plugin to merge multiple composer.json files",
  4313. "time": "2017-04-25T02:31:25+00:00"
  4314. },
  4315. {
  4316. "name": "zendframework/zend-diactoros",
  4317. "version": "1.7.1",
  4318. "source": {
  4319. "type": "git",
  4320. "url": "https://github.com/zendframework/zend-diactoros.git",
  4321. "reference": "bf26aff803a11c5cc8eb7c4878a702c403ec67f1"
  4322. },
  4323. "dist": {
  4324. "type": "zip",
  4325. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/bf26aff803a11c5cc8eb7c4878a702c403ec67f1",
  4326. "reference": "bf26aff803a11c5cc8eb7c4878a702c403ec67f1",
  4327. "shasum": ""
  4328. },
  4329. "require": {
  4330. "php": "^5.6 || ^7.0",
  4331. "psr/http-message": "^1.0"
  4332. },
  4333. "provide": {
  4334. "psr/http-message-implementation": "1.0"
  4335. },
  4336. "require-dev": {
  4337. "ext-dom": "*",
  4338. "ext-libxml": "*",
  4339. "phpunit/phpunit": "^5.7.16 || ^6.0.8",
  4340. "zendframework/zend-coding-standard": "~1.0"
  4341. },
  4342. "type": "library",
  4343. "extra": {
  4344. "branch-alias": {
  4345. "dev-master": "1.7.x-dev",
  4346. "dev-develop": "1.8.x-dev"
  4347. }
  4348. },
  4349. "autoload": {
  4350. "psr-4": {
  4351. "Zend\\Diactoros\\": "src/"
  4352. }
  4353. },
  4354. "notification-url": "https://packagist.org/downloads/",
  4355. "license": [
  4356. "BSD-2-Clause"
  4357. ],
  4358. "description": "PSR HTTP Message implementations",
  4359. "homepage": "https://github.com/zendframework/zend-diactoros",
  4360. "keywords": [
  4361. "http",
  4362. "psr",
  4363. "psr-7"
  4364. ],
  4365. "time": "2018-02-26T15:44:50+00:00"
  4366. },
  4367. {
  4368. "name": "zendframework/zend-escaper",
  4369. "version": "2.5.2",
  4370. "source": {
  4371. "type": "git",
  4372. "url": "https://github.com/zendframework/zend-escaper.git",
  4373. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e"
  4374. },
  4375. "dist": {
  4376. "type": "zip",
  4377. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  4378. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  4379. "shasum": ""
  4380. },
  4381. "require": {
  4382. "php": ">=5.5"
  4383. },
  4384. "require-dev": {
  4385. "fabpot/php-cs-fixer": "1.7.*",
  4386. "phpunit/phpunit": "~4.0"
  4387. },
  4388. "type": "library",
  4389. "extra": {
  4390. "branch-alias": {
  4391. "dev-master": "2.5-dev",
  4392. "dev-develop": "2.6-dev"
  4393. }
  4394. },
  4395. "autoload": {
  4396. "psr-4": {
  4397. "Zend\\Escaper\\": "src/"
  4398. }
  4399. },
  4400. "notification-url": "https://packagist.org/downloads/",
  4401. "license": [
  4402. "BSD-3-Clause"
  4403. ],
  4404. "homepage": "https://github.com/zendframework/zend-escaper",
  4405. "keywords": [
  4406. "escaper",
  4407. "zf2"
  4408. ],
  4409. "time": "2016-06-30T19:48:38+00:00"
  4410. },
  4411. {
  4412. "name": "zendframework/zend-feed",
  4413. "version": "2.9.0",
  4414. "source": {
  4415. "type": "git",
  4416. "url": "https://github.com/zendframework/zend-feed.git",
  4417. "reference": "abe88686124d492e0a2a84656f15e5482bfbe030"
  4418. },
  4419. "dist": {
  4420. "type": "zip",
  4421. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/abe88686124d492e0a2a84656f15e5482bfbe030",
  4422. "reference": "abe88686124d492e0a2a84656f15e5482bfbe030",
  4423. "shasum": ""
  4424. },
  4425. "require": {
  4426. "php": "^5.6 || ^7.0",
  4427. "zendframework/zend-escaper": "^2.5.2",
  4428. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  4429. },
  4430. "require-dev": {
  4431. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  4432. "psr/http-message": "^1.0.1",
  4433. "zendframework/zend-cache": "^2.7.2",
  4434. "zendframework/zend-coding-standard": "~1.0.0",
  4435. "zendframework/zend-db": "^2.8.2",
  4436. "zendframework/zend-http": "^2.7",
  4437. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  4438. "zendframework/zend-validator": "^2.10.1"
  4439. },
  4440. "suggest": {
  4441. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  4442. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  4443. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  4444. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  4445. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  4446. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  4447. },
  4448. "type": "library",
  4449. "extra": {
  4450. "branch-alias": {
  4451. "dev-master": "2.9-dev",
  4452. "dev-develop": "2.10-dev"
  4453. }
  4454. },
  4455. "autoload": {
  4456. "psr-4": {
  4457. "Zend\\Feed\\": "src/"
  4458. }
  4459. },
  4460. "notification-url": "https://packagist.org/downloads/",
  4461. "license": [
  4462. "BSD-3-Clause"
  4463. ],
  4464. "description": "provides functionality for consuming RSS and Atom feeds",
  4465. "keywords": [
  4466. "ZendFramework",
  4467. "feed",
  4468. "zf"
  4469. ],
  4470. "time": "2017-12-04T17:59:38+00:00"
  4471. },
  4472. {
  4473. "name": "zendframework/zend-stdlib",
  4474. "version": "3.1.0",
  4475. "source": {
  4476. "type": "git",
  4477. "url": "https://github.com/zendframework/zend-stdlib.git",
  4478. "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78"
  4479. },
  4480. "dist": {
  4481. "type": "zip",
  4482. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/debedcfc373a293f9250cc9aa03cf121428c8e78",
  4483. "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78",
  4484. "shasum": ""
  4485. },
  4486. "require": {
  4487. "php": "^5.6 || ^7.0"
  4488. },
  4489. "require-dev": {
  4490. "athletic/athletic": "~0.1",
  4491. "phpunit/phpunit": "~4.0",
  4492. "squizlabs/php_codesniffer": "^2.6.2"
  4493. },
  4494. "type": "library",
  4495. "extra": {
  4496. "branch-alias": {
  4497. "dev-master": "3.1-dev",
  4498. "dev-develop": "3.2-dev"
  4499. }
  4500. },
  4501. "autoload": {
  4502. "psr-4": {
  4503. "Zend\\Stdlib\\": "src/"
  4504. }
  4505. },
  4506. "notification-url": "https://packagist.org/downloads/",
  4507. "license": [
  4508. "BSD-3-Clause"
  4509. ],
  4510. "homepage": "https://github.com/zendframework/zend-stdlib",
  4511. "keywords": [
  4512. "stdlib",
  4513. "zf2"
  4514. ],
  4515. "time": "2016-09-13T14:38:50+00:00"
  4516. }
  4517. ],
  4518. "packages-dev": [
  4519. {
  4520. "name": "behat/mink",
  4521. "version": "dev-master",
  4522. "source": {
  4523. "type": "git",
  4524. "url": "https://github.com/minkphp/Mink.git",
  4525. "reference": "04ab7af68536ac2c80fd6c08a6fd3620d3409891"
  4526. },
  4527. "dist": {
  4528. "type": "zip",
  4529. "url": "https://api.github.com/repos/minkphp/Mink/zipball/04ab7af68536ac2c80fd6c08a6fd3620d3409891",
  4530. "reference": "04ab7af68536ac2c80fd6c08a6fd3620d3409891",
  4531. "shasum": ""
  4532. },
  4533. "require": {
  4534. "php": ">=5.3.1",
  4535. "symfony/css-selector": "^2.7|^3.0|^4.0"
  4536. },
  4537. "require-dev": {
  4538. "symfony/phpunit-bridge": "^3.3|^4.0"
  4539. },
  4540. "suggest": {
  4541. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  4542. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  4543. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  4544. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)"
  4545. },
  4546. "type": "library",
  4547. "extra": {
  4548. "branch-alias": {
  4549. "dev-master": "1.7.x-dev"
  4550. }
  4551. },
  4552. "autoload": {
  4553. "psr-4": {
  4554. "Behat\\Mink\\": "src/"
  4555. }
  4556. },
  4557. "notification-url": "https://packagist.org/downloads/",
  4558. "license": [
  4559. "MIT"
  4560. ],
  4561. "authors": [
  4562. {
  4563. "name": "Konstantin Kudryashov",
  4564. "email": "ever.zet@gmail.com",
  4565. "homepage": "http://everzet.com"
  4566. }
  4567. ],
  4568. "description": "Browser controller/emulator abstraction for PHP",
  4569. "homepage": "http://mink.behat.org/",
  4570. "keywords": [
  4571. "browser",
  4572. "testing",
  4573. "web"
  4574. ],
  4575. "time": "2018-01-07T17:25:05+00:00"
  4576. },
  4577. {
  4578. "name": "behat/mink-browserkit-driver",
  4579. "version": "v1.3.2",
  4580. "source": {
  4581. "type": "git",
  4582. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  4583. "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb"
  4584. },
  4585. "dist": {
  4586. "type": "zip",
  4587. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  4588. "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  4589. "shasum": ""
  4590. },
  4591. "require": {
  4592. "behat/mink": "^1.7.1@dev",
  4593. "php": ">=5.3.6",
  4594. "symfony/browser-kit": "~2.3|~3.0",
  4595. "symfony/dom-crawler": "~2.3|~3.0"
  4596. },
  4597. "require-dev": {
  4598. "silex/silex": "~1.2",
  4599. "symfony/phpunit-bridge": "~2.7|~3.0"
  4600. },
  4601. "type": "mink-driver",
  4602. "extra": {
  4603. "branch-alias": {
  4604. "dev-master": "1.3.x-dev"
  4605. }
  4606. },
  4607. "autoload": {
  4608. "psr-4": {
  4609. "Behat\\Mink\\Driver\\": "src/"
  4610. }
  4611. },
  4612. "notification-url": "https://packagist.org/downloads/",
  4613. "license": [
  4614. "MIT"
  4615. ],
  4616. "authors": [
  4617. {
  4618. "name": "Konstantin Kudryashov",
  4619. "email": "ever.zet@gmail.com",
  4620. "homepage": "http://everzet.com"
  4621. }
  4622. ],
  4623. "description": "Symfony2 BrowserKit driver for Mink framework",
  4624. "homepage": "http://mink.behat.org/",
  4625. "keywords": [
  4626. "Mink",
  4627. "Symfony2",
  4628. "browser",
  4629. "testing"
  4630. ],
  4631. "time": "2016-03-05T08:59:47+00:00"
  4632. },
  4633. {
  4634. "name": "behat/mink-goutte-driver",
  4635. "version": "v1.2.1",
  4636. "source": {
  4637. "type": "git",
  4638. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  4639. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  4640. },
  4641. "dist": {
  4642. "type": "zip",
  4643. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  4644. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  4645. "shasum": ""
  4646. },
  4647. "require": {
  4648. "behat/mink": "~1.6@dev",
  4649. "behat/mink-browserkit-driver": "~1.2@dev",
  4650. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  4651. "php": ">=5.3.1"
  4652. },
  4653. "require-dev": {
  4654. "symfony/phpunit-bridge": "~2.7|~3.0"
  4655. },
  4656. "type": "mink-driver",
  4657. "extra": {
  4658. "branch-alias": {
  4659. "dev-master": "1.2.x-dev"
  4660. }
  4661. },
  4662. "autoload": {
  4663. "psr-4": {
  4664. "Behat\\Mink\\Driver\\": "src/"
  4665. }
  4666. },
  4667. "notification-url": "https://packagist.org/downloads/",
  4668. "license": [
  4669. "MIT"
  4670. ],
  4671. "authors": [
  4672. {
  4673. "name": "Konstantin Kudryashov",
  4674. "email": "ever.zet@gmail.com",
  4675. "homepage": "http://everzet.com"
  4676. }
  4677. ],
  4678. "description": "Goutte driver for Mink framework",
  4679. "homepage": "http://mink.behat.org/",
  4680. "keywords": [
  4681. "browser",
  4682. "goutte",
  4683. "headless",
  4684. "testing"
  4685. ],
  4686. "time": "2016-03-05T09:04:22+00:00"
  4687. },
  4688. {
  4689. "name": "doctrine/instantiator",
  4690. "version": "1.0.5",
  4691. "source": {
  4692. "type": "git",
  4693. "url": "https://github.com/doctrine/instantiator.git",
  4694. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  4695. },
  4696. "dist": {
  4697. "type": "zip",
  4698. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  4699. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  4700. "shasum": ""
  4701. },
  4702. "require": {
  4703. "php": ">=5.3,<8.0-DEV"
  4704. },
  4705. "require-dev": {
  4706. "athletic/athletic": "~0.1.8",
  4707. "ext-pdo": "*",
  4708. "ext-phar": "*",
  4709. "phpunit/phpunit": "~4.0",
  4710. "squizlabs/php_codesniffer": "~2.0"
  4711. },
  4712. "type": "library",
  4713. "extra": {
  4714. "branch-alias": {
  4715. "dev-master": "1.0.x-dev"
  4716. }
  4717. },
  4718. "autoload": {
  4719. "psr-4": {
  4720. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4721. }
  4722. },
  4723. "notification-url": "https://packagist.org/downloads/",
  4724. "license": [
  4725. "MIT"
  4726. ],
  4727. "authors": [
  4728. {
  4729. "name": "Marco Pivetta",
  4730. "email": "ocramius@gmail.com",
  4731. "homepage": "http://ocramius.github.com/"
  4732. }
  4733. ],
  4734. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4735. "homepage": "https://github.com/doctrine/instantiator",
  4736. "keywords": [
  4737. "constructor",
  4738. "instantiate"
  4739. ],
  4740. "time": "2015-06-14T21:17:01+00:00"
  4741. },
  4742. {
  4743. "name": "drupal/coder",
  4744. "version": "8.2.12",
  4745. "source": {
  4746. "type": "git",
  4747. "url": "https://git.drupal.org/project/coder.git",
  4748. "reference": "984c54a7b1e8f27ff1c32348df69712afd86b17f"
  4749. },
  4750. "require": {
  4751. "ext-mbstring": "*",
  4752. "php": ">=5.4.0",
  4753. "squizlabs/php_codesniffer": ">=2.8.1 <3.0",
  4754. "symfony/yaml": ">=2.0.0"
  4755. },
  4756. "require-dev": {
  4757. "phpunit/phpunit": ">=3.7 <6"
  4758. },
  4759. "type": "phpcodesniffer-standard",
  4760. "notification-url": "https://packagist.org/downloads/",
  4761. "license": [
  4762. "GPL-2.0+"
  4763. ],
  4764. "description": "Coder is a library to review Drupal code.",
  4765. "homepage": "https://www.drupal.org/project/coder",
  4766. "keywords": [
  4767. "code review",
  4768. "phpcs",
  4769. "standards"
  4770. ],
  4771. "time": "2017-03-18T10:28:49+00:00"
  4772. },
  4773. {
  4774. "name": "fabpot/goutte",
  4775. "version": "v3.2.2",
  4776. "source": {
  4777. "type": "git",
  4778. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  4779. "reference": "395f61d7c2e15a813839769553a4de16fa3b3c96"
  4780. },
  4781. "dist": {
  4782. "type": "zip",
  4783. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/395f61d7c2e15a813839769553a4de16fa3b3c96",
  4784. "reference": "395f61d7c2e15a813839769553a4de16fa3b3c96",
  4785. "shasum": ""
  4786. },
  4787. "require": {
  4788. "guzzlehttp/guzzle": "^6.0",
  4789. "php": ">=5.5.0",
  4790. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  4791. "symfony/css-selector": "~2.1|~3.0|~4.0",
  4792. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  4793. },
  4794. "require-dev": {
  4795. "symfony/phpunit-bridge": "^3.3 || ^4"
  4796. },
  4797. "type": "application",
  4798. "extra": {
  4799. "branch-alias": {
  4800. "dev-master": "3.2-dev"
  4801. }
  4802. },
  4803. "autoload": {
  4804. "psr-4": {
  4805. "Goutte\\": "Goutte"
  4806. },
  4807. "exclude-from-classmap": [
  4808. "Goutte/Tests"
  4809. ]
  4810. },
  4811. "notification-url": "https://packagist.org/downloads/",
  4812. "license": [
  4813. "MIT"
  4814. ],
  4815. "authors": [
  4816. {
  4817. "name": "Fabien Potencier",
  4818. "email": "fabien@symfony.com"
  4819. }
  4820. ],
  4821. "description": "A simple PHP Web Scraper",
  4822. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  4823. "keywords": [
  4824. "scraper"
  4825. ],
  4826. "time": "2017-11-19T08:45:40+00:00"
  4827. },
  4828. {
  4829. "name": "jcalderonzumba/gastonjs",
  4830. "version": "v1.2.0",
  4831. "source": {
  4832. "type": "git",
  4833. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  4834. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  4835. },
  4836. "dist": {
  4837. "type": "zip",
  4838. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  4839. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  4840. "shasum": ""
  4841. },
  4842. "require": {
  4843. "guzzlehttp/guzzle": "~5.0|~6.0",
  4844. "php": ">=5.4"
  4845. },
  4846. "require-dev": {
  4847. "phpunit/phpunit": "~4.6",
  4848. "silex/silex": "~1.2",
  4849. "symfony/phpunit-bridge": "~2.7",
  4850. "symfony/process": "~2.1"
  4851. },
  4852. "type": "phantomjs-api",
  4853. "extra": {
  4854. "branch-alias": {
  4855. "dev-master": "1.1.x-dev"
  4856. }
  4857. },
  4858. "autoload": {
  4859. "psr-4": {
  4860. "Zumba\\GastonJS\\": "src"
  4861. }
  4862. },
  4863. "notification-url": "https://packagist.org/downloads/",
  4864. "license": [
  4865. "MIT"
  4866. ],
  4867. "authors": [
  4868. {
  4869. "name": "Juan Francisco Calderón Zumba",
  4870. "email": "juanfcz@gmail.com",
  4871. "homepage": "http://github.com/jcalderonzumba"
  4872. }
  4873. ],
  4874. "description": "PhantomJS API based server for webpage automation",
  4875. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  4876. "keywords": [
  4877. "api",
  4878. "automation",
  4879. "browser",
  4880. "headless",
  4881. "phantomjs"
  4882. ],
  4883. "time": "2017-03-31T07:31:47+00:00"
  4884. },
  4885. {
  4886. "name": "jcalderonzumba/mink-phantomjs-driver",
  4887. "version": "v0.3.3",
  4888. "source": {
  4889. "type": "git",
  4890. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  4891. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  4892. },
  4893. "dist": {
  4894. "type": "zip",
  4895. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  4896. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  4897. "shasum": ""
  4898. },
  4899. "require": {
  4900. "behat/mink": "~1.7",
  4901. "jcalderonzumba/gastonjs": "~1.0",
  4902. "php": ">=5.4",
  4903. "twig/twig": "~1.20|~2.0"
  4904. },
  4905. "require-dev": {
  4906. "mink/driver-testsuite": "dev-master",
  4907. "phpunit/phpunit": "~4.6"
  4908. },
  4909. "type": "mink-driver",
  4910. "extra": {
  4911. "branch-alias": {
  4912. "dev-master": "0.4.x-dev"
  4913. }
  4914. },
  4915. "autoload": {
  4916. "psr-4": {
  4917. "Zumba\\Mink\\Driver\\": "src"
  4918. }
  4919. },
  4920. "notification-url": "https://packagist.org/downloads/",
  4921. "license": [
  4922. "MIT"
  4923. ],
  4924. "authors": [
  4925. {
  4926. "name": "Juan Francisco Calderón Zumba",
  4927. "email": "juanfcz@gmail.com",
  4928. "homepage": "http://github.com/jcalderonzumba"
  4929. }
  4930. ],
  4931. "description": "PhantomJS driver for Mink framework",
  4932. "homepage": "http://mink.behat.org/",
  4933. "keywords": [
  4934. "ajax",
  4935. "browser",
  4936. "headless",
  4937. "javascript",
  4938. "phantomjs",
  4939. "testing"
  4940. ],
  4941. "time": "2016-12-01T10:57:30+00:00"
  4942. },
  4943. {
  4944. "name": "mikey179/vfsStream",
  4945. "version": "v1.6.5",
  4946. "source": {
  4947. "type": "git",
  4948. "url": "https://github.com/mikey179/vfsStream.git",
  4949. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  4950. },
  4951. "dist": {
  4952. "type": "zip",
  4953. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  4954. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  4955. "shasum": ""
  4956. },
  4957. "require": {
  4958. "php": ">=5.3.0"
  4959. },
  4960. "require-dev": {
  4961. "phpunit/phpunit": "~4.5"
  4962. },
  4963. "type": "library",
  4964. "extra": {
  4965. "branch-alias": {
  4966. "dev-master": "1.6.x-dev"
  4967. }
  4968. },
  4969. "autoload": {
  4970. "psr-0": {
  4971. "org\\bovigo\\vfs\\": "src/main/php"
  4972. }
  4973. },
  4974. "notification-url": "https://packagist.org/downloads/",
  4975. "license": [
  4976. "BSD-3-Clause"
  4977. ],
  4978. "authors": [
  4979. {
  4980. "name": "Frank Kleine",
  4981. "homepage": "http://frankkleine.de/",
  4982. "role": "Developer"
  4983. }
  4984. ],
  4985. "description": "Virtual file system to mock the real file system in unit tests.",
  4986. "homepage": "http://vfs.bovigo.org/",
  4987. "time": "2017-08-01T08:02:14+00:00"
  4988. },
  4989. {
  4990. "name": "phpdocumentor/reflection-common",
  4991. "version": "1.0.1",
  4992. "source": {
  4993. "type": "git",
  4994. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4995. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  4996. },
  4997. "dist": {
  4998. "type": "zip",
  4999. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5000. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5001. "shasum": ""
  5002. },
  5003. "require": {
  5004. "php": ">=5.5"
  5005. },
  5006. "require-dev": {
  5007. "phpunit/phpunit": "^4.6"
  5008. },
  5009. "type": "library",
  5010. "extra": {
  5011. "branch-alias": {
  5012. "dev-master": "1.0.x-dev"
  5013. }
  5014. },
  5015. "autoload": {
  5016. "psr-4": {
  5017. "phpDocumentor\\Reflection\\": [
  5018. "src"
  5019. ]
  5020. }
  5021. },
  5022. "notification-url": "https://packagist.org/downloads/",
  5023. "license": [
  5024. "MIT"
  5025. ],
  5026. "authors": [
  5027. {
  5028. "name": "Jaap van Otterdijk",
  5029. "email": "opensource@ijaap.nl"
  5030. }
  5031. ],
  5032. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5033. "homepage": "http://www.phpdoc.org",
  5034. "keywords": [
  5035. "FQSEN",
  5036. "phpDocumentor",
  5037. "phpdoc",
  5038. "reflection",
  5039. "static analysis"
  5040. ],
  5041. "time": "2017-09-11T18:02:19+00:00"
  5042. },
  5043. {
  5044. "name": "phpdocumentor/reflection-docblock",
  5045. "version": "4.3.0",
  5046. "source": {
  5047. "type": "git",
  5048. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5049. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  5050. },
  5051. "dist": {
  5052. "type": "zip",
  5053. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  5054. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  5055. "shasum": ""
  5056. },
  5057. "require": {
  5058. "php": "^7.0",
  5059. "phpdocumentor/reflection-common": "^1.0.0",
  5060. "phpdocumentor/type-resolver": "^0.4.0",
  5061. "webmozart/assert": "^1.0"
  5062. },
  5063. "require-dev": {
  5064. "doctrine/instantiator": "~1.0.5",
  5065. "mockery/mockery": "^1.0",
  5066. "phpunit/phpunit": "^6.4"
  5067. },
  5068. "type": "library",
  5069. "extra": {
  5070. "branch-alias": {
  5071. "dev-master": "4.x-dev"
  5072. }
  5073. },
  5074. "autoload": {
  5075. "psr-4": {
  5076. "phpDocumentor\\Reflection\\": [
  5077. "src/"
  5078. ]
  5079. }
  5080. },
  5081. "notification-url": "https://packagist.org/downloads/",
  5082. "license": [
  5083. "MIT"
  5084. ],
  5085. "authors": [
  5086. {
  5087. "name": "Mike van Riel",
  5088. "email": "me@mikevanriel.com"
  5089. }
  5090. ],
  5091. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5092. "time": "2017-11-30T07:14:17+00:00"
  5093. },
  5094. {
  5095. "name": "phpdocumentor/type-resolver",
  5096. "version": "0.4.0",
  5097. "source": {
  5098. "type": "git",
  5099. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5100. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  5101. },
  5102. "dist": {
  5103. "type": "zip",
  5104. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  5105. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  5106. "shasum": ""
  5107. },
  5108. "require": {
  5109. "php": "^5.5 || ^7.0",
  5110. "phpdocumentor/reflection-common": "^1.0"
  5111. },
  5112. "require-dev": {
  5113. "mockery/mockery": "^0.9.4",
  5114. "phpunit/phpunit": "^5.2||^4.8.24"
  5115. },
  5116. "type": "library",
  5117. "extra": {
  5118. "branch-alias": {
  5119. "dev-master": "1.0.x-dev"
  5120. }
  5121. },
  5122. "autoload": {
  5123. "psr-4": {
  5124. "phpDocumentor\\Reflection\\": [
  5125. "src/"
  5126. ]
  5127. }
  5128. },
  5129. "notification-url": "https://packagist.org/downloads/",
  5130. "license": [
  5131. "MIT"
  5132. ],
  5133. "authors": [
  5134. {
  5135. "name": "Mike van Riel",
  5136. "email": "me@mikevanriel.com"
  5137. }
  5138. ],
  5139. "time": "2017-07-14T14:27:02+00:00"
  5140. },
  5141. {
  5142. "name": "phpspec/prophecy",
  5143. "version": "1.7.5",
  5144. "source": {
  5145. "type": "git",
  5146. "url": "https://github.com/phpspec/prophecy.git",
  5147. "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401"
  5148. },
  5149. "dist": {
  5150. "type": "zip",
  5151. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/dfd6be44111a7c41c2e884a336cc4f461b3b2401",
  5152. "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401",
  5153. "shasum": ""
  5154. },
  5155. "require": {
  5156. "doctrine/instantiator": "^1.0.2",
  5157. "php": "^5.3|^7.0",
  5158. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  5159. "sebastian/comparator": "^1.1|^2.0",
  5160. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  5161. },
  5162. "require-dev": {
  5163. "phpspec/phpspec": "^2.5|^3.2",
  5164. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  5165. },
  5166. "type": "library",
  5167. "extra": {
  5168. "branch-alias": {
  5169. "dev-master": "1.7.x-dev"
  5170. }
  5171. },
  5172. "autoload": {
  5173. "psr-0": {
  5174. "Prophecy\\": "src/"
  5175. }
  5176. },
  5177. "notification-url": "https://packagist.org/downloads/",
  5178. "license": [
  5179. "MIT"
  5180. ],
  5181. "authors": [
  5182. {
  5183. "name": "Konstantin Kudryashov",
  5184. "email": "ever.zet@gmail.com",
  5185. "homepage": "http://everzet.com"
  5186. },
  5187. {
  5188. "name": "Marcello Duarte",
  5189. "email": "marcello.duarte@gmail.com"
  5190. }
  5191. ],
  5192. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5193. "homepage": "https://github.com/phpspec/prophecy",
  5194. "keywords": [
  5195. "Double",
  5196. "Dummy",
  5197. "fake",
  5198. "mock",
  5199. "spy",
  5200. "stub"
  5201. ],
  5202. "time": "2018-02-19T10:16:54+00:00"
  5203. },
  5204. {
  5205. "name": "phpunit/php-code-coverage",
  5206. "version": "2.2.4",
  5207. "source": {
  5208. "type": "git",
  5209. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  5210. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  5211. },
  5212. "dist": {
  5213. "type": "zip",
  5214. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  5215. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  5216. "shasum": ""
  5217. },
  5218. "require": {
  5219. "php": ">=5.3.3",
  5220. "phpunit/php-file-iterator": "~1.3",
  5221. "phpunit/php-text-template": "~1.2",
  5222. "phpunit/php-token-stream": "~1.3",
  5223. "sebastian/environment": "^1.3.2",
  5224. "sebastian/version": "~1.0"
  5225. },
  5226. "require-dev": {
  5227. "ext-xdebug": ">=2.1.4",
  5228. "phpunit/phpunit": "~4"
  5229. },
  5230. "suggest": {
  5231. "ext-dom": "*",
  5232. "ext-xdebug": ">=2.2.1",
  5233. "ext-xmlwriter": "*"
  5234. },
  5235. "type": "library",
  5236. "extra": {
  5237. "branch-alias": {
  5238. "dev-master": "2.2.x-dev"
  5239. }
  5240. },
  5241. "autoload": {
  5242. "classmap": [
  5243. "src/"
  5244. ]
  5245. },
  5246. "notification-url": "https://packagist.org/downloads/",
  5247. "license": [
  5248. "BSD-3-Clause"
  5249. ],
  5250. "authors": [
  5251. {
  5252. "name": "Sebastian Bergmann",
  5253. "email": "sb@sebastian-bergmann.de",
  5254. "role": "lead"
  5255. }
  5256. ],
  5257. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5258. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5259. "keywords": [
  5260. "coverage",
  5261. "testing",
  5262. "xunit"
  5263. ],
  5264. "time": "2015-10-06T15:47:00+00:00"
  5265. },
  5266. {
  5267. "name": "phpunit/php-file-iterator",
  5268. "version": "1.4.5",
  5269. "source": {
  5270. "type": "git",
  5271. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5272. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  5273. },
  5274. "dist": {
  5275. "type": "zip",
  5276. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  5277. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  5278. "shasum": ""
  5279. },
  5280. "require": {
  5281. "php": ">=5.3.3"
  5282. },
  5283. "type": "library",
  5284. "extra": {
  5285. "branch-alias": {
  5286. "dev-master": "1.4.x-dev"
  5287. }
  5288. },
  5289. "autoload": {
  5290. "classmap": [
  5291. "src/"
  5292. ]
  5293. },
  5294. "notification-url": "https://packagist.org/downloads/",
  5295. "license": [
  5296. "BSD-3-Clause"
  5297. ],
  5298. "authors": [
  5299. {
  5300. "name": "Sebastian Bergmann",
  5301. "email": "sb@sebastian-bergmann.de",
  5302. "role": "lead"
  5303. }
  5304. ],
  5305. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5306. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5307. "keywords": [
  5308. "filesystem",
  5309. "iterator"
  5310. ],
  5311. "time": "2017-11-27T13:52:08+00:00"
  5312. },
  5313. {
  5314. "name": "phpunit/php-text-template",
  5315. "version": "1.2.1",
  5316. "source": {
  5317. "type": "git",
  5318. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  5319. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  5320. },
  5321. "dist": {
  5322. "type": "zip",
  5323. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5324. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5325. "shasum": ""
  5326. },
  5327. "require": {
  5328. "php": ">=5.3.3"
  5329. },
  5330. "type": "library",
  5331. "autoload": {
  5332. "classmap": [
  5333. "src/"
  5334. ]
  5335. },
  5336. "notification-url": "https://packagist.org/downloads/",
  5337. "license": [
  5338. "BSD-3-Clause"
  5339. ],
  5340. "authors": [
  5341. {
  5342. "name": "Sebastian Bergmann",
  5343. "email": "sebastian@phpunit.de",
  5344. "role": "lead"
  5345. }
  5346. ],
  5347. "description": "Simple template engine.",
  5348. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  5349. "keywords": [
  5350. "template"
  5351. ],
  5352. "time": "2015-06-21T13:50:34+00:00"
  5353. },
  5354. {
  5355. "name": "phpunit/php-timer",
  5356. "version": "1.0.9",
  5357. "source": {
  5358. "type": "git",
  5359. "url": "https://github.com/sebastianbergmann/php-timer.git",
  5360. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  5361. },
  5362. "dist": {
  5363. "type": "zip",
  5364. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  5365. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  5366. "shasum": ""
  5367. },
  5368. "require": {
  5369. "php": "^5.3.3 || ^7.0"
  5370. },
  5371. "require-dev": {
  5372. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  5373. },
  5374. "type": "library",
  5375. "extra": {
  5376. "branch-alias": {
  5377. "dev-master": "1.0-dev"
  5378. }
  5379. },
  5380. "autoload": {
  5381. "classmap": [
  5382. "src/"
  5383. ]
  5384. },
  5385. "notification-url": "https://packagist.org/downloads/",
  5386. "license": [
  5387. "BSD-3-Clause"
  5388. ],
  5389. "authors": [
  5390. {
  5391. "name": "Sebastian Bergmann",
  5392. "email": "sb@sebastian-bergmann.de",
  5393. "role": "lead"
  5394. }
  5395. ],
  5396. "description": "Utility class for timing",
  5397. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  5398. "keywords": [
  5399. "timer"
  5400. ],
  5401. "time": "2017-02-26T11:10:40+00:00"
  5402. },
  5403. {
  5404. "name": "phpunit/php-token-stream",
  5405. "version": "1.4.12",
  5406. "source": {
  5407. "type": "git",
  5408. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  5409. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
  5410. },
  5411. "dist": {
  5412. "type": "zip",
  5413. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
  5414. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
  5415. "shasum": ""
  5416. },
  5417. "require": {
  5418. "ext-tokenizer": "*",
  5419. "php": ">=5.3.3"
  5420. },
  5421. "require-dev": {
  5422. "phpunit/phpunit": "~4.2"
  5423. },
  5424. "type": "library",
  5425. "extra": {
  5426. "branch-alias": {
  5427. "dev-master": "1.4-dev"
  5428. }
  5429. },
  5430. "autoload": {
  5431. "classmap": [
  5432. "src/"
  5433. ]
  5434. },
  5435. "notification-url": "https://packagist.org/downloads/",
  5436. "license": [
  5437. "BSD-3-Clause"
  5438. ],
  5439. "authors": [
  5440. {
  5441. "name": "Sebastian Bergmann",
  5442. "email": "sebastian@phpunit.de"
  5443. }
  5444. ],
  5445. "description": "Wrapper around PHP's tokenizer extension.",
  5446. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  5447. "keywords": [
  5448. "tokenizer"
  5449. ],
  5450. "time": "2017-12-04T08:55:13+00:00"
  5451. },
  5452. {
  5453. "name": "phpunit/phpunit",
  5454. "version": "4.8.36",
  5455. "source": {
  5456. "type": "git",
  5457. "url": "https://github.com/sebastianbergmann/phpunit.git",
  5458. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
  5459. },
  5460. "dist": {
  5461. "type": "zip",
  5462. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
  5463. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
  5464. "shasum": ""
  5465. },
  5466. "require": {
  5467. "ext-dom": "*",
  5468. "ext-json": "*",
  5469. "ext-pcre": "*",
  5470. "ext-reflection": "*",
  5471. "ext-spl": "*",
  5472. "php": ">=5.3.3",
  5473. "phpspec/prophecy": "^1.3.1",
  5474. "phpunit/php-code-coverage": "~2.1",
  5475. "phpunit/php-file-iterator": "~1.4",
  5476. "phpunit/php-text-template": "~1.2",
  5477. "phpunit/php-timer": "^1.0.6",
  5478. "phpunit/phpunit-mock-objects": "~2.3",
  5479. "sebastian/comparator": "~1.2.2",
  5480. "sebastian/diff": "~1.2",
  5481. "sebastian/environment": "~1.3",
  5482. "sebastian/exporter": "~1.2",
  5483. "sebastian/global-state": "~1.0",
  5484. "sebastian/version": "~1.0",
  5485. "symfony/yaml": "~2.1|~3.0"
  5486. },
  5487. "suggest": {
  5488. "phpunit/php-invoker": "~1.1"
  5489. },
  5490. "bin": [
  5491. "phpunit"
  5492. ],
  5493. "type": "library",
  5494. "extra": {
  5495. "branch-alias": {
  5496. "dev-master": "4.8.x-dev"
  5497. }
  5498. },
  5499. "autoload": {
  5500. "classmap": [
  5501. "src/"
  5502. ]
  5503. },
  5504. "notification-url": "https://packagist.org/downloads/",
  5505. "license": [
  5506. "BSD-3-Clause"
  5507. ],
  5508. "authors": [
  5509. {
  5510. "name": "Sebastian Bergmann",
  5511. "email": "sebastian@phpunit.de",
  5512. "role": "lead"
  5513. }
  5514. ],
  5515. "description": "The PHP Unit Testing framework.",
  5516. "homepage": "https://phpunit.de/",
  5517. "keywords": [
  5518. "phpunit",
  5519. "testing",
  5520. "xunit"
  5521. ],
  5522. "time": "2017-06-21T08:07:12+00:00"
  5523. },
  5524. {
  5525. "name": "phpunit/phpunit-mock-objects",
  5526. "version": "2.3.8",
  5527. "source": {
  5528. "type": "git",
  5529. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  5530. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  5531. },
  5532. "dist": {
  5533. "type": "zip",
  5534. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  5535. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  5536. "shasum": ""
  5537. },
  5538. "require": {
  5539. "doctrine/instantiator": "^1.0.2",
  5540. "php": ">=5.3.3",
  5541. "phpunit/php-text-template": "~1.2",
  5542. "sebastian/exporter": "~1.2"
  5543. },
  5544. "require-dev": {
  5545. "phpunit/phpunit": "~4.4"
  5546. },
  5547. "suggest": {
  5548. "ext-soap": "*"
  5549. },
  5550. "type": "library",
  5551. "extra": {
  5552. "branch-alias": {
  5553. "dev-master": "2.3.x-dev"
  5554. }
  5555. },
  5556. "autoload": {
  5557. "classmap": [
  5558. "src/"
  5559. ]
  5560. },
  5561. "notification-url": "https://packagist.org/downloads/",
  5562. "license": [
  5563. "BSD-3-Clause"
  5564. ],
  5565. "authors": [
  5566. {
  5567. "name": "Sebastian Bergmann",
  5568. "email": "sb@sebastian-bergmann.de",
  5569. "role": "lead"
  5570. }
  5571. ],
  5572. "description": "Mock Object library for PHPUnit",
  5573. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  5574. "keywords": [
  5575. "mock",
  5576. "xunit"
  5577. ],
  5578. "time": "2015-10-02T06:51:40+00:00"
  5579. },
  5580. {
  5581. "name": "sebastian/comparator",
  5582. "version": "1.2.4",
  5583. "source": {
  5584. "type": "git",
  5585. "url": "https://github.com/sebastianbergmann/comparator.git",
  5586. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  5587. },
  5588. "dist": {
  5589. "type": "zip",
  5590. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  5591. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  5592. "shasum": ""
  5593. },
  5594. "require": {
  5595. "php": ">=5.3.3",
  5596. "sebastian/diff": "~1.2",
  5597. "sebastian/exporter": "~1.2 || ~2.0"
  5598. },
  5599. "require-dev": {
  5600. "phpunit/phpunit": "~4.4"
  5601. },
  5602. "type": "library",
  5603. "extra": {
  5604. "branch-alias": {
  5605. "dev-master": "1.2.x-dev"
  5606. }
  5607. },
  5608. "autoload": {
  5609. "classmap": [
  5610. "src/"
  5611. ]
  5612. },
  5613. "notification-url": "https://packagist.org/downloads/",
  5614. "license": [
  5615. "BSD-3-Clause"
  5616. ],
  5617. "authors": [
  5618. {
  5619. "name": "Jeff Welch",
  5620. "email": "whatthejeff@gmail.com"
  5621. },
  5622. {
  5623. "name": "Volker Dusch",
  5624. "email": "github@wallbash.com"
  5625. },
  5626. {
  5627. "name": "Bernhard Schussek",
  5628. "email": "bschussek@2bepublished.at"
  5629. },
  5630. {
  5631. "name": "Sebastian Bergmann",
  5632. "email": "sebastian@phpunit.de"
  5633. }
  5634. ],
  5635. "description": "Provides the functionality to compare PHP values for equality",
  5636. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  5637. "keywords": [
  5638. "comparator",
  5639. "compare",
  5640. "equality"
  5641. ],
  5642. "time": "2017-01-29T09:50:25+00:00"
  5643. },
  5644. {
  5645. "name": "sebastian/diff",
  5646. "version": "1.4.3",
  5647. "source": {
  5648. "type": "git",
  5649. "url": "https://github.com/sebastianbergmann/diff.git",
  5650. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  5651. },
  5652. "dist": {
  5653. "type": "zip",
  5654. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  5655. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  5656. "shasum": ""
  5657. },
  5658. "require": {
  5659. "php": "^5.3.3 || ^7.0"
  5660. },
  5661. "require-dev": {
  5662. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  5663. },
  5664. "type": "library",
  5665. "extra": {
  5666. "branch-alias": {
  5667. "dev-master": "1.4-dev"
  5668. }
  5669. },
  5670. "autoload": {
  5671. "classmap": [
  5672. "src/"
  5673. ]
  5674. },
  5675. "notification-url": "https://packagist.org/downloads/",
  5676. "license": [
  5677. "BSD-3-Clause"
  5678. ],
  5679. "authors": [
  5680. {
  5681. "name": "Kore Nordmann",
  5682. "email": "mail@kore-nordmann.de"
  5683. },
  5684. {
  5685. "name": "Sebastian Bergmann",
  5686. "email": "sebastian@phpunit.de"
  5687. }
  5688. ],
  5689. "description": "Diff implementation",
  5690. "homepage": "https://github.com/sebastianbergmann/diff",
  5691. "keywords": [
  5692. "diff"
  5693. ],
  5694. "time": "2017-05-22T07:24:03+00:00"
  5695. },
  5696. {
  5697. "name": "sebastian/environment",
  5698. "version": "1.3.8",
  5699. "source": {
  5700. "type": "git",
  5701. "url": "https://github.com/sebastianbergmann/environment.git",
  5702. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  5703. },
  5704. "dist": {
  5705. "type": "zip",
  5706. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  5707. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  5708. "shasum": ""
  5709. },
  5710. "require": {
  5711. "php": "^5.3.3 || ^7.0"
  5712. },
  5713. "require-dev": {
  5714. "phpunit/phpunit": "^4.8 || ^5.0"
  5715. },
  5716. "type": "library",
  5717. "extra": {
  5718. "branch-alias": {
  5719. "dev-master": "1.3.x-dev"
  5720. }
  5721. },
  5722. "autoload": {
  5723. "classmap": [
  5724. "src/"
  5725. ]
  5726. },
  5727. "notification-url": "https://packagist.org/downloads/",
  5728. "license": [
  5729. "BSD-3-Clause"
  5730. ],
  5731. "authors": [
  5732. {
  5733. "name": "Sebastian Bergmann",
  5734. "email": "sebastian@phpunit.de"
  5735. }
  5736. ],
  5737. "description": "Provides functionality to handle HHVM/PHP environments",
  5738. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5739. "keywords": [
  5740. "Xdebug",
  5741. "environment",
  5742. "hhvm"
  5743. ],
  5744. "time": "2016-08-18T05:49:44+00:00"
  5745. },
  5746. {
  5747. "name": "sebastian/exporter",
  5748. "version": "1.2.2",
  5749. "source": {
  5750. "type": "git",
  5751. "url": "https://github.com/sebastianbergmann/exporter.git",
  5752. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  5753. },
  5754. "dist": {
  5755. "type": "zip",
  5756. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  5757. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  5758. "shasum": ""
  5759. },
  5760. "require": {
  5761. "php": ">=5.3.3",
  5762. "sebastian/recursion-context": "~1.0"
  5763. },
  5764. "require-dev": {
  5765. "ext-mbstring": "*",
  5766. "phpunit/phpunit": "~4.4"
  5767. },
  5768. "type": "library",
  5769. "extra": {
  5770. "branch-alias": {
  5771. "dev-master": "1.3.x-dev"
  5772. }
  5773. },
  5774. "autoload": {
  5775. "classmap": [
  5776. "src/"
  5777. ]
  5778. },
  5779. "notification-url": "https://packagist.org/downloads/",
  5780. "license": [
  5781. "BSD-3-Clause"
  5782. ],
  5783. "authors": [
  5784. {
  5785. "name": "Jeff Welch",
  5786. "email": "whatthejeff@gmail.com"
  5787. },
  5788. {
  5789. "name": "Volker Dusch",
  5790. "email": "github@wallbash.com"
  5791. },
  5792. {
  5793. "name": "Bernhard Schussek",
  5794. "email": "bschussek@2bepublished.at"
  5795. },
  5796. {
  5797. "name": "Sebastian Bergmann",
  5798. "email": "sebastian@phpunit.de"
  5799. },
  5800. {
  5801. "name": "Adam Harvey",
  5802. "email": "aharvey@php.net"
  5803. }
  5804. ],
  5805. "description": "Provides the functionality to export PHP variables for visualization",
  5806. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  5807. "keywords": [
  5808. "export",
  5809. "exporter"
  5810. ],
  5811. "time": "2016-06-17T09:04:28+00:00"
  5812. },
  5813. {
  5814. "name": "sebastian/global-state",
  5815. "version": "1.1.1",
  5816. "source": {
  5817. "type": "git",
  5818. "url": "https://github.com/sebastianbergmann/global-state.git",
  5819. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  5820. },
  5821. "dist": {
  5822. "type": "zip",
  5823. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  5824. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  5825. "shasum": ""
  5826. },
  5827. "require": {
  5828. "php": ">=5.3.3"
  5829. },
  5830. "require-dev": {
  5831. "phpunit/phpunit": "~4.2"
  5832. },
  5833. "suggest": {
  5834. "ext-uopz": "*"
  5835. },
  5836. "type": "library",
  5837. "extra": {
  5838. "branch-alias": {
  5839. "dev-master": "1.0-dev"
  5840. }
  5841. },
  5842. "autoload": {
  5843. "classmap": [
  5844. "src/"
  5845. ]
  5846. },
  5847. "notification-url": "https://packagist.org/downloads/",
  5848. "license": [
  5849. "BSD-3-Clause"
  5850. ],
  5851. "authors": [
  5852. {
  5853. "name": "Sebastian Bergmann",
  5854. "email": "sebastian@phpunit.de"
  5855. }
  5856. ],
  5857. "description": "Snapshotting of global state",
  5858. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5859. "keywords": [
  5860. "global state"
  5861. ],
  5862. "time": "2015-10-12T03:26:01+00:00"
  5863. },
  5864. {
  5865. "name": "sebastian/recursion-context",
  5866. "version": "1.0.5",
  5867. "source": {
  5868. "type": "git",
  5869. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5870. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
  5871. },
  5872. "dist": {
  5873. "type": "zip",
  5874. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  5875. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  5876. "shasum": ""
  5877. },
  5878. "require": {
  5879. "php": ">=5.3.3"
  5880. },
  5881. "require-dev": {
  5882. "phpunit/phpunit": "~4.4"
  5883. },
  5884. "type": "library",
  5885. "extra": {
  5886. "branch-alias": {
  5887. "dev-master": "1.0.x-dev"
  5888. }
  5889. },
  5890. "autoload": {
  5891. "classmap": [
  5892. "src/"
  5893. ]
  5894. },
  5895. "notification-url": "https://packagist.org/downloads/",
  5896. "license": [
  5897. "BSD-3-Clause"
  5898. ],
  5899. "authors": [
  5900. {
  5901. "name": "Jeff Welch",
  5902. "email": "whatthejeff@gmail.com"
  5903. },
  5904. {
  5905. "name": "Sebastian Bergmann",
  5906. "email": "sebastian@phpunit.de"
  5907. },
  5908. {
  5909. "name": "Adam Harvey",
  5910. "email": "aharvey@php.net"
  5911. }
  5912. ],
  5913. "description": "Provides functionality to recursively process PHP variables",
  5914. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5915. "time": "2016-10-03T07:41:43+00:00"
  5916. },
  5917. {
  5918. "name": "squizlabs/php_codesniffer",
  5919. "version": "2.9.1",
  5920. "source": {
  5921. "type": "git",
  5922. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  5923. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62"
  5924. },
  5925. "dist": {
  5926. "type": "zip",
  5927. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dcbed1074f8244661eecddfc2a675430d8d33f62",
  5928. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62",
  5929. "shasum": ""
  5930. },
  5931. "require": {
  5932. "ext-simplexml": "*",
  5933. "ext-tokenizer": "*",
  5934. "ext-xmlwriter": "*",
  5935. "php": ">=5.1.2"
  5936. },
  5937. "require-dev": {
  5938. "phpunit/phpunit": "~4.0"
  5939. },
  5940. "bin": [
  5941. "scripts/phpcs",
  5942. "scripts/phpcbf"
  5943. ],
  5944. "type": "library",
  5945. "extra": {
  5946. "branch-alias": {
  5947. "dev-master": "2.x-dev"
  5948. }
  5949. },
  5950. "autoload": {
  5951. "classmap": [
  5952. "CodeSniffer.php",
  5953. "CodeSniffer/CLI.php",
  5954. "CodeSniffer/Exception.php",
  5955. "CodeSniffer/File.php",
  5956. "CodeSniffer/Fixer.php",
  5957. "CodeSniffer/Report.php",
  5958. "CodeSniffer/Reporting.php",
  5959. "CodeSniffer/Sniff.php",
  5960. "CodeSniffer/Tokens.php",
  5961. "CodeSniffer/Reports/",
  5962. "CodeSniffer/Tokenizers/",
  5963. "CodeSniffer/DocGenerators/",
  5964. "CodeSniffer/Standards/AbstractPatternSniff.php",
  5965. "CodeSniffer/Standards/AbstractScopeSniff.php",
  5966. "CodeSniffer/Standards/AbstractVariableSniff.php",
  5967. "CodeSniffer/Standards/IncorrectPatternException.php",
  5968. "CodeSniffer/Standards/Generic/Sniffs/",
  5969. "CodeSniffer/Standards/MySource/Sniffs/",
  5970. "CodeSniffer/Standards/PEAR/Sniffs/",
  5971. "CodeSniffer/Standards/PSR1/Sniffs/",
  5972. "CodeSniffer/Standards/PSR2/Sniffs/",
  5973. "CodeSniffer/Standards/Squiz/Sniffs/",
  5974. "CodeSniffer/Standards/Zend/Sniffs/"
  5975. ]
  5976. },
  5977. "notification-url": "https://packagist.org/downloads/",
  5978. "license": [
  5979. "BSD-3-Clause"
  5980. ],
  5981. "authors": [
  5982. {
  5983. "name": "Greg Sherwood",
  5984. "role": "lead"
  5985. }
  5986. ],
  5987. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  5988. "homepage": "http://www.squizlabs.com/php-codesniffer",
  5989. "keywords": [
  5990. "phpcs",
  5991. "standards"
  5992. ],
  5993. "time": "2017-05-22T02:43:20+00:00"
  5994. },
  5995. {
  5996. "name": "symfony/browser-kit",
  5997. "version": "v3.4.6",
  5998. "source": {
  5999. "type": "git",
  6000. "url": "https://github.com/symfony/browser-kit.git",
  6001. "reference": "490f27762705c8489bd042fe3e9377a191dba9b4"
  6002. },
  6003. "dist": {
  6004. "type": "zip",
  6005. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/490f27762705c8489bd042fe3e9377a191dba9b4",
  6006. "reference": "490f27762705c8489bd042fe3e9377a191dba9b4",
  6007. "shasum": ""
  6008. },
  6009. "require": {
  6010. "php": "^5.5.9|>=7.0.8",
  6011. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  6012. },
  6013. "require-dev": {
  6014. "symfony/css-selector": "~2.8|~3.0|~4.0",
  6015. "symfony/process": "~2.8|~3.0|~4.0"
  6016. },
  6017. "suggest": {
  6018. "symfony/process": ""
  6019. },
  6020. "type": "library",
  6021. "extra": {
  6022. "branch-alias": {
  6023. "dev-master": "3.4-dev"
  6024. }
  6025. },
  6026. "autoload": {
  6027. "psr-4": {
  6028. "Symfony\\Component\\BrowserKit\\": ""
  6029. },
  6030. "exclude-from-classmap": [
  6031. "/Tests/"
  6032. ]
  6033. },
  6034. "notification-url": "https://packagist.org/downloads/",
  6035. "license": [
  6036. "MIT"
  6037. ],
  6038. "authors": [
  6039. {
  6040. "name": "Fabien Potencier",
  6041. "email": "fabien@symfony.com"
  6042. },
  6043. {
  6044. "name": "Symfony Community",
  6045. "homepage": "https://symfony.com/contributors"
  6046. }
  6047. ],
  6048. "description": "Symfony BrowserKit Component",
  6049. "homepage": "https://symfony.com",
  6050. "time": "2018-01-03T07:37:34+00:00"
  6051. },
  6052. {
  6053. "name": "symfony/phpunit-bridge",
  6054. "version": "v3.2.14",
  6055. "source": {
  6056. "type": "git",
  6057. "url": "https://github.com/symfony/phpunit-bridge.git",
  6058. "reference": "9e5c470da4b1e3e9cd8e29fecbd7c91eb961d15f"
  6059. },
  6060. "dist": {
  6061. "type": "zip",
  6062. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/9e5c470da4b1e3e9cd8e29fecbd7c91eb961d15f",
  6063. "reference": "9e5c470da4b1e3e9cd8e29fecbd7c91eb961d15f",
  6064. "shasum": ""
  6065. },
  6066. "require": {
  6067. "php": ">=5.3.3"
  6068. },
  6069. "conflict": {
  6070. "phpunit/phpunit": ">=6.0"
  6071. },
  6072. "suggest": {
  6073. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  6074. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  6075. },
  6076. "bin": [
  6077. "bin/simple-phpunit"
  6078. ],
  6079. "type": "symfony-bridge",
  6080. "extra": {
  6081. "branch-alias": {
  6082. "dev-master": "3.2-dev"
  6083. }
  6084. },
  6085. "autoload": {
  6086. "files": [
  6087. "bootstrap.php"
  6088. ],
  6089. "psr-4": {
  6090. "Symfony\\Bridge\\PhpUnit\\": ""
  6091. },
  6092. "exclude-from-classmap": [
  6093. "/Tests/"
  6094. ]
  6095. },
  6096. "notification-url": "https://packagist.org/downloads/",
  6097. "license": [
  6098. "MIT"
  6099. ],
  6100. "authors": [
  6101. {
  6102. "name": "Nicolas Grekas",
  6103. "email": "p@tchwork.com"
  6104. },
  6105. {
  6106. "name": "Symfony Community",
  6107. "homepage": "https://symfony.com/contributors"
  6108. }
  6109. ],
  6110. "description": "Symfony PHPUnit Bridge",
  6111. "homepage": "https://symfony.com",
  6112. "time": "2017-06-02T09:43:35+00:00"
  6113. }
  6114. ],
  6115. "aliases": [],
  6116. "minimum-stability": "dev",
  6117. "stability-flags": {
  6118. "behat/mink": 20
  6119. },
  6120. "prefer-stable": true,
  6121. "prefer-lowest": false,
  6122. "platform": {
  6123. "php": ">=5.5.9"
  6124. },
  6125. "platform-dev": []
  6126. }