composer.lock 248 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005
  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": "1bab5eb19bf023d0d3e4d5d078f35827",
  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.2.0",
  503. "source": {
  504. "type": "git",
  505. "url": "https://github.com/consolidation/output-formatters.git",
  506. "reference": "da889e4bce19f145ca4ec5b1725a946f4eb625a9"
  507. },
  508. "dist": {
  509. "type": "zip",
  510. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/da889e4bce19f145ca4ec5b1725a946f4eb625a9",
  511. "reference": "da889e4bce19f145ca4ec5b1725a946f4eb625a9",
  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. "g-1-a/composer-test-scenarios": "^2",
  521. "phpunit/phpunit": "^5.7.27",
  522. "satooshi/php-coveralls": "^2",
  523. "squizlabs/php_codesniffer": "^2.7",
  524. "symfony/console": "3.2.3",
  525. "symfony/var-dumper": "^2.8|^3|^4",
  526. "victorjonsson/markdowndocs": "^1.3"
  527. },
  528. "suggest": {
  529. "symfony/var-dumper": "For using the var_dump formatter"
  530. },
  531. "type": "library",
  532. "extra": {
  533. "branch-alias": {
  534. "dev-master": "3.x-dev"
  535. }
  536. },
  537. "autoload": {
  538. "psr-4": {
  539. "Consolidation\\OutputFormatters\\": "src"
  540. }
  541. },
  542. "notification-url": "https://packagist.org/downloads/",
  543. "license": [
  544. "MIT"
  545. ],
  546. "authors": [
  547. {
  548. "name": "Greg Anderson",
  549. "email": "greg.1.anderson@greenknowe.org"
  550. }
  551. ],
  552. "description": "Format text by applying transformations provided by plug-in formatters.",
  553. "time": "2018-03-20T15:18:32+00:00"
  554. },
  555. {
  556. "name": "consolidation/robo",
  557. "version": "1.2.2",
  558. "source": {
  559. "type": "git",
  560. "url": "https://github.com/consolidation/Robo.git",
  561. "reference": "9ef2724f72feb017517a755564516dbde99e15e4"
  562. },
  563. "dist": {
  564. "type": "zip",
  565. "url": "https://api.github.com/repos/consolidation/Robo/zipball/9ef2724f72feb017517a755564516dbde99e15e4",
  566. "reference": "9ef2724f72feb017517a755564516dbde99e15e4",
  567. "shasum": ""
  568. },
  569. "require": {
  570. "consolidation/annotated-command": "^2.8.2",
  571. "consolidation/config": "^1.0.1",
  572. "consolidation/log": "~1",
  573. "consolidation/output-formatters": "^3.1.13",
  574. "grasmash/yaml-expander": "^1.3",
  575. "league/container": "^2.2",
  576. "php": ">=5.5.0",
  577. "symfony/console": "^2.8|^3|^4",
  578. "symfony/event-dispatcher": "^2.5|^3|^4",
  579. "symfony/filesystem": "^2.5|^3|^4",
  580. "symfony/finder": "^2.5|^3|^4",
  581. "symfony/process": "^2.5|^3|^4"
  582. },
  583. "replace": {
  584. "codegyre/robo": "< 1.0"
  585. },
  586. "require-dev": {
  587. "codeception/aspect-mock": "^1|^2.1.1",
  588. "codeception/base": "^2.3.7",
  589. "codeception/verify": "^0.3.2",
  590. "goaop/framework": "~2.1.2",
  591. "greg-1-anderson/composer-test-scenarios": "^1",
  592. "natxet/cssmin": "3.0.4",
  593. "patchwork/jsqueeze": "~2",
  594. "pear/archive_tar": "^1.4.2",
  595. "phpunit/php-code-coverage": "~2|~4",
  596. "satooshi/php-coveralls": "^2",
  597. "squizlabs/php_codesniffer": "^2.8"
  598. },
  599. "suggest": {
  600. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  601. "natxet/CssMin": "For minifying CSS files in taskMinify",
  602. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  603. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  604. },
  605. "bin": [
  606. "robo"
  607. ],
  608. "type": "library",
  609. "extra": {
  610. "branch-alias": {
  611. "dev-master": "1.x-dev",
  612. "dev-state": "1.x-dev"
  613. }
  614. },
  615. "autoload": {
  616. "psr-4": {
  617. "Robo\\": "src"
  618. }
  619. },
  620. "notification-url": "https://packagist.org/downloads/",
  621. "license": [
  622. "MIT"
  623. ],
  624. "authors": [
  625. {
  626. "name": "Davert",
  627. "email": "davert.php@resend.cc"
  628. }
  629. ],
  630. "description": "Modern task runner",
  631. "time": "2018-02-28T01:03:54+00:00"
  632. },
  633. {
  634. "name": "container-interop/container-interop",
  635. "version": "1.2.0",
  636. "source": {
  637. "type": "git",
  638. "url": "https://github.com/container-interop/container-interop.git",
  639. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  640. },
  641. "dist": {
  642. "type": "zip",
  643. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  644. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  645. "shasum": ""
  646. },
  647. "require": {
  648. "psr/container": "^1.0"
  649. },
  650. "type": "library",
  651. "autoload": {
  652. "psr-4": {
  653. "Interop\\Container\\": "src/Interop/Container/"
  654. }
  655. },
  656. "notification-url": "https://packagist.org/downloads/",
  657. "license": [
  658. "MIT"
  659. ],
  660. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  661. "homepage": "https://github.com/container-interop/container-interop",
  662. "time": "2017-02-14T19:40:03+00:00"
  663. },
  664. {
  665. "name": "dflydev/dot-access-configuration",
  666. "version": "v1.0.2",
  667. "source": {
  668. "type": "git",
  669. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  670. "reference": "ae6e7138b1d9063d343322cca63994ee1ac5161d"
  671. },
  672. "dist": {
  673. "type": "zip",
  674. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/ae6e7138b1d9063d343322cca63994ee1ac5161d",
  675. "reference": "ae6e7138b1d9063d343322cca63994ee1ac5161d",
  676. "shasum": ""
  677. },
  678. "require": {
  679. "dflydev/dot-access-data": "1.*",
  680. "dflydev/placeholder-resolver": "1.*",
  681. "php": ">=5.3.2"
  682. },
  683. "require-dev": {
  684. "symfony/yaml": "~2.1"
  685. },
  686. "suggest": {
  687. "symfony/yaml": "Required for using the YAML Configuration Builders"
  688. },
  689. "type": "library",
  690. "extra": {
  691. "branch-alias": {
  692. "dev-master": "1.0-dev"
  693. }
  694. },
  695. "autoload": {
  696. "psr-0": {
  697. "Dflydev\\DotAccessConfiguration": "src"
  698. }
  699. },
  700. "notification-url": "https://packagist.org/downloads/",
  701. "license": [
  702. "MIT"
  703. ],
  704. "authors": [
  705. {
  706. "name": "Dragonfly Development Inc.",
  707. "email": "info@dflydev.com",
  708. "homepage": "http://dflydev.com"
  709. },
  710. {
  711. "name": "Beau Simensen",
  712. "email": "beau@dflydev.com",
  713. "homepage": "http://beausimensen.com"
  714. }
  715. ],
  716. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  717. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  718. "keywords": [
  719. "config",
  720. "configuration"
  721. ],
  722. "time": "2016-12-12T17:43:40+00:00"
  723. },
  724. {
  725. "name": "dflydev/dot-access-data",
  726. "version": "v1.1.0",
  727. "source": {
  728. "type": "git",
  729. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  730. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  731. },
  732. "dist": {
  733. "type": "zip",
  734. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  735. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  736. "shasum": ""
  737. },
  738. "require": {
  739. "php": ">=5.3.2"
  740. },
  741. "type": "library",
  742. "extra": {
  743. "branch-alias": {
  744. "dev-master": "1.0-dev"
  745. }
  746. },
  747. "autoload": {
  748. "psr-0": {
  749. "Dflydev\\DotAccessData": "src"
  750. }
  751. },
  752. "notification-url": "https://packagist.org/downloads/",
  753. "license": [
  754. "MIT"
  755. ],
  756. "authors": [
  757. {
  758. "name": "Dragonfly Development Inc.",
  759. "email": "info@dflydev.com",
  760. "homepage": "http://dflydev.com"
  761. },
  762. {
  763. "name": "Beau Simensen",
  764. "email": "beau@dflydev.com",
  765. "homepage": "http://beausimensen.com"
  766. },
  767. {
  768. "name": "Carlos Frutos",
  769. "email": "carlos@kiwing.it",
  770. "homepage": "https://github.com/cfrutos"
  771. }
  772. ],
  773. "description": "Given a deep data structure, access data by dot notation.",
  774. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  775. "keywords": [
  776. "access",
  777. "data",
  778. "dot",
  779. "notation"
  780. ],
  781. "time": "2017-01-20T21:14:22+00:00"
  782. },
  783. {
  784. "name": "dflydev/placeholder-resolver",
  785. "version": "v1.0.2",
  786. "source": {
  787. "type": "git",
  788. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  789. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  790. },
  791. "dist": {
  792. "type": "zip",
  793. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  794. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  795. "shasum": ""
  796. },
  797. "require": {
  798. "php": ">=5.3.2"
  799. },
  800. "type": "library",
  801. "extra": {
  802. "branch-alias": {
  803. "dev-master": "1.0-dev"
  804. }
  805. },
  806. "autoload": {
  807. "psr-0": {
  808. "Dflydev\\PlaceholderResolver": "src"
  809. }
  810. },
  811. "notification-url": "https://packagist.org/downloads/",
  812. "license": [
  813. "MIT"
  814. ],
  815. "authors": [
  816. {
  817. "name": "Dragonfly Development Inc.",
  818. "email": "info@dflydev.com",
  819. "homepage": "http://dflydev.com"
  820. },
  821. {
  822. "name": "Beau Simensen",
  823. "email": "beau@dflydev.com",
  824. "homepage": "http://beausimensen.com"
  825. }
  826. ],
  827. "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.",
  828. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  829. "keywords": [
  830. "placeholder",
  831. "resolver"
  832. ],
  833. "time": "2012-10-28T21:08:28+00:00"
  834. },
  835. {
  836. "name": "dnoegel/php-xdg-base-dir",
  837. "version": "0.1",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  841. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  846. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "php": ">=5.3.2"
  851. },
  852. "require-dev": {
  853. "phpunit/phpunit": "@stable"
  854. },
  855. "type": "project",
  856. "autoload": {
  857. "psr-4": {
  858. "XdgBaseDir\\": "src/"
  859. }
  860. },
  861. "notification-url": "https://packagist.org/downloads/",
  862. "license": [
  863. "MIT"
  864. ],
  865. "description": "implementation of xdg base directory specification for php",
  866. "time": "2014-10-24T07:27:01+00:00"
  867. },
  868. {
  869. "name": "doctrine/annotations",
  870. "version": "v1.2.7",
  871. "source": {
  872. "type": "git",
  873. "url": "https://github.com/doctrine/annotations.git",
  874. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  875. },
  876. "dist": {
  877. "type": "zip",
  878. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  879. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  880. "shasum": ""
  881. },
  882. "require": {
  883. "doctrine/lexer": "1.*",
  884. "php": ">=5.3.2"
  885. },
  886. "require-dev": {
  887. "doctrine/cache": "1.*",
  888. "phpunit/phpunit": "4.*"
  889. },
  890. "type": "library",
  891. "extra": {
  892. "branch-alias": {
  893. "dev-master": "1.3.x-dev"
  894. }
  895. },
  896. "autoload": {
  897. "psr-0": {
  898. "Doctrine\\Common\\Annotations\\": "lib/"
  899. }
  900. },
  901. "notification-url": "https://packagist.org/downloads/",
  902. "license": [
  903. "MIT"
  904. ],
  905. "authors": [
  906. {
  907. "name": "Roman Borschel",
  908. "email": "roman@code-factory.org"
  909. },
  910. {
  911. "name": "Benjamin Eberlei",
  912. "email": "kontakt@beberlei.de"
  913. },
  914. {
  915. "name": "Guilherme Blanco",
  916. "email": "guilhermeblanco@gmail.com"
  917. },
  918. {
  919. "name": "Jonathan Wage",
  920. "email": "jonwage@gmail.com"
  921. },
  922. {
  923. "name": "Johannes Schmitt",
  924. "email": "schmittjoh@gmail.com"
  925. }
  926. ],
  927. "description": "Docblock Annotations Parser",
  928. "homepage": "http://www.doctrine-project.org",
  929. "keywords": [
  930. "annotations",
  931. "docblock",
  932. "parser"
  933. ],
  934. "time": "2015-08-31T12:32:49+00:00"
  935. },
  936. {
  937. "name": "doctrine/cache",
  938. "version": "v1.6.2",
  939. "source": {
  940. "type": "git",
  941. "url": "https://github.com/doctrine/cache.git",
  942. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  943. },
  944. "dist": {
  945. "type": "zip",
  946. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  947. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  948. "shasum": ""
  949. },
  950. "require": {
  951. "php": "~5.5|~7.0"
  952. },
  953. "conflict": {
  954. "doctrine/common": ">2.2,<2.4"
  955. },
  956. "require-dev": {
  957. "phpunit/phpunit": "~4.8|~5.0",
  958. "predis/predis": "~1.0",
  959. "satooshi/php-coveralls": "~0.6"
  960. },
  961. "type": "library",
  962. "extra": {
  963. "branch-alias": {
  964. "dev-master": "1.6.x-dev"
  965. }
  966. },
  967. "autoload": {
  968. "psr-4": {
  969. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "MIT"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Roman Borschel",
  979. "email": "roman@code-factory.org"
  980. },
  981. {
  982. "name": "Benjamin Eberlei",
  983. "email": "kontakt@beberlei.de"
  984. },
  985. {
  986. "name": "Guilherme Blanco",
  987. "email": "guilhermeblanco@gmail.com"
  988. },
  989. {
  990. "name": "Jonathan Wage",
  991. "email": "jonwage@gmail.com"
  992. },
  993. {
  994. "name": "Johannes Schmitt",
  995. "email": "schmittjoh@gmail.com"
  996. }
  997. ],
  998. "description": "Caching library offering an object-oriented API for many cache backends",
  999. "homepage": "http://www.doctrine-project.org",
  1000. "keywords": [
  1001. "cache",
  1002. "caching"
  1003. ],
  1004. "time": "2017-07-22T12:49:21+00:00"
  1005. },
  1006. {
  1007. "name": "doctrine/collections",
  1008. "version": "v1.4.0",
  1009. "source": {
  1010. "type": "git",
  1011. "url": "https://github.com/doctrine/collections.git",
  1012. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1013. },
  1014. "dist": {
  1015. "type": "zip",
  1016. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1017. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1018. "shasum": ""
  1019. },
  1020. "require": {
  1021. "php": "^5.6 || ^7.0"
  1022. },
  1023. "require-dev": {
  1024. "doctrine/coding-standard": "~0.1@dev",
  1025. "phpunit/phpunit": "^5.7"
  1026. },
  1027. "type": "library",
  1028. "extra": {
  1029. "branch-alias": {
  1030. "dev-master": "1.3.x-dev"
  1031. }
  1032. },
  1033. "autoload": {
  1034. "psr-0": {
  1035. "Doctrine\\Common\\Collections\\": "lib/"
  1036. }
  1037. },
  1038. "notification-url": "https://packagist.org/downloads/",
  1039. "license": [
  1040. "MIT"
  1041. ],
  1042. "authors": [
  1043. {
  1044. "name": "Roman Borschel",
  1045. "email": "roman@code-factory.org"
  1046. },
  1047. {
  1048. "name": "Benjamin Eberlei",
  1049. "email": "kontakt@beberlei.de"
  1050. },
  1051. {
  1052. "name": "Guilherme Blanco",
  1053. "email": "guilhermeblanco@gmail.com"
  1054. },
  1055. {
  1056. "name": "Jonathan Wage",
  1057. "email": "jonwage@gmail.com"
  1058. },
  1059. {
  1060. "name": "Johannes Schmitt",
  1061. "email": "schmittjoh@gmail.com"
  1062. }
  1063. ],
  1064. "description": "Collections Abstraction library",
  1065. "homepage": "http://www.doctrine-project.org",
  1066. "keywords": [
  1067. "array",
  1068. "collections",
  1069. "iterator"
  1070. ],
  1071. "time": "2017-01-03T10:49:41+00:00"
  1072. },
  1073. {
  1074. "name": "doctrine/common",
  1075. "version": "v2.7.3",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/doctrine/common.git",
  1079. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1084. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "doctrine/annotations": "1.*",
  1089. "doctrine/cache": "1.*",
  1090. "doctrine/collections": "1.*",
  1091. "doctrine/inflector": "1.*",
  1092. "doctrine/lexer": "1.*",
  1093. "php": "~5.6|~7.0"
  1094. },
  1095. "require-dev": {
  1096. "phpunit/phpunit": "^5.4.6"
  1097. },
  1098. "type": "library",
  1099. "extra": {
  1100. "branch-alias": {
  1101. "dev-master": "2.7.x-dev"
  1102. }
  1103. },
  1104. "autoload": {
  1105. "psr-4": {
  1106. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1107. }
  1108. },
  1109. "notification-url": "https://packagist.org/downloads/",
  1110. "license": [
  1111. "MIT"
  1112. ],
  1113. "authors": [
  1114. {
  1115. "name": "Roman Borschel",
  1116. "email": "roman@code-factory.org"
  1117. },
  1118. {
  1119. "name": "Benjamin Eberlei",
  1120. "email": "kontakt@beberlei.de"
  1121. },
  1122. {
  1123. "name": "Guilherme Blanco",
  1124. "email": "guilhermeblanco@gmail.com"
  1125. },
  1126. {
  1127. "name": "Jonathan Wage",
  1128. "email": "jonwage@gmail.com"
  1129. },
  1130. {
  1131. "name": "Johannes Schmitt",
  1132. "email": "schmittjoh@gmail.com"
  1133. }
  1134. ],
  1135. "description": "Common Library for Doctrine projects",
  1136. "homepage": "http://www.doctrine-project.org",
  1137. "keywords": [
  1138. "annotations",
  1139. "collections",
  1140. "eventmanager",
  1141. "persistence",
  1142. "spl"
  1143. ],
  1144. "time": "2017-07-22T08:35:12+00:00"
  1145. },
  1146. {
  1147. "name": "doctrine/inflector",
  1148. "version": "v1.2.0",
  1149. "source": {
  1150. "type": "git",
  1151. "url": "https://github.com/doctrine/inflector.git",
  1152. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1153. },
  1154. "dist": {
  1155. "type": "zip",
  1156. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1157. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1158. "shasum": ""
  1159. },
  1160. "require": {
  1161. "php": "^7.0"
  1162. },
  1163. "require-dev": {
  1164. "phpunit/phpunit": "^6.2"
  1165. },
  1166. "type": "library",
  1167. "extra": {
  1168. "branch-alias": {
  1169. "dev-master": "1.2.x-dev"
  1170. }
  1171. },
  1172. "autoload": {
  1173. "psr-4": {
  1174. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1175. }
  1176. },
  1177. "notification-url": "https://packagist.org/downloads/",
  1178. "license": [
  1179. "MIT"
  1180. ],
  1181. "authors": [
  1182. {
  1183. "name": "Roman Borschel",
  1184. "email": "roman@code-factory.org"
  1185. },
  1186. {
  1187. "name": "Benjamin Eberlei",
  1188. "email": "kontakt@beberlei.de"
  1189. },
  1190. {
  1191. "name": "Guilherme Blanco",
  1192. "email": "guilhermeblanco@gmail.com"
  1193. },
  1194. {
  1195. "name": "Jonathan Wage",
  1196. "email": "jonwage@gmail.com"
  1197. },
  1198. {
  1199. "name": "Johannes Schmitt",
  1200. "email": "schmittjoh@gmail.com"
  1201. }
  1202. ],
  1203. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1204. "homepage": "http://www.doctrine-project.org",
  1205. "keywords": [
  1206. "inflection",
  1207. "pluralize",
  1208. "singularize",
  1209. "string"
  1210. ],
  1211. "time": "2017-07-22T12:18:28+00:00"
  1212. },
  1213. {
  1214. "name": "doctrine/lexer",
  1215. "version": "v1.0.1",
  1216. "source": {
  1217. "type": "git",
  1218. "url": "https://github.com/doctrine/lexer.git",
  1219. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1220. },
  1221. "dist": {
  1222. "type": "zip",
  1223. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1224. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1225. "shasum": ""
  1226. },
  1227. "require": {
  1228. "php": ">=5.3.2"
  1229. },
  1230. "type": "library",
  1231. "extra": {
  1232. "branch-alias": {
  1233. "dev-master": "1.0.x-dev"
  1234. }
  1235. },
  1236. "autoload": {
  1237. "psr-0": {
  1238. "Doctrine\\Common\\Lexer\\": "lib/"
  1239. }
  1240. },
  1241. "notification-url": "https://packagist.org/downloads/",
  1242. "license": [
  1243. "MIT"
  1244. ],
  1245. "authors": [
  1246. {
  1247. "name": "Roman Borschel",
  1248. "email": "roman@code-factory.org"
  1249. },
  1250. {
  1251. "name": "Guilherme Blanco",
  1252. "email": "guilhermeblanco@gmail.com"
  1253. },
  1254. {
  1255. "name": "Johannes Schmitt",
  1256. "email": "schmittjoh@gmail.com"
  1257. }
  1258. ],
  1259. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1260. "homepage": "http://www.doctrine-project.org",
  1261. "keywords": [
  1262. "lexer",
  1263. "parser"
  1264. ],
  1265. "time": "2014-09-09T13:34:57+00:00"
  1266. },
  1267. {
  1268. "name": "drupal/console",
  1269. "version": "1.8.0",
  1270. "source": {
  1271. "type": "git",
  1272. "url": "https://github.com/hechoendrupal/drupal-console.git",
  1273. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  1274. },
  1275. "dist": {
  1276. "type": "zip",
  1277. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  1278. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  1279. "shasum": ""
  1280. },
  1281. "require": {
  1282. "alchemy/zippy": "0.4.3",
  1283. "composer/installers": "~1.0",
  1284. "doctrine/annotations": "^1.2",
  1285. "doctrine/collections": "^1.3",
  1286. "drupal/console-core": "1.8.0",
  1287. "drupal/console-extend-plugin": "~0",
  1288. "guzzlehttp/guzzle": "~6.1",
  1289. "php": "^5.5.9 || ^7.0",
  1290. "psy/psysh": "0.6.* || ~0.8",
  1291. "symfony/css-selector": "~2.8|~3.0",
  1292. "symfony/dom-crawler": "~2.8|~3.0",
  1293. "symfony/http-foundation": "~2.8|~3.0"
  1294. },
  1295. "suggest": {
  1296. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  1297. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  1298. },
  1299. "bin": [
  1300. "bin/drupal"
  1301. ],
  1302. "type": "library",
  1303. "autoload": {
  1304. "psr-4": {
  1305. "Drupal\\Console\\": "src"
  1306. }
  1307. },
  1308. "notification-url": "https://packagist.org/downloads/",
  1309. "license": [
  1310. "GPL-2.0-or-later"
  1311. ],
  1312. "authors": [
  1313. {
  1314. "name": "David Flores",
  1315. "email": "dmousex@gmail.com",
  1316. "homepage": "http://dmouse.net"
  1317. },
  1318. {
  1319. "name": "Jesus Manuel Olivas",
  1320. "email": "jesus.olivas@gmail.com",
  1321. "homepage": "http://jmolivas.com"
  1322. },
  1323. {
  1324. "name": "Eduardo Garcia",
  1325. "email": "enzo@enzolutions.com",
  1326. "homepage": "http://enzolutions.com/"
  1327. },
  1328. {
  1329. "name": "Omar Aguirre",
  1330. "email": "omersguchigu@gmail.com"
  1331. },
  1332. {
  1333. "name": "Drupal Console Contributors",
  1334. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  1335. }
  1336. ],
  1337. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  1338. "homepage": "http://drupalconsole.com/",
  1339. "keywords": [
  1340. "console",
  1341. "development",
  1342. "drupal",
  1343. "symfony"
  1344. ],
  1345. "time": "2018-03-21T20:50:16+00:00"
  1346. },
  1347. {
  1348. "name": "drupal/console-core",
  1349. "version": "1.8.0",
  1350. "source": {
  1351. "type": "git",
  1352. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  1353. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  1354. },
  1355. "dist": {
  1356. "type": "zip",
  1357. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  1358. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  1359. "shasum": ""
  1360. },
  1361. "require": {
  1362. "dflydev/dot-access-configuration": "^1.0",
  1363. "drupal/console-en": "1.8.0",
  1364. "php": "^5.5.9 || ^7.0",
  1365. "stecman/symfony-console-completion": "~0.7",
  1366. "symfony/config": "~2.8|~3.0",
  1367. "symfony/console": "~2.8|~3.0",
  1368. "symfony/debug": "~2.8|~3.0",
  1369. "symfony/dependency-injection": "~2.8|~3.0",
  1370. "symfony/event-dispatcher": "~2.8|~3.0",
  1371. "symfony/filesystem": "~2.8|~3.0",
  1372. "symfony/finder": "~2.8|~3.0",
  1373. "symfony/process": "~2.8|~3.0",
  1374. "symfony/translation": "~2.8|~3.0",
  1375. "symfony/yaml": "~2.8|~3.0",
  1376. "twig/twig": "^1.23.1",
  1377. "webflo/drupal-finder": "^1.0",
  1378. "webmozart/path-util": "^2.3"
  1379. },
  1380. "type": "library",
  1381. "autoload": {
  1382. "files": [
  1383. "src/functions.php"
  1384. ],
  1385. "psr-4": {
  1386. "Drupal\\Console\\Core\\": "src"
  1387. }
  1388. },
  1389. "notification-url": "https://packagist.org/downloads/",
  1390. "license": [
  1391. "GPL-2.0-or-later"
  1392. ],
  1393. "authors": [
  1394. {
  1395. "name": "David Flores",
  1396. "email": "dmousex@gmail.com",
  1397. "homepage": "http://dmouse.net"
  1398. },
  1399. {
  1400. "name": "Jesus Manuel Olivas",
  1401. "email": "jesus.olivas@gmail.com",
  1402. "homepage": "http://jmolivas.com"
  1403. },
  1404. {
  1405. "name": "Drupal Console Contributors",
  1406. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  1407. },
  1408. {
  1409. "name": "Eduardo Garcia",
  1410. "email": "enzo@enzolutions.com",
  1411. "homepage": "http://enzolutions.com/"
  1412. },
  1413. {
  1414. "name": "Omar Aguirre",
  1415. "email": "omersguchigu@gmail.com"
  1416. }
  1417. ],
  1418. "description": "Drupal Console Core",
  1419. "homepage": "http://drupalconsole.com/",
  1420. "keywords": [
  1421. "console",
  1422. "development",
  1423. "drupal",
  1424. "symfony"
  1425. ],
  1426. "time": "2018-03-21T19:33:23+00:00"
  1427. },
  1428. {
  1429. "name": "drupal/console-en",
  1430. "version": "1.8.0",
  1431. "source": {
  1432. "type": "git",
  1433. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  1434. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  1435. },
  1436. "dist": {
  1437. "type": "zip",
  1438. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  1439. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  1440. "shasum": ""
  1441. },
  1442. "type": "drupal-console-language",
  1443. "notification-url": "https://packagist.org/downloads/",
  1444. "license": [
  1445. "GPL-2.0-or-later"
  1446. ],
  1447. "authors": [
  1448. {
  1449. "name": "David Flores",
  1450. "email": "dmousex@gmail.com",
  1451. "homepage": "http://dmouse.net"
  1452. },
  1453. {
  1454. "name": "Jesus Manuel Olivas",
  1455. "email": "jesus.olivas@gmail.com",
  1456. "homepage": "http://jmolivas.com"
  1457. },
  1458. {
  1459. "name": "Drupal Console Contributors",
  1460. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  1461. },
  1462. {
  1463. "name": "Eduardo Garcia",
  1464. "email": "enzo@enzolutions.com",
  1465. "homepage": "http://enzolutions.com/"
  1466. },
  1467. {
  1468. "name": "Omar Aguirre",
  1469. "email": "omersguchigu@gmail.com"
  1470. }
  1471. ],
  1472. "description": "Drupal Console English Language",
  1473. "homepage": "http://drupalconsole.com/",
  1474. "keywords": [
  1475. "console",
  1476. "development",
  1477. "drupal",
  1478. "symfony"
  1479. ],
  1480. "time": "2018-03-21T19:16:27+00:00"
  1481. },
  1482. {
  1483. "name": "drupal/console-extend-plugin",
  1484. "version": "0.9.2",
  1485. "source": {
  1486. "type": "git",
  1487. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  1488. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  1489. },
  1490. "dist": {
  1491. "type": "zip",
  1492. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  1493. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  1494. "shasum": ""
  1495. },
  1496. "require": {
  1497. "composer-plugin-api": "^1.0",
  1498. "symfony/finder": "~2.7|~3.0",
  1499. "symfony/yaml": "~2.7|~3.0"
  1500. },
  1501. "type": "composer-plugin",
  1502. "extra": {
  1503. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  1504. },
  1505. "autoload": {
  1506. "psr-4": {
  1507. "Drupal\\Console\\Composer\\Plugin\\": "src"
  1508. }
  1509. },
  1510. "notification-url": "https://packagist.org/downloads/",
  1511. "license": [
  1512. "GPL-2.0+"
  1513. ],
  1514. "authors": [
  1515. {
  1516. "name": "Jesus Manuel Olivas",
  1517. "email": "jesus.olivas@gmail.com"
  1518. }
  1519. ],
  1520. "description": "Drupal Console Extend Plugin",
  1521. "time": "2017-07-28T17:11:54+00:00"
  1522. },
  1523. {
  1524. "name": "drupal/core",
  1525. "version": "8.5.1",
  1526. "source": {
  1527. "type": "git",
  1528. "url": "https://github.com/drupal/core.git",
  1529. "reference": "2aeca7dfa2661296602ac16bf9fd6085f0a121be"
  1530. },
  1531. "dist": {
  1532. "type": "zip",
  1533. "url": "https://api.github.com/repos/drupal/core/zipball/2aeca7dfa2661296602ac16bf9fd6085f0a121be",
  1534. "reference": "2aeca7dfa2661296602ac16bf9fd6085f0a121be",
  1535. "shasum": ""
  1536. },
  1537. "require": {
  1538. "asm89/stack-cors": "^1.1",
  1539. "composer/semver": "^1.0",
  1540. "doctrine/annotations": "^1.2",
  1541. "doctrine/common": "^2.5",
  1542. "easyrdf/easyrdf": "^0.9",
  1543. "egulias/email-validator": "^1.2",
  1544. "ext-date": "*",
  1545. "ext-dom": "*",
  1546. "ext-filter": "*",
  1547. "ext-gd": "*",
  1548. "ext-hash": "*",
  1549. "ext-json": "*",
  1550. "ext-pcre": "*",
  1551. "ext-pdo": "*",
  1552. "ext-session": "*",
  1553. "ext-simplexml": "*",
  1554. "ext-spl": "*",
  1555. "ext-tokenizer": "*",
  1556. "ext-xml": "*",
  1557. "guzzlehttp/guzzle": "^6.2.1",
  1558. "masterminds/html5": "^2.1",
  1559. "paragonie/random_compat": "^1.0|^2.0",
  1560. "php": "^5.5.9|>=7.0.8",
  1561. "stack/builder": "^1.0",
  1562. "symfony-cmf/routing": "^1.4",
  1563. "symfony/class-loader": "~3.4.0",
  1564. "symfony/console": "~3.4.0",
  1565. "symfony/dependency-injection": "~3.4.0",
  1566. "symfony/event-dispatcher": "~3.4.0",
  1567. "symfony/http-foundation": "~3.4.0",
  1568. "symfony/http-kernel": "~3.4.0",
  1569. "symfony/polyfill-iconv": "^1.0",
  1570. "symfony/process": "~3.4.0",
  1571. "symfony/psr-http-message-bridge": "^1.0",
  1572. "symfony/routing": "~3.4.0",
  1573. "symfony/serializer": "~3.4.0",
  1574. "symfony/translation": "~3.4.0",
  1575. "symfony/validator": "~3.4.0",
  1576. "symfony/yaml": "~3.4.5",
  1577. "twig/twig": "^1.35.0",
  1578. "zendframework/zend-diactoros": "^1.1",
  1579. "zendframework/zend-feed": "^2.4"
  1580. },
  1581. "conflict": {
  1582. "drush/drush": "<8.1.10"
  1583. },
  1584. "replace": {
  1585. "drupal/action": "self.version",
  1586. "drupal/aggregator": "self.version",
  1587. "drupal/automated_cron": "self.version",
  1588. "drupal/ban": "self.version",
  1589. "drupal/bartik": "self.version",
  1590. "drupal/basic_auth": "self.version",
  1591. "drupal/big_pipe": "self.version",
  1592. "drupal/block": "self.version",
  1593. "drupal/block_content": "self.version",
  1594. "drupal/block_place": "self.version",
  1595. "drupal/book": "self.version",
  1596. "drupal/breakpoint": "self.version",
  1597. "drupal/ckeditor": "self.version",
  1598. "drupal/classy": "self.version",
  1599. "drupal/color": "self.version",
  1600. "drupal/comment": "self.version",
  1601. "drupal/config": "self.version",
  1602. "drupal/config_translation": "self.version",
  1603. "drupal/contact": "self.version",
  1604. "drupal/content_moderation": "self.version",
  1605. "drupal/content_translation": "self.version",
  1606. "drupal/contextual": "self.version",
  1607. "drupal/core-annotation": "self.version",
  1608. "drupal/core-assertion": "self.version",
  1609. "drupal/core-bridge": "self.version",
  1610. "drupal/core-class-finder": "self.version",
  1611. "drupal/core-datetime": "self.version",
  1612. "drupal/core-dependency-injection": "self.version",
  1613. "drupal/core-diff": "self.version",
  1614. "drupal/core-discovery": "self.version",
  1615. "drupal/core-event-dispatcher": "self.version",
  1616. "drupal/core-file-cache": "self.version",
  1617. "drupal/core-filesystem": "self.version",
  1618. "drupal/core-gettext": "self.version",
  1619. "drupal/core-graph": "self.version",
  1620. "drupal/core-http-foundation": "self.version",
  1621. "drupal/core-php-storage": "self.version",
  1622. "drupal/core-plugin": "self.version",
  1623. "drupal/core-proxy-builder": "self.version",
  1624. "drupal/core-render": "self.version",
  1625. "drupal/core-serialization": "self.version",
  1626. "drupal/core-transliteration": "self.version",
  1627. "drupal/core-utility": "self.version",
  1628. "drupal/core-uuid": "self.version",
  1629. "drupal/datetime": "self.version",
  1630. "drupal/datetime_range": "self.version",
  1631. "drupal/dblog": "self.version",
  1632. "drupal/dynamic_page_cache": "self.version",
  1633. "drupal/editor": "self.version",
  1634. "drupal/entity_reference": "self.version",
  1635. "drupal/field": "self.version",
  1636. "drupal/field_layout": "self.version",
  1637. "drupal/field_ui": "self.version",
  1638. "drupal/file": "self.version",
  1639. "drupal/filter": "self.version",
  1640. "drupal/forum": "self.version",
  1641. "drupal/hal": "self.version",
  1642. "drupal/help": "self.version",
  1643. "drupal/history": "self.version",
  1644. "drupal/image": "self.version",
  1645. "drupal/inline_form_errors": "self.version",
  1646. "drupal/language": "self.version",
  1647. "drupal/layout_builder": "self.version",
  1648. "drupal/layout_discovery": "self.version",
  1649. "drupal/link": "self.version",
  1650. "drupal/locale": "self.version",
  1651. "drupal/media": "self.version",
  1652. "drupal/menu_link_content": "self.version",
  1653. "drupal/menu_ui": "self.version",
  1654. "drupal/migrate": "self.version",
  1655. "drupal/migrate_drupal": "self.version",
  1656. "drupal/migrate_drupal_ui": "self.version",
  1657. "drupal/minimal": "self.version",
  1658. "drupal/node": "self.version",
  1659. "drupal/options": "self.version",
  1660. "drupal/page_cache": "self.version",
  1661. "drupal/path": "self.version",
  1662. "drupal/quickedit": "self.version",
  1663. "drupal/rdf": "self.version",
  1664. "drupal/responsive_image": "self.version",
  1665. "drupal/rest": "self.version",
  1666. "drupal/search": "self.version",
  1667. "drupal/serialization": "self.version",
  1668. "drupal/settings_tray": "self.version",
  1669. "drupal/seven": "self.version",
  1670. "drupal/shortcut": "self.version",
  1671. "drupal/simpletest": "self.version",
  1672. "drupal/standard": "self.version",
  1673. "drupal/stark": "self.version",
  1674. "drupal/statistics": "self.version",
  1675. "drupal/syslog": "self.version",
  1676. "drupal/system": "self.version",
  1677. "drupal/taxonomy": "self.version",
  1678. "drupal/telephone": "self.version",
  1679. "drupal/text": "self.version",
  1680. "drupal/toolbar": "self.version",
  1681. "drupal/tour": "self.version",
  1682. "drupal/tracker": "self.version",
  1683. "drupal/update": "self.version",
  1684. "drupal/user": "self.version",
  1685. "drupal/views": "self.version",
  1686. "drupal/views_ui": "self.version",
  1687. "drupal/workflows": "self.version"
  1688. },
  1689. "require-dev": {
  1690. "behat/mink": "1.7.x-dev",
  1691. "behat/mink-goutte-driver": "^1.2",
  1692. "behat/mink-selenium2-driver": "1.3.x-dev",
  1693. "drupal/coder": "^8.2.12",
  1694. "jcalderonzumba/gastonjs": "^1.0.2",
  1695. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  1696. "mikey179/vfsstream": "^1.2",
  1697. "phpspec/prophecy": "^1.4",
  1698. "phpunit/phpunit": "^4.8.35 || ^6.1",
  1699. "symfony/css-selector": "^3.4.0",
  1700. "symfony/debug": "^3.4.0",
  1701. "symfony/phpunit-bridge": "^3.4.3"
  1702. },
  1703. "type": "drupal-core",
  1704. "extra": {
  1705. "merge-plugin": {
  1706. "require": [
  1707. "core/lib/Drupal/Component/Annotation/composer.json",
  1708. "core/lib/Drupal/Component/Assertion/composer.json",
  1709. "core/lib/Drupal/Component/Bridge/composer.json",
  1710. "core/lib/Drupal/Component/ClassFinder/composer.json",
  1711. "core/lib/Drupal/Component/Datetime/composer.json",
  1712. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  1713. "core/lib/Drupal/Component/Diff/composer.json",
  1714. "core/lib/Drupal/Component/Discovery/composer.json",
  1715. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  1716. "core/lib/Drupal/Component/FileCache/composer.json",
  1717. "core/lib/Drupal/Component/FileSystem/composer.json",
  1718. "core/lib/Drupal/Component/Gettext/composer.json",
  1719. "core/lib/Drupal/Component/Graph/composer.json",
  1720. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  1721. "core/lib/Drupal/Component/PhpStorage/composer.json",
  1722. "core/lib/Drupal/Component/Plugin/composer.json",
  1723. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  1724. "core/lib/Drupal/Component/Render/composer.json",
  1725. "core/lib/Drupal/Component/Serialization/composer.json",
  1726. "core/lib/Drupal/Component/Transliteration/composer.json",
  1727. "core/lib/Drupal/Component/Utility/composer.json",
  1728. "core/lib/Drupal/Component/Uuid/composer.json"
  1729. ],
  1730. "recurse": false,
  1731. "replace": false,
  1732. "merge-extra": false
  1733. }
  1734. },
  1735. "autoload": {
  1736. "psr-4": {
  1737. "Drupal\\Core\\": "lib/Drupal/Core",
  1738. "Drupal\\Component\\": "lib/Drupal/Component",
  1739. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  1740. },
  1741. "classmap": [
  1742. "lib/Drupal.php",
  1743. "lib/Drupal/Component/Utility/Timer.php",
  1744. "lib/Drupal/Component/Utility/Unicode.php",
  1745. "lib/Drupal/Core/Database/Database.php",
  1746. "lib/Drupal/Core/DrupalKernel.php",
  1747. "lib/Drupal/Core/DrupalKernelInterface.php",
  1748. "lib/Drupal/Core/Site/Settings.php"
  1749. ]
  1750. },
  1751. "notification-url": "https://packagist.org/downloads/",
  1752. "license": [
  1753. "GPL-2.0-or-later"
  1754. ],
  1755. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  1756. "time": "2018-03-27T09:58:42+00:00"
  1757. },
  1758. {
  1759. "name": "drush/drush",
  1760. "version": "9.2.3",
  1761. "source": {
  1762. "type": "git",
  1763. "url": "https://github.com/drush-ops/drush.git",
  1764. "reference": "c07b5b4527d6fb9226adaee14a33de5d4aa93ce8"
  1765. },
  1766. "dist": {
  1767. "type": "zip",
  1768. "url": "https://api.github.com/repos/drush-ops/drush/zipball/c07b5b4527d6fb9226adaee14a33de5d4aa93ce8",
  1769. "reference": "c07b5b4527d6fb9226adaee14a33de5d4aa93ce8",
  1770. "shasum": ""
  1771. },
  1772. "require": {
  1773. "chi-teck/drupal-code-generator": "^1.21.0",
  1774. "composer/semver": "^1.4",
  1775. "consolidation/annotated-command": "^2.8.1",
  1776. "consolidation/config": "^1.0.9",
  1777. "consolidation/output-formatters": "^3.1.12",
  1778. "consolidation/robo": "^1.1.5",
  1779. "ext-dom": "*",
  1780. "grasmash/yaml-expander": "^1.1.1",
  1781. "league/container": "~2",
  1782. "php": ">=5.6.0",
  1783. "psr/log": "~1.0",
  1784. "psy/psysh": "~0.6",
  1785. "sebastian/version": "^1|^2",
  1786. "symfony/config": "~2.2|^3",
  1787. "symfony/console": "~2.7|^3",
  1788. "symfony/event-dispatcher": "~2.7|^3",
  1789. "symfony/finder": "~2.7|^3",
  1790. "symfony/process": "~2.7|^3",
  1791. "symfony/var-dumper": "~2.7|^3",
  1792. "symfony/yaml": "~2.3|^3",
  1793. "webflo/drupal-finder": "^1.1",
  1794. "webmozart/path-util": "^2.1.0"
  1795. },
  1796. "require-dev": {
  1797. "lox/xhprof": "dev-master",
  1798. "phpunit/phpunit": "^4.8|^5.5.4",
  1799. "squizlabs/php_codesniffer": "^2.7"
  1800. },
  1801. "bin": [
  1802. "drush"
  1803. ],
  1804. "type": "library",
  1805. "extra": {
  1806. "branch-alias": {
  1807. "dev-master": "9.0.x-dev"
  1808. }
  1809. },
  1810. "autoload": {
  1811. "psr-4": {
  1812. "Drush\\": "src/",
  1813. "Drush\\Internal\\": "internal-copy/",
  1814. "Unish\\": "tests/"
  1815. }
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "GPL-2.0-or-later"
  1820. ],
  1821. "authors": [
  1822. {
  1823. "name": "Moshe Weitzman",
  1824. "email": "weitzman@tejasa.com"
  1825. },
  1826. {
  1827. "name": "Owen Barton",
  1828. "email": "drupal@owenbarton.com"
  1829. },
  1830. {
  1831. "name": "Greg Anderson",
  1832. "email": "greg.1.anderson@greenknowe.org"
  1833. },
  1834. {
  1835. "name": "Jonathan Araña Cruz",
  1836. "email": "jonhattan@faita.net"
  1837. },
  1838. {
  1839. "name": "Jonathan Hedstrom",
  1840. "email": "jhedstrom@gmail.com"
  1841. },
  1842. {
  1843. "name": "Christopher Gervais",
  1844. "email": "chris@ergonlogic.com"
  1845. },
  1846. {
  1847. "name": "Dave Reid",
  1848. "email": "dave@davereid.net"
  1849. },
  1850. {
  1851. "name": "Damian Lee",
  1852. "email": "damiankloip@googlemail.com"
  1853. }
  1854. ],
  1855. "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.",
  1856. "homepage": "http://www.drush.org",
  1857. "time": "2018-04-03T13:45:59+00:00"
  1858. },
  1859. {
  1860. "name": "easyrdf/easyrdf",
  1861. "version": "0.9.1",
  1862. "source": {
  1863. "type": "git",
  1864. "url": "https://github.com/njh/easyrdf.git",
  1865. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  1866. },
  1867. "dist": {
  1868. "type": "zip",
  1869. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  1870. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  1871. "shasum": ""
  1872. },
  1873. "require": {
  1874. "ext-mbstring": "*",
  1875. "ext-pcre": "*",
  1876. "php": ">=5.2.8"
  1877. },
  1878. "require-dev": {
  1879. "phpunit/phpunit": "~3.5",
  1880. "sami/sami": "~1.4",
  1881. "squizlabs/php_codesniffer": "~1.4.3"
  1882. },
  1883. "suggest": {
  1884. "ml/json-ld": "~1.0"
  1885. },
  1886. "type": "library",
  1887. "autoload": {
  1888. "psr-0": {
  1889. "EasyRdf_": "lib/"
  1890. }
  1891. },
  1892. "notification-url": "https://packagist.org/downloads/",
  1893. "license": [
  1894. "BSD-3-Clause"
  1895. ],
  1896. "authors": [
  1897. {
  1898. "name": "Nicholas Humfrey",
  1899. "email": "njh@aelius.com",
  1900. "homepage": "http://www.aelius.com/njh/",
  1901. "role": "Developer"
  1902. },
  1903. {
  1904. "name": "Alexey Zakhlestin",
  1905. "email": "indeyets@gmail.com",
  1906. "role": "Developer"
  1907. }
  1908. ],
  1909. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  1910. "homepage": "http://www.easyrdf.org/",
  1911. "keywords": [
  1912. "Linked Data",
  1913. "RDF",
  1914. "Semantic Web",
  1915. "Turtle",
  1916. "rdfa",
  1917. "sparql"
  1918. ],
  1919. "time": "2015-02-27T09:45:49+00:00"
  1920. },
  1921. {
  1922. "name": "egulias/email-validator",
  1923. "version": "1.2.14",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://github.com/egulias/EmailValidator.git",
  1927. "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/5642614492f0ca2064c01d60cc33284cc2f731a9",
  1932. "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9",
  1933. "shasum": ""
  1934. },
  1935. "require": {
  1936. "doctrine/lexer": "^1.0.1",
  1937. "php": ">= 5.3.3"
  1938. },
  1939. "require-dev": {
  1940. "phpunit/phpunit": "^4.8.24"
  1941. },
  1942. "type": "library",
  1943. "extra": {
  1944. "branch-alias": {
  1945. "dev-master": "2.0.x-dev"
  1946. }
  1947. },
  1948. "autoload": {
  1949. "psr-0": {
  1950. "Egulias\\": "src/"
  1951. }
  1952. },
  1953. "notification-url": "https://packagist.org/downloads/",
  1954. "license": [
  1955. "MIT"
  1956. ],
  1957. "authors": [
  1958. {
  1959. "name": "Eduardo Gulias Davis"
  1960. }
  1961. ],
  1962. "description": "A library for validating emails",
  1963. "homepage": "https://github.com/egulias/EmailValidator",
  1964. "keywords": [
  1965. "email",
  1966. "emailvalidation",
  1967. "emailvalidator",
  1968. "validation",
  1969. "validator"
  1970. ],
  1971. "time": "2017-02-03T22:48:59+00:00"
  1972. },
  1973. {
  1974. "name": "grasmash/expander",
  1975. "version": "1.0.0",
  1976. "source": {
  1977. "type": "git",
  1978. "url": "https://github.com/grasmash/expander.git",
  1979. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  1980. },
  1981. "dist": {
  1982. "type": "zip",
  1983. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  1984. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  1985. "shasum": ""
  1986. },
  1987. "require": {
  1988. "dflydev/dot-access-data": "^1.1.0",
  1989. "php": ">=5.4"
  1990. },
  1991. "require-dev": {
  1992. "greg-1-anderson/composer-test-scenarios": "^1",
  1993. "phpunit/phpunit": "^4|^5.5.4",
  1994. "satooshi/php-coveralls": "^1.0.2|dev-master",
  1995. "squizlabs/php_codesniffer": "^2.7"
  1996. },
  1997. "type": "library",
  1998. "extra": {
  1999. "branch-alias": {
  2000. "dev-master": "1.x-dev"
  2001. }
  2002. },
  2003. "autoload": {
  2004. "psr-4": {
  2005. "Grasmash\\Expander\\": "src/"
  2006. }
  2007. },
  2008. "notification-url": "https://packagist.org/downloads/",
  2009. "license": [
  2010. "MIT"
  2011. ],
  2012. "authors": [
  2013. {
  2014. "name": "Matthew Grasmick"
  2015. }
  2016. ],
  2017. "description": "Expands internal property references in PHP arrays file.",
  2018. "time": "2017-12-21T22:14:55+00:00"
  2019. },
  2020. {
  2021. "name": "grasmash/yaml-expander",
  2022. "version": "1.4.0",
  2023. "source": {
  2024. "type": "git",
  2025. "url": "https://github.com/grasmash/yaml-expander.git",
  2026. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  2027. },
  2028. "dist": {
  2029. "type": "zip",
  2030. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  2031. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  2032. "shasum": ""
  2033. },
  2034. "require": {
  2035. "dflydev/dot-access-data": "^1.1.0",
  2036. "php": ">=5.4",
  2037. "symfony/yaml": "^2.8.11|^3|^4"
  2038. },
  2039. "require-dev": {
  2040. "greg-1-anderson/composer-test-scenarios": "^1",
  2041. "phpunit/phpunit": "^4.8|^5.5.4",
  2042. "satooshi/php-coveralls": "^1.0.2|dev-master",
  2043. "squizlabs/php_codesniffer": "^2.7"
  2044. },
  2045. "type": "library",
  2046. "extra": {
  2047. "branch-alias": {
  2048. "dev-master": "1.x-dev"
  2049. }
  2050. },
  2051. "autoload": {
  2052. "psr-4": {
  2053. "Grasmash\\YamlExpander\\": "src/"
  2054. }
  2055. },
  2056. "notification-url": "https://packagist.org/downloads/",
  2057. "license": [
  2058. "MIT"
  2059. ],
  2060. "authors": [
  2061. {
  2062. "name": "Matthew Grasmick"
  2063. }
  2064. ],
  2065. "description": "Expands internal property references in a yaml file.",
  2066. "time": "2017-12-16T16:06:03+00:00"
  2067. },
  2068. {
  2069. "name": "guzzlehttp/guzzle",
  2070. "version": "6.3.2",
  2071. "source": {
  2072. "type": "git",
  2073. "url": "https://github.com/guzzle/guzzle.git",
  2074. "reference": "68d0ea14d5a3f42a20e87632a5f84931e2709c90"
  2075. },
  2076. "dist": {
  2077. "type": "zip",
  2078. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/68d0ea14d5a3f42a20e87632a5f84931e2709c90",
  2079. "reference": "68d0ea14d5a3f42a20e87632a5f84931e2709c90",
  2080. "shasum": ""
  2081. },
  2082. "require": {
  2083. "guzzlehttp/promises": "^1.0",
  2084. "guzzlehttp/psr7": "^1.4",
  2085. "php": ">=5.5"
  2086. },
  2087. "require-dev": {
  2088. "ext-curl": "*",
  2089. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4",
  2090. "psr/log": "^1.0"
  2091. },
  2092. "suggest": {
  2093. "psr/log": "Required for using the Log middleware"
  2094. },
  2095. "type": "library",
  2096. "extra": {
  2097. "branch-alias": {
  2098. "dev-master": "6.3-dev"
  2099. }
  2100. },
  2101. "autoload": {
  2102. "files": [
  2103. "src/functions_include.php"
  2104. ],
  2105. "psr-4": {
  2106. "GuzzleHttp\\": "src/"
  2107. }
  2108. },
  2109. "notification-url": "https://packagist.org/downloads/",
  2110. "license": [
  2111. "MIT"
  2112. ],
  2113. "authors": [
  2114. {
  2115. "name": "Michael Dowling",
  2116. "email": "mtdowling@gmail.com",
  2117. "homepage": "https://github.com/mtdowling"
  2118. }
  2119. ],
  2120. "description": "Guzzle is a PHP HTTP client library",
  2121. "homepage": "http://guzzlephp.org/",
  2122. "keywords": [
  2123. "client",
  2124. "curl",
  2125. "framework",
  2126. "http",
  2127. "http client",
  2128. "rest",
  2129. "web service"
  2130. ],
  2131. "time": "2018-03-26T16:33:04+00:00"
  2132. },
  2133. {
  2134. "name": "guzzlehttp/promises",
  2135. "version": "v1.3.1",
  2136. "source": {
  2137. "type": "git",
  2138. "url": "https://github.com/guzzle/promises.git",
  2139. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  2140. },
  2141. "dist": {
  2142. "type": "zip",
  2143. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  2144. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  2145. "shasum": ""
  2146. },
  2147. "require": {
  2148. "php": ">=5.5.0"
  2149. },
  2150. "require-dev": {
  2151. "phpunit/phpunit": "^4.0"
  2152. },
  2153. "type": "library",
  2154. "extra": {
  2155. "branch-alias": {
  2156. "dev-master": "1.4-dev"
  2157. }
  2158. },
  2159. "autoload": {
  2160. "psr-4": {
  2161. "GuzzleHttp\\Promise\\": "src/"
  2162. },
  2163. "files": [
  2164. "src/functions_include.php"
  2165. ]
  2166. },
  2167. "notification-url": "https://packagist.org/downloads/",
  2168. "license": [
  2169. "MIT"
  2170. ],
  2171. "authors": [
  2172. {
  2173. "name": "Michael Dowling",
  2174. "email": "mtdowling@gmail.com",
  2175. "homepage": "https://github.com/mtdowling"
  2176. }
  2177. ],
  2178. "description": "Guzzle promises library",
  2179. "keywords": [
  2180. "promise"
  2181. ],
  2182. "time": "2016-12-20T10:07:11+00:00"
  2183. },
  2184. {
  2185. "name": "guzzlehttp/psr7",
  2186. "version": "1.4.2",
  2187. "source": {
  2188. "type": "git",
  2189. "url": "https://github.com/guzzle/psr7.git",
  2190. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  2191. },
  2192. "dist": {
  2193. "type": "zip",
  2194. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  2195. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  2196. "shasum": ""
  2197. },
  2198. "require": {
  2199. "php": ">=5.4.0",
  2200. "psr/http-message": "~1.0"
  2201. },
  2202. "provide": {
  2203. "psr/http-message-implementation": "1.0"
  2204. },
  2205. "require-dev": {
  2206. "phpunit/phpunit": "~4.0"
  2207. },
  2208. "type": "library",
  2209. "extra": {
  2210. "branch-alias": {
  2211. "dev-master": "1.4-dev"
  2212. }
  2213. },
  2214. "autoload": {
  2215. "psr-4": {
  2216. "GuzzleHttp\\Psr7\\": "src/"
  2217. },
  2218. "files": [
  2219. "src/functions_include.php"
  2220. ]
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "MIT"
  2225. ],
  2226. "authors": [
  2227. {
  2228. "name": "Michael Dowling",
  2229. "email": "mtdowling@gmail.com",
  2230. "homepage": "https://github.com/mtdowling"
  2231. },
  2232. {
  2233. "name": "Tobias Schultze",
  2234. "homepage": "https://github.com/Tobion"
  2235. }
  2236. ],
  2237. "description": "PSR-7 message implementation that also provides common utility methods",
  2238. "keywords": [
  2239. "http",
  2240. "message",
  2241. "request",
  2242. "response",
  2243. "stream",
  2244. "uri",
  2245. "url"
  2246. ],
  2247. "time": "2017-03-20T17:10:46+00:00"
  2248. },
  2249. {
  2250. "name": "jakub-onderka/php-console-color",
  2251. "version": "0.1",
  2252. "source": {
  2253. "type": "git",
  2254. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  2255. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
  2256. },
  2257. "dist": {
  2258. "type": "zip",
  2259. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
  2260. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
  2261. "shasum": ""
  2262. },
  2263. "require": {
  2264. "php": ">=5.3.2"
  2265. },
  2266. "require-dev": {
  2267. "jakub-onderka/php-code-style": "1.0",
  2268. "jakub-onderka/php-parallel-lint": "0.*",
  2269. "jakub-onderka/php-var-dump-check": "0.*",
  2270. "phpunit/phpunit": "3.7.*",
  2271. "squizlabs/php_codesniffer": "1.*"
  2272. },
  2273. "type": "library",
  2274. "autoload": {
  2275. "psr-0": {
  2276. "JakubOnderka\\PhpConsoleColor": "src/"
  2277. }
  2278. },
  2279. "notification-url": "https://packagist.org/downloads/",
  2280. "license": [
  2281. "BSD-2-Clause"
  2282. ],
  2283. "authors": [
  2284. {
  2285. "name": "Jakub Onderka",
  2286. "email": "jakub.onderka@gmail.com",
  2287. "homepage": "http://www.acci.cz"
  2288. }
  2289. ],
  2290. "time": "2014-04-08T15:00:19+00:00"
  2291. },
  2292. {
  2293. "name": "jakub-onderka/php-console-highlighter",
  2294. "version": "v0.3.2",
  2295. "source": {
  2296. "type": "git",
  2297. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  2298. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
  2299. },
  2300. "dist": {
  2301. "type": "zip",
  2302. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  2303. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  2304. "shasum": ""
  2305. },
  2306. "require": {
  2307. "jakub-onderka/php-console-color": "~0.1",
  2308. "php": ">=5.3.0"
  2309. },
  2310. "require-dev": {
  2311. "jakub-onderka/php-code-style": "~1.0",
  2312. "jakub-onderka/php-parallel-lint": "~0.5",
  2313. "jakub-onderka/php-var-dump-check": "~0.1",
  2314. "phpunit/phpunit": "~4.0",
  2315. "squizlabs/php_codesniffer": "~1.5"
  2316. },
  2317. "type": "library",
  2318. "autoload": {
  2319. "psr-0": {
  2320. "JakubOnderka\\PhpConsoleHighlighter": "src/"
  2321. }
  2322. },
  2323. "notification-url": "https://packagist.org/downloads/",
  2324. "license": [
  2325. "MIT"
  2326. ],
  2327. "authors": [
  2328. {
  2329. "name": "Jakub Onderka",
  2330. "email": "acci@acci.cz",
  2331. "homepage": "http://www.acci.cz/"
  2332. }
  2333. ],
  2334. "time": "2015-04-20T18:58:01+00:00"
  2335. },
  2336. {
  2337. "name": "league/container",
  2338. "version": "2.4.1",
  2339. "source": {
  2340. "type": "git",
  2341. "url": "https://github.com/thephpleague/container.git",
  2342. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  2343. },
  2344. "dist": {
  2345. "type": "zip",
  2346. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  2347. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  2348. "shasum": ""
  2349. },
  2350. "require": {
  2351. "container-interop/container-interop": "^1.2",
  2352. "php": "^5.4.0 || ^7.0"
  2353. },
  2354. "provide": {
  2355. "container-interop/container-interop-implementation": "^1.2",
  2356. "psr/container-implementation": "^1.0"
  2357. },
  2358. "replace": {
  2359. "orno/di": "~2.0"
  2360. },
  2361. "require-dev": {
  2362. "phpunit/phpunit": "4.*"
  2363. },
  2364. "type": "library",
  2365. "extra": {
  2366. "branch-alias": {
  2367. "dev-2.x": "2.x-dev",
  2368. "dev-1.x": "1.x-dev"
  2369. }
  2370. },
  2371. "autoload": {
  2372. "psr-4": {
  2373. "League\\Container\\": "src"
  2374. }
  2375. },
  2376. "notification-url": "https://packagist.org/downloads/",
  2377. "license": [
  2378. "MIT"
  2379. ],
  2380. "authors": [
  2381. {
  2382. "name": "Phil Bennett",
  2383. "email": "philipobenito@gmail.com",
  2384. "homepage": "http://www.philipobenito.com",
  2385. "role": "Developer"
  2386. }
  2387. ],
  2388. "description": "A fast and intuitive dependency injection container.",
  2389. "homepage": "https://github.com/thephpleague/container",
  2390. "keywords": [
  2391. "container",
  2392. "dependency",
  2393. "di",
  2394. "injection",
  2395. "league",
  2396. "provider",
  2397. "service"
  2398. ],
  2399. "time": "2017-05-10T09:20:27+00:00"
  2400. },
  2401. {
  2402. "name": "masterminds/html5",
  2403. "version": "2.3.0",
  2404. "source": {
  2405. "type": "git",
  2406. "url": "https://github.com/Masterminds/html5-php.git",
  2407. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  2408. },
  2409. "dist": {
  2410. "type": "zip",
  2411. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  2412. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  2413. "shasum": ""
  2414. },
  2415. "require": {
  2416. "ext-libxml": "*",
  2417. "php": ">=5.3.0"
  2418. },
  2419. "require-dev": {
  2420. "phpunit/phpunit": "4.*",
  2421. "sami/sami": "~2.0",
  2422. "satooshi/php-coveralls": "1.0.*"
  2423. },
  2424. "type": "library",
  2425. "extra": {
  2426. "branch-alias": {
  2427. "dev-master": "2.2-dev"
  2428. }
  2429. },
  2430. "autoload": {
  2431. "psr-4": {
  2432. "Masterminds\\": "src"
  2433. }
  2434. },
  2435. "notification-url": "https://packagist.org/downloads/",
  2436. "license": [
  2437. "MIT"
  2438. ],
  2439. "authors": [
  2440. {
  2441. "name": "Matt Butcher",
  2442. "email": "technosophos@gmail.com"
  2443. },
  2444. {
  2445. "name": "Asmir Mustafic",
  2446. "email": "goetas@gmail.com"
  2447. },
  2448. {
  2449. "name": "Matt Farina",
  2450. "email": "matt@mattfarina.com"
  2451. }
  2452. ],
  2453. "description": "An HTML5 parser and serializer.",
  2454. "homepage": "http://masterminds.github.io/html5-php",
  2455. "keywords": [
  2456. "HTML5",
  2457. "dom",
  2458. "html",
  2459. "parser",
  2460. "querypath",
  2461. "serializer",
  2462. "xml"
  2463. ],
  2464. "time": "2017-09-04T12:26:28+00:00"
  2465. },
  2466. {
  2467. "name": "nikic/php-parser",
  2468. "version": "v3.1.5",
  2469. "source": {
  2470. "type": "git",
  2471. "url": "https://github.com/nikic/PHP-Parser.git",
  2472. "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce"
  2473. },
  2474. "dist": {
  2475. "type": "zip",
  2476. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bb87e28e7d7b8d9a7fda231d37457c9210faf6ce",
  2477. "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce",
  2478. "shasum": ""
  2479. },
  2480. "require": {
  2481. "ext-tokenizer": "*",
  2482. "php": ">=5.5"
  2483. },
  2484. "require-dev": {
  2485. "phpunit/phpunit": "~4.0|~5.0"
  2486. },
  2487. "bin": [
  2488. "bin/php-parse"
  2489. ],
  2490. "type": "library",
  2491. "extra": {
  2492. "branch-alias": {
  2493. "dev-master": "3.0-dev"
  2494. }
  2495. },
  2496. "autoload": {
  2497. "psr-4": {
  2498. "PhpParser\\": "lib/PhpParser"
  2499. }
  2500. },
  2501. "notification-url": "https://packagist.org/downloads/",
  2502. "license": [
  2503. "BSD-3-Clause"
  2504. ],
  2505. "authors": [
  2506. {
  2507. "name": "Nikita Popov"
  2508. }
  2509. ],
  2510. "description": "A PHP parser written in PHP",
  2511. "keywords": [
  2512. "parser",
  2513. "php"
  2514. ],
  2515. "time": "2018-02-28T20:30:58+00:00"
  2516. },
  2517. {
  2518. "name": "paragonie/random_compat",
  2519. "version": "v2.0.11",
  2520. "source": {
  2521. "type": "git",
  2522. "url": "https://github.com/paragonie/random_compat.git",
  2523. "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8"
  2524. },
  2525. "dist": {
  2526. "type": "zip",
  2527. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/5da4d3c796c275c55f057af5a643ae297d96b4d8",
  2528. "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8",
  2529. "shasum": ""
  2530. },
  2531. "require": {
  2532. "php": ">=5.2.0"
  2533. },
  2534. "require-dev": {
  2535. "phpunit/phpunit": "4.*|5.*"
  2536. },
  2537. "suggest": {
  2538. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2539. },
  2540. "type": "library",
  2541. "autoload": {
  2542. "files": [
  2543. "lib/random.php"
  2544. ]
  2545. },
  2546. "notification-url": "https://packagist.org/downloads/",
  2547. "license": [
  2548. "MIT"
  2549. ],
  2550. "authors": [
  2551. {
  2552. "name": "Paragon Initiative Enterprises",
  2553. "email": "security@paragonie.com",
  2554. "homepage": "https://paragonie.com"
  2555. }
  2556. ],
  2557. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2558. "keywords": [
  2559. "csprng",
  2560. "pseudorandom",
  2561. "random"
  2562. ],
  2563. "time": "2017-09-27T21:40:39+00:00"
  2564. },
  2565. {
  2566. "name": "psr/container",
  2567. "version": "1.0.0",
  2568. "source": {
  2569. "type": "git",
  2570. "url": "https://github.com/php-fig/container.git",
  2571. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2572. },
  2573. "dist": {
  2574. "type": "zip",
  2575. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2576. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2577. "shasum": ""
  2578. },
  2579. "require": {
  2580. "php": ">=5.3.0"
  2581. },
  2582. "type": "library",
  2583. "extra": {
  2584. "branch-alias": {
  2585. "dev-master": "1.0.x-dev"
  2586. }
  2587. },
  2588. "autoload": {
  2589. "psr-4": {
  2590. "Psr\\Container\\": "src/"
  2591. }
  2592. },
  2593. "notification-url": "https://packagist.org/downloads/",
  2594. "license": [
  2595. "MIT"
  2596. ],
  2597. "authors": [
  2598. {
  2599. "name": "PHP-FIG",
  2600. "homepage": "http://www.php-fig.org/"
  2601. }
  2602. ],
  2603. "description": "Common Container Interface (PHP FIG PSR-11)",
  2604. "homepage": "https://github.com/php-fig/container",
  2605. "keywords": [
  2606. "PSR-11",
  2607. "container",
  2608. "container-interface",
  2609. "container-interop",
  2610. "psr"
  2611. ],
  2612. "time": "2017-02-14T16:28:37+00:00"
  2613. },
  2614. {
  2615. "name": "psr/http-message",
  2616. "version": "1.0.1",
  2617. "source": {
  2618. "type": "git",
  2619. "url": "https://github.com/php-fig/http-message.git",
  2620. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2621. },
  2622. "dist": {
  2623. "type": "zip",
  2624. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2625. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2626. "shasum": ""
  2627. },
  2628. "require": {
  2629. "php": ">=5.3.0"
  2630. },
  2631. "type": "library",
  2632. "extra": {
  2633. "branch-alias": {
  2634. "dev-master": "1.0.x-dev"
  2635. }
  2636. },
  2637. "autoload": {
  2638. "psr-4": {
  2639. "Psr\\Http\\Message\\": "src/"
  2640. }
  2641. },
  2642. "notification-url": "https://packagist.org/downloads/",
  2643. "license": [
  2644. "MIT"
  2645. ],
  2646. "authors": [
  2647. {
  2648. "name": "PHP-FIG",
  2649. "homepage": "http://www.php-fig.org/"
  2650. }
  2651. ],
  2652. "description": "Common interface for HTTP messages",
  2653. "homepage": "https://github.com/php-fig/http-message",
  2654. "keywords": [
  2655. "http",
  2656. "http-message",
  2657. "psr",
  2658. "psr-7",
  2659. "request",
  2660. "response"
  2661. ],
  2662. "time": "2016-08-06T14:39:51+00:00"
  2663. },
  2664. {
  2665. "name": "psr/log",
  2666. "version": "1.0.2",
  2667. "source": {
  2668. "type": "git",
  2669. "url": "https://github.com/php-fig/log.git",
  2670. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  2671. },
  2672. "dist": {
  2673. "type": "zip",
  2674. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  2675. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  2676. "shasum": ""
  2677. },
  2678. "require": {
  2679. "php": ">=5.3.0"
  2680. },
  2681. "type": "library",
  2682. "extra": {
  2683. "branch-alias": {
  2684. "dev-master": "1.0.x-dev"
  2685. }
  2686. },
  2687. "autoload": {
  2688. "psr-4": {
  2689. "Psr\\Log\\": "Psr/Log/"
  2690. }
  2691. },
  2692. "notification-url": "https://packagist.org/downloads/",
  2693. "license": [
  2694. "MIT"
  2695. ],
  2696. "authors": [
  2697. {
  2698. "name": "PHP-FIG",
  2699. "homepage": "http://www.php-fig.org/"
  2700. }
  2701. ],
  2702. "description": "Common interface for logging libraries",
  2703. "homepage": "https://github.com/php-fig/log",
  2704. "keywords": [
  2705. "log",
  2706. "psr",
  2707. "psr-3"
  2708. ],
  2709. "time": "2016-10-10T12:19:37+00:00"
  2710. },
  2711. {
  2712. "name": "psy/psysh",
  2713. "version": "v0.8.18",
  2714. "source": {
  2715. "type": "git",
  2716. "url": "https://github.com/bobthecow/psysh.git",
  2717. "reference": "5357b1cffc8fb375d6a9e3c86d5c82dd38a40834"
  2718. },
  2719. "dist": {
  2720. "type": "zip",
  2721. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/5357b1cffc8fb375d6a9e3c86d5c82dd38a40834",
  2722. "reference": "5357b1cffc8fb375d6a9e3c86d5c82dd38a40834",
  2723. "shasum": ""
  2724. },
  2725. "require": {
  2726. "dnoegel/php-xdg-base-dir": "0.1",
  2727. "jakub-onderka/php-console-highlighter": "0.3.*",
  2728. "nikic/php-parser": "~1.3|~2.0|~3.0",
  2729. "php": ">=5.3.9",
  2730. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  2731. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  2732. },
  2733. "require-dev": {
  2734. "hoa/console": "~3.16|~1.14",
  2735. "phpunit/phpunit": "^4.8.35|^5.4.3",
  2736. "symfony/finder": "~2.1|~3.0|~4.0"
  2737. },
  2738. "suggest": {
  2739. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2740. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2741. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2742. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2743. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2744. },
  2745. "bin": [
  2746. "bin/psysh"
  2747. ],
  2748. "type": "library",
  2749. "extra": {
  2750. "branch-alias": {
  2751. "dev-develop": "0.8.x-dev"
  2752. }
  2753. },
  2754. "autoload": {
  2755. "files": [
  2756. "src/Psy/functions.php"
  2757. ],
  2758. "psr-4": {
  2759. "Psy\\": "src/Psy/"
  2760. }
  2761. },
  2762. "notification-url": "https://packagist.org/downloads/",
  2763. "license": [
  2764. "MIT"
  2765. ],
  2766. "authors": [
  2767. {
  2768. "name": "Justin Hileman",
  2769. "email": "justin@justinhileman.info",
  2770. "homepage": "http://justinhileman.com"
  2771. }
  2772. ],
  2773. "description": "An interactive shell for modern PHP.",
  2774. "homepage": "http://psysh.org",
  2775. "keywords": [
  2776. "REPL",
  2777. "console",
  2778. "interactive",
  2779. "shell"
  2780. ],
  2781. "time": "2018-04-02T05:41:44+00:00"
  2782. },
  2783. {
  2784. "name": "sebastian/version",
  2785. "version": "2.0.1",
  2786. "source": {
  2787. "type": "git",
  2788. "url": "https://github.com/sebastianbergmann/version.git",
  2789. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  2790. },
  2791. "dist": {
  2792. "type": "zip",
  2793. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  2794. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  2795. "shasum": ""
  2796. },
  2797. "require": {
  2798. "php": ">=5.6"
  2799. },
  2800. "type": "library",
  2801. "extra": {
  2802. "branch-alias": {
  2803. "dev-master": "2.0.x-dev"
  2804. }
  2805. },
  2806. "autoload": {
  2807. "classmap": [
  2808. "src/"
  2809. ]
  2810. },
  2811. "notification-url": "https://packagist.org/downloads/",
  2812. "license": [
  2813. "BSD-3-Clause"
  2814. ],
  2815. "authors": [
  2816. {
  2817. "name": "Sebastian Bergmann",
  2818. "email": "sebastian@phpunit.de",
  2819. "role": "lead"
  2820. }
  2821. ],
  2822. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2823. "homepage": "https://github.com/sebastianbergmann/version",
  2824. "time": "2016-10-03T07:35:21+00:00"
  2825. },
  2826. {
  2827. "name": "stack/builder",
  2828. "version": "v1.0.5",
  2829. "source": {
  2830. "type": "git",
  2831. "url": "https://github.com/stackphp/builder.git",
  2832. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  2833. },
  2834. "dist": {
  2835. "type": "zip",
  2836. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  2837. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  2838. "shasum": ""
  2839. },
  2840. "require": {
  2841. "php": ">=5.3.0",
  2842. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  2843. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  2844. },
  2845. "require-dev": {
  2846. "silex/silex": "~1.0"
  2847. },
  2848. "type": "library",
  2849. "extra": {
  2850. "branch-alias": {
  2851. "dev-master": "1.0-dev"
  2852. }
  2853. },
  2854. "autoload": {
  2855. "psr-0": {
  2856. "Stack": "src"
  2857. }
  2858. },
  2859. "notification-url": "https://packagist.org/downloads/",
  2860. "license": [
  2861. "MIT"
  2862. ],
  2863. "authors": [
  2864. {
  2865. "name": "Igor Wiedler",
  2866. "email": "igor@wiedler.ch"
  2867. }
  2868. ],
  2869. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  2870. "keywords": [
  2871. "stack"
  2872. ],
  2873. "time": "2017-11-18T14:57:29+00:00"
  2874. },
  2875. {
  2876. "name": "stecman/symfony-console-completion",
  2877. "version": "0.8.0",
  2878. "source": {
  2879. "type": "git",
  2880. "url": "https://github.com/stecman/symfony-console-completion.git",
  2881. "reference": "cd738867503477e91dbe84173dfabd431c883431"
  2882. },
  2883. "dist": {
  2884. "type": "zip",
  2885. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/cd738867503477e91dbe84173dfabd431c883431",
  2886. "reference": "cd738867503477e91dbe84173dfabd431c883431",
  2887. "shasum": ""
  2888. },
  2889. "require": {
  2890. "php": ">=5.3.2",
  2891. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  2892. },
  2893. "require-dev": {
  2894. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  2895. },
  2896. "type": "library",
  2897. "extra": {
  2898. "branch-alias": {
  2899. "dev-master": "0.6.x-dev"
  2900. }
  2901. },
  2902. "autoload": {
  2903. "psr-4": {
  2904. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  2905. }
  2906. },
  2907. "notification-url": "https://packagist.org/downloads/",
  2908. "license": [
  2909. "MIT"
  2910. ],
  2911. "authors": [
  2912. {
  2913. "name": "Stephen Holdaway",
  2914. "email": "stephen@stecman.co.nz"
  2915. }
  2916. ],
  2917. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  2918. "time": "2018-02-10T04:28:01+00:00"
  2919. },
  2920. {
  2921. "name": "symfony-cmf/routing",
  2922. "version": "1.4.1",
  2923. "source": {
  2924. "type": "git",
  2925. "url": "https://github.com/symfony-cmf/routing.git",
  2926. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  2927. },
  2928. "dist": {
  2929. "type": "zip",
  2930. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  2931. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  2932. "shasum": ""
  2933. },
  2934. "require": {
  2935. "php": "^5.3.9|^7.0",
  2936. "psr/log": "1.*",
  2937. "symfony/http-kernel": "^2.2|3.*",
  2938. "symfony/routing": "^2.2|3.*"
  2939. },
  2940. "require-dev": {
  2941. "friendsofsymfony/jsrouting-bundle": "^1.1",
  2942. "symfony-cmf/testing": "^1.3",
  2943. "symfony/config": "^2.2|3.*",
  2944. "symfony/dependency-injection": "^2.0.5|3.*",
  2945. "symfony/event-dispatcher": "^2.1|3.*"
  2946. },
  2947. "suggest": {
  2948. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  2949. },
  2950. "type": "library",
  2951. "extra": {
  2952. "branch-alias": {
  2953. "dev-master": "1.4-dev"
  2954. }
  2955. },
  2956. "autoload": {
  2957. "psr-4": {
  2958. "Symfony\\Cmf\\Component\\Routing\\": ""
  2959. }
  2960. },
  2961. "notification-url": "https://packagist.org/downloads/",
  2962. "license": [
  2963. "MIT"
  2964. ],
  2965. "authors": [
  2966. {
  2967. "name": "Symfony CMF Community",
  2968. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  2969. }
  2970. ],
  2971. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  2972. "homepage": "http://cmf.symfony.com",
  2973. "keywords": [
  2974. "database",
  2975. "routing"
  2976. ],
  2977. "time": "2017-05-09T08:10:41+00:00"
  2978. },
  2979. {
  2980. "name": "symfony/class-loader",
  2981. "version": "v3.4.7",
  2982. "source": {
  2983. "type": "git",
  2984. "url": "https://github.com/symfony/class-loader.git",
  2985. "reference": "e63c12699822bb3b667e7216ba07fbcc3a3e203e"
  2986. },
  2987. "dist": {
  2988. "type": "zip",
  2989. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e63c12699822bb3b667e7216ba07fbcc3a3e203e",
  2990. "reference": "e63c12699822bb3b667e7216ba07fbcc3a3e203e",
  2991. "shasum": ""
  2992. },
  2993. "require": {
  2994. "php": "^5.5.9|>=7.0.8"
  2995. },
  2996. "require-dev": {
  2997. "symfony/finder": "~2.8|~3.0|~4.0",
  2998. "symfony/polyfill-apcu": "~1.1"
  2999. },
  3000. "suggest": {
  3001. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  3002. },
  3003. "type": "library",
  3004. "extra": {
  3005. "branch-alias": {
  3006. "dev-master": "3.4-dev"
  3007. }
  3008. },
  3009. "autoload": {
  3010. "psr-4": {
  3011. "Symfony\\Component\\ClassLoader\\": ""
  3012. },
  3013. "exclude-from-classmap": [
  3014. "/Tests/"
  3015. ]
  3016. },
  3017. "notification-url": "https://packagist.org/downloads/",
  3018. "license": [
  3019. "MIT"
  3020. ],
  3021. "authors": [
  3022. {
  3023. "name": "Fabien Potencier",
  3024. "email": "fabien@symfony.com"
  3025. },
  3026. {
  3027. "name": "Symfony Community",
  3028. "homepage": "https://symfony.com/contributors"
  3029. }
  3030. ],
  3031. "description": "Symfony ClassLoader Component",
  3032. "homepage": "https://symfony.com",
  3033. "time": "2018-01-03T07:37:34+00:00"
  3034. },
  3035. {
  3036. "name": "symfony/config",
  3037. "version": "v3.4.7",
  3038. "source": {
  3039. "type": "git",
  3040. "url": "https://github.com/symfony/config.git",
  3041. "reference": "7c2a9d44f4433863e9bca682e7f03609234657f9"
  3042. },
  3043. "dist": {
  3044. "type": "zip",
  3045. "url": "https://api.github.com/repos/symfony/config/zipball/7c2a9d44f4433863e9bca682e7f03609234657f9",
  3046. "reference": "7c2a9d44f4433863e9bca682e7f03609234657f9",
  3047. "shasum": ""
  3048. },
  3049. "require": {
  3050. "php": "^5.5.9|>=7.0.8",
  3051. "symfony/filesystem": "~2.8|~3.0|~4.0"
  3052. },
  3053. "conflict": {
  3054. "symfony/dependency-injection": "<3.3",
  3055. "symfony/finder": "<3.3"
  3056. },
  3057. "require-dev": {
  3058. "symfony/dependency-injection": "~3.3|~4.0",
  3059. "symfony/event-dispatcher": "~3.3|~4.0",
  3060. "symfony/finder": "~3.3|~4.0",
  3061. "symfony/yaml": "~3.0|~4.0"
  3062. },
  3063. "suggest": {
  3064. "symfony/yaml": "To use the yaml reference dumper"
  3065. },
  3066. "type": "library",
  3067. "extra": {
  3068. "branch-alias": {
  3069. "dev-master": "3.4-dev"
  3070. }
  3071. },
  3072. "autoload": {
  3073. "psr-4": {
  3074. "Symfony\\Component\\Config\\": ""
  3075. },
  3076. "exclude-from-classmap": [
  3077. "/Tests/"
  3078. ]
  3079. },
  3080. "notification-url": "https://packagist.org/downloads/",
  3081. "license": [
  3082. "MIT"
  3083. ],
  3084. "authors": [
  3085. {
  3086. "name": "Fabien Potencier",
  3087. "email": "fabien@symfony.com"
  3088. },
  3089. {
  3090. "name": "Symfony Community",
  3091. "homepage": "https://symfony.com/contributors"
  3092. }
  3093. ],
  3094. "description": "Symfony Config Component",
  3095. "homepage": "https://symfony.com",
  3096. "time": "2018-03-19T22:32:39+00:00"
  3097. },
  3098. {
  3099. "name": "symfony/console",
  3100. "version": "v3.4.7",
  3101. "source": {
  3102. "type": "git",
  3103. "url": "https://github.com/symfony/console.git",
  3104. "reference": "d4bb70fa24d540c309d88a9d6e43fb2d339b1fbf"
  3105. },
  3106. "dist": {
  3107. "type": "zip",
  3108. "url": "https://api.github.com/repos/symfony/console/zipball/d4bb70fa24d540c309d88a9d6e43fb2d339b1fbf",
  3109. "reference": "d4bb70fa24d540c309d88a9d6e43fb2d339b1fbf",
  3110. "shasum": ""
  3111. },
  3112. "require": {
  3113. "php": "^5.5.9|>=7.0.8",
  3114. "symfony/debug": "~2.8|~3.0|~4.0",
  3115. "symfony/polyfill-mbstring": "~1.0"
  3116. },
  3117. "conflict": {
  3118. "symfony/dependency-injection": "<3.4",
  3119. "symfony/process": "<3.3"
  3120. },
  3121. "require-dev": {
  3122. "psr/log": "~1.0",
  3123. "symfony/config": "~3.3|~4.0",
  3124. "symfony/dependency-injection": "~3.4|~4.0",
  3125. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  3126. "symfony/lock": "~3.4|~4.0",
  3127. "symfony/process": "~3.3|~4.0"
  3128. },
  3129. "suggest": {
  3130. "psr/log": "For using the console logger",
  3131. "symfony/event-dispatcher": "",
  3132. "symfony/lock": "",
  3133. "symfony/process": ""
  3134. },
  3135. "type": "library",
  3136. "extra": {
  3137. "branch-alias": {
  3138. "dev-master": "3.4-dev"
  3139. }
  3140. },
  3141. "autoload": {
  3142. "psr-4": {
  3143. "Symfony\\Component\\Console\\": ""
  3144. },
  3145. "exclude-from-classmap": [
  3146. "/Tests/"
  3147. ]
  3148. },
  3149. "notification-url": "https://packagist.org/downloads/",
  3150. "license": [
  3151. "MIT"
  3152. ],
  3153. "authors": [
  3154. {
  3155. "name": "Fabien Potencier",
  3156. "email": "fabien@symfony.com"
  3157. },
  3158. {
  3159. "name": "Symfony Community",
  3160. "homepage": "https://symfony.com/contributors"
  3161. }
  3162. ],
  3163. "description": "Symfony Console Component",
  3164. "homepage": "https://symfony.com",
  3165. "time": "2018-04-03T05:22:50+00:00"
  3166. },
  3167. {
  3168. "name": "symfony/css-selector",
  3169. "version": "v3.4.7",
  3170. "source": {
  3171. "type": "git",
  3172. "url": "https://github.com/symfony/css-selector.git",
  3173. "reference": "519a80d7c1d95c6cc0b67f686d15fe27c6910de0"
  3174. },
  3175. "dist": {
  3176. "type": "zip",
  3177. "url": "https://api.github.com/repos/symfony/css-selector/zipball/519a80d7c1d95c6cc0b67f686d15fe27c6910de0",
  3178. "reference": "519a80d7c1d95c6cc0b67f686d15fe27c6910de0",
  3179. "shasum": ""
  3180. },
  3181. "require": {
  3182. "php": "^5.5.9|>=7.0.8"
  3183. },
  3184. "type": "library",
  3185. "extra": {
  3186. "branch-alias": {
  3187. "dev-master": "3.4-dev"
  3188. }
  3189. },
  3190. "autoload": {
  3191. "psr-4": {
  3192. "Symfony\\Component\\CssSelector\\": ""
  3193. },
  3194. "exclude-from-classmap": [
  3195. "/Tests/"
  3196. ]
  3197. },
  3198. "notification-url": "https://packagist.org/downloads/",
  3199. "license": [
  3200. "MIT"
  3201. ],
  3202. "authors": [
  3203. {
  3204. "name": "Jean-François Simon",
  3205. "email": "jeanfrancois.simon@sensiolabs.com"
  3206. },
  3207. {
  3208. "name": "Fabien Potencier",
  3209. "email": "fabien@symfony.com"
  3210. },
  3211. {
  3212. "name": "Symfony Community",
  3213. "homepage": "https://symfony.com/contributors"
  3214. }
  3215. ],
  3216. "description": "Symfony CssSelector Component",
  3217. "homepage": "https://symfony.com",
  3218. "time": "2018-03-19T22:32:39+00:00"
  3219. },
  3220. {
  3221. "name": "symfony/debug",
  3222. "version": "v3.4.7",
  3223. "source": {
  3224. "type": "git",
  3225. "url": "https://github.com/symfony/debug.git",
  3226. "reference": "9cf7c2271cfb89ef9727db1b740ca77be57bf9d7"
  3227. },
  3228. "dist": {
  3229. "type": "zip",
  3230. "url": "https://api.github.com/repos/symfony/debug/zipball/9cf7c2271cfb89ef9727db1b740ca77be57bf9d7",
  3231. "reference": "9cf7c2271cfb89ef9727db1b740ca77be57bf9d7",
  3232. "shasum": ""
  3233. },
  3234. "require": {
  3235. "php": "^5.5.9|>=7.0.8",
  3236. "psr/log": "~1.0"
  3237. },
  3238. "conflict": {
  3239. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  3240. },
  3241. "require-dev": {
  3242. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  3243. },
  3244. "type": "library",
  3245. "extra": {
  3246. "branch-alias": {
  3247. "dev-master": "3.4-dev"
  3248. }
  3249. },
  3250. "autoload": {
  3251. "psr-4": {
  3252. "Symfony\\Component\\Debug\\": ""
  3253. },
  3254. "exclude-from-classmap": [
  3255. "/Tests/"
  3256. ]
  3257. },
  3258. "notification-url": "https://packagist.org/downloads/",
  3259. "license": [
  3260. "MIT"
  3261. ],
  3262. "authors": [
  3263. {
  3264. "name": "Fabien Potencier",
  3265. "email": "fabien@symfony.com"
  3266. },
  3267. {
  3268. "name": "Symfony Community",
  3269. "homepage": "https://symfony.com/contributors"
  3270. }
  3271. ],
  3272. "description": "Symfony Debug Component",
  3273. "homepage": "https://symfony.com",
  3274. "time": "2018-04-03T05:22:50+00:00"
  3275. },
  3276. {
  3277. "name": "symfony/dependency-injection",
  3278. "version": "v3.4.7",
  3279. "source": {
  3280. "type": "git",
  3281. "url": "https://github.com/symfony/dependency-injection.git",
  3282. "reference": "24a68710c6ddc1e3d159a110cef94cedfcf3c611"
  3283. },
  3284. "dist": {
  3285. "type": "zip",
  3286. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/24a68710c6ddc1e3d159a110cef94cedfcf3c611",
  3287. "reference": "24a68710c6ddc1e3d159a110cef94cedfcf3c611",
  3288. "shasum": ""
  3289. },
  3290. "require": {
  3291. "php": "^5.5.9|>=7.0.8",
  3292. "psr/container": "^1.0"
  3293. },
  3294. "conflict": {
  3295. "symfony/config": "<3.3.7",
  3296. "symfony/finder": "<3.3",
  3297. "symfony/proxy-manager-bridge": "<3.4",
  3298. "symfony/yaml": "<3.4"
  3299. },
  3300. "provide": {
  3301. "psr/container-implementation": "1.0"
  3302. },
  3303. "require-dev": {
  3304. "symfony/config": "~3.3|~4.0",
  3305. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3306. "symfony/yaml": "~3.4|~4.0"
  3307. },
  3308. "suggest": {
  3309. "symfony/config": "",
  3310. "symfony/expression-language": "For using expressions in service container configuration",
  3311. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3312. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  3313. "symfony/yaml": ""
  3314. },
  3315. "type": "library",
  3316. "extra": {
  3317. "branch-alias": {
  3318. "dev-master": "3.4-dev"
  3319. }
  3320. },
  3321. "autoload": {
  3322. "psr-4": {
  3323. "Symfony\\Component\\DependencyInjection\\": ""
  3324. },
  3325. "exclude-from-classmap": [
  3326. "/Tests/"
  3327. ]
  3328. },
  3329. "notification-url": "https://packagist.org/downloads/",
  3330. "license": [
  3331. "MIT"
  3332. ],
  3333. "authors": [
  3334. {
  3335. "name": "Fabien Potencier",
  3336. "email": "fabien@symfony.com"
  3337. },
  3338. {
  3339. "name": "Symfony Community",
  3340. "homepage": "https://symfony.com/contributors"
  3341. }
  3342. ],
  3343. "description": "Symfony DependencyInjection Component",
  3344. "homepage": "https://symfony.com",
  3345. "time": "2018-03-29T11:25:31+00:00"
  3346. },
  3347. {
  3348. "name": "symfony/dom-crawler",
  3349. "version": "v3.4.7",
  3350. "source": {
  3351. "type": "git",
  3352. "url": "https://github.com/symfony/dom-crawler.git",
  3353. "reference": "1a4cffeb059226ff6bee9f48acb388faf674afff"
  3354. },
  3355. "dist": {
  3356. "type": "zip",
  3357. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/1a4cffeb059226ff6bee9f48acb388faf674afff",
  3358. "reference": "1a4cffeb059226ff6bee9f48acb388faf674afff",
  3359. "shasum": ""
  3360. },
  3361. "require": {
  3362. "php": "^5.5.9|>=7.0.8",
  3363. "symfony/polyfill-mbstring": "~1.0"
  3364. },
  3365. "require-dev": {
  3366. "symfony/css-selector": "~2.8|~3.0|~4.0"
  3367. },
  3368. "suggest": {
  3369. "symfony/css-selector": ""
  3370. },
  3371. "type": "library",
  3372. "extra": {
  3373. "branch-alias": {
  3374. "dev-master": "3.4-dev"
  3375. }
  3376. },
  3377. "autoload": {
  3378. "psr-4": {
  3379. "Symfony\\Component\\DomCrawler\\": ""
  3380. },
  3381. "exclude-from-classmap": [
  3382. "/Tests/"
  3383. ]
  3384. },
  3385. "notification-url": "https://packagist.org/downloads/",
  3386. "license": [
  3387. "MIT"
  3388. ],
  3389. "authors": [
  3390. {
  3391. "name": "Fabien Potencier",
  3392. "email": "fabien@symfony.com"
  3393. },
  3394. {
  3395. "name": "Symfony Community",
  3396. "homepage": "https://symfony.com/contributors"
  3397. }
  3398. ],
  3399. "description": "Symfony DomCrawler Component",
  3400. "homepage": "https://symfony.com",
  3401. "time": "2018-03-19T22:32:39+00:00"
  3402. },
  3403. {
  3404. "name": "symfony/event-dispatcher",
  3405. "version": "v3.4.7",
  3406. "source": {
  3407. "type": "git",
  3408. "url": "https://github.com/symfony/event-dispatcher.git",
  3409. "reference": "58990682ac3fdc1f563b7e705452921372aad11d"
  3410. },
  3411. "dist": {
  3412. "type": "zip",
  3413. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/58990682ac3fdc1f563b7e705452921372aad11d",
  3414. "reference": "58990682ac3fdc1f563b7e705452921372aad11d",
  3415. "shasum": ""
  3416. },
  3417. "require": {
  3418. "php": "^5.5.9|>=7.0.8"
  3419. },
  3420. "conflict": {
  3421. "symfony/dependency-injection": "<3.3"
  3422. },
  3423. "require-dev": {
  3424. "psr/log": "~1.0",
  3425. "symfony/config": "~2.8|~3.0|~4.0",
  3426. "symfony/dependency-injection": "~3.3|~4.0",
  3427. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3428. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  3429. },
  3430. "suggest": {
  3431. "symfony/dependency-injection": "",
  3432. "symfony/http-kernel": ""
  3433. },
  3434. "type": "library",
  3435. "extra": {
  3436. "branch-alias": {
  3437. "dev-master": "3.4-dev"
  3438. }
  3439. },
  3440. "autoload": {
  3441. "psr-4": {
  3442. "Symfony\\Component\\EventDispatcher\\": ""
  3443. },
  3444. "exclude-from-classmap": [
  3445. "/Tests/"
  3446. ]
  3447. },
  3448. "notification-url": "https://packagist.org/downloads/",
  3449. "license": [
  3450. "MIT"
  3451. ],
  3452. "authors": [
  3453. {
  3454. "name": "Fabien Potencier",
  3455. "email": "fabien@symfony.com"
  3456. },
  3457. {
  3458. "name": "Symfony Community",
  3459. "homepage": "https://symfony.com/contributors"
  3460. }
  3461. ],
  3462. "description": "Symfony EventDispatcher Component",
  3463. "homepage": "https://symfony.com",
  3464. "time": "2018-02-14T10:03:57+00:00"
  3465. },
  3466. {
  3467. "name": "symfony/filesystem",
  3468. "version": "v3.4.7",
  3469. "source": {
  3470. "type": "git",
  3471. "url": "https://github.com/symfony/filesystem.git",
  3472. "reference": "253a4490b528597aa14d2bf5aeded6f5e5e4a541"
  3473. },
  3474. "dist": {
  3475. "type": "zip",
  3476. "url": "https://api.github.com/repos/symfony/filesystem/zipball/253a4490b528597aa14d2bf5aeded6f5e5e4a541",
  3477. "reference": "253a4490b528597aa14d2bf5aeded6f5e5e4a541",
  3478. "shasum": ""
  3479. },
  3480. "require": {
  3481. "php": "^5.5.9|>=7.0.8"
  3482. },
  3483. "type": "library",
  3484. "extra": {
  3485. "branch-alias": {
  3486. "dev-master": "3.4-dev"
  3487. }
  3488. },
  3489. "autoload": {
  3490. "psr-4": {
  3491. "Symfony\\Component\\Filesystem\\": ""
  3492. },
  3493. "exclude-from-classmap": [
  3494. "/Tests/"
  3495. ]
  3496. },
  3497. "notification-url": "https://packagist.org/downloads/",
  3498. "license": [
  3499. "MIT"
  3500. ],
  3501. "authors": [
  3502. {
  3503. "name": "Fabien Potencier",
  3504. "email": "fabien@symfony.com"
  3505. },
  3506. {
  3507. "name": "Symfony Community",
  3508. "homepage": "https://symfony.com/contributors"
  3509. }
  3510. ],
  3511. "description": "Symfony Filesystem Component",
  3512. "homepage": "https://symfony.com",
  3513. "time": "2018-02-22T10:48:49+00:00"
  3514. },
  3515. {
  3516. "name": "symfony/finder",
  3517. "version": "v3.4.7",
  3518. "source": {
  3519. "type": "git",
  3520. "url": "https://github.com/symfony/finder.git",
  3521. "reference": "7a2e1299cc0c4162996f18e347b6356729a55317"
  3522. },
  3523. "dist": {
  3524. "type": "zip",
  3525. "url": "https://api.github.com/repos/symfony/finder/zipball/7a2e1299cc0c4162996f18e347b6356729a55317",
  3526. "reference": "7a2e1299cc0c4162996f18e347b6356729a55317",
  3527. "shasum": ""
  3528. },
  3529. "require": {
  3530. "php": "^5.5.9|>=7.0.8"
  3531. },
  3532. "type": "library",
  3533. "extra": {
  3534. "branch-alias": {
  3535. "dev-master": "3.4-dev"
  3536. }
  3537. },
  3538. "autoload": {
  3539. "psr-4": {
  3540. "Symfony\\Component\\Finder\\": ""
  3541. },
  3542. "exclude-from-classmap": [
  3543. "/Tests/"
  3544. ]
  3545. },
  3546. "notification-url": "https://packagist.org/downloads/",
  3547. "license": [
  3548. "MIT"
  3549. ],
  3550. "authors": [
  3551. {
  3552. "name": "Fabien Potencier",
  3553. "email": "fabien@symfony.com"
  3554. },
  3555. {
  3556. "name": "Symfony Community",
  3557. "homepage": "https://symfony.com/contributors"
  3558. }
  3559. ],
  3560. "description": "Symfony Finder Component",
  3561. "homepage": "https://symfony.com",
  3562. "time": "2018-03-28T18:23:39+00:00"
  3563. },
  3564. {
  3565. "name": "symfony/http-foundation",
  3566. "version": "v3.4.7",
  3567. "source": {
  3568. "type": "git",
  3569. "url": "https://github.com/symfony/http-foundation.git",
  3570. "reference": "b11e6d165ff4cbf5685d185ab19a90f2f3bb7d1e"
  3571. },
  3572. "dist": {
  3573. "type": "zip",
  3574. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b11e6d165ff4cbf5685d185ab19a90f2f3bb7d1e",
  3575. "reference": "b11e6d165ff4cbf5685d185ab19a90f2f3bb7d1e",
  3576. "shasum": ""
  3577. },
  3578. "require": {
  3579. "php": "^5.5.9|>=7.0.8",
  3580. "symfony/polyfill-mbstring": "~1.1",
  3581. "symfony/polyfill-php70": "~1.6"
  3582. },
  3583. "require-dev": {
  3584. "symfony/expression-language": "~2.8|~3.0|~4.0"
  3585. },
  3586. "type": "library",
  3587. "extra": {
  3588. "branch-alias": {
  3589. "dev-master": "3.4-dev"
  3590. }
  3591. },
  3592. "autoload": {
  3593. "psr-4": {
  3594. "Symfony\\Component\\HttpFoundation\\": ""
  3595. },
  3596. "exclude-from-classmap": [
  3597. "/Tests/"
  3598. ]
  3599. },
  3600. "notification-url": "https://packagist.org/downloads/",
  3601. "license": [
  3602. "MIT"
  3603. ],
  3604. "authors": [
  3605. {
  3606. "name": "Fabien Potencier",
  3607. "email": "fabien@symfony.com"
  3608. },
  3609. {
  3610. "name": "Symfony Community",
  3611. "homepage": "https://symfony.com/contributors"
  3612. }
  3613. ],
  3614. "description": "Symfony HttpFoundation Component",
  3615. "homepage": "https://symfony.com",
  3616. "time": "2018-04-03T05:22:50+00:00"
  3617. },
  3618. {
  3619. "name": "symfony/http-kernel",
  3620. "version": "v3.4.7",
  3621. "source": {
  3622. "type": "git",
  3623. "url": "https://github.com/symfony/http-kernel.git",
  3624. "reference": "43cfdad2ca1dba608662db0699c1bbb715d08191"
  3625. },
  3626. "dist": {
  3627. "type": "zip",
  3628. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/43cfdad2ca1dba608662db0699c1bbb715d08191",
  3629. "reference": "43cfdad2ca1dba608662db0699c1bbb715d08191",
  3630. "shasum": ""
  3631. },
  3632. "require": {
  3633. "php": "^5.5.9|>=7.0.8",
  3634. "psr/log": "~1.0",
  3635. "symfony/debug": "~2.8|~3.0|~4.0",
  3636. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  3637. "symfony/http-foundation": "^3.4.4|^4.0.4"
  3638. },
  3639. "conflict": {
  3640. "symfony/config": "<2.8",
  3641. "symfony/dependency-injection": "<3.4.5|<4.0.5,>=4",
  3642. "symfony/var-dumper": "<3.3",
  3643. "twig/twig": "<1.34|<2.4,>=2"
  3644. },
  3645. "provide": {
  3646. "psr/log-implementation": "1.0"
  3647. },
  3648. "require-dev": {
  3649. "psr/cache": "~1.0",
  3650. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  3651. "symfony/class-loader": "~2.8|~3.0",
  3652. "symfony/config": "~2.8|~3.0|~4.0",
  3653. "symfony/console": "~2.8|~3.0|~4.0",
  3654. "symfony/css-selector": "~2.8|~3.0|~4.0",
  3655. "symfony/dependency-injection": "^3.4.5|^4.0.5",
  3656. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  3657. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3658. "symfony/finder": "~2.8|~3.0|~4.0",
  3659. "symfony/process": "~2.8|~3.0|~4.0",
  3660. "symfony/routing": "~3.4|~4.0",
  3661. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  3662. "symfony/templating": "~2.8|~3.0|~4.0",
  3663. "symfony/translation": "~2.8|~3.0|~4.0",
  3664. "symfony/var-dumper": "~3.3|~4.0"
  3665. },
  3666. "suggest": {
  3667. "symfony/browser-kit": "",
  3668. "symfony/config": "",
  3669. "symfony/console": "",
  3670. "symfony/dependency-injection": "",
  3671. "symfony/finder": "",
  3672. "symfony/var-dumper": ""
  3673. },
  3674. "type": "library",
  3675. "extra": {
  3676. "branch-alias": {
  3677. "dev-master": "3.4-dev"
  3678. }
  3679. },
  3680. "autoload": {
  3681. "psr-4": {
  3682. "Symfony\\Component\\HttpKernel\\": ""
  3683. },
  3684. "exclude-from-classmap": [
  3685. "/Tests/"
  3686. ]
  3687. },
  3688. "notification-url": "https://packagist.org/downloads/",
  3689. "license": [
  3690. "MIT"
  3691. ],
  3692. "authors": [
  3693. {
  3694. "name": "Fabien Potencier",
  3695. "email": "fabien@symfony.com"
  3696. },
  3697. {
  3698. "name": "Symfony Community",
  3699. "homepage": "https://symfony.com/contributors"
  3700. }
  3701. ],
  3702. "description": "Symfony HttpKernel Component",
  3703. "homepage": "https://symfony.com",
  3704. "time": "2018-04-03T05:49:44+00:00"
  3705. },
  3706. {
  3707. "name": "symfony/polyfill-iconv",
  3708. "version": "v1.7.0",
  3709. "source": {
  3710. "type": "git",
  3711. "url": "https://github.com/symfony/polyfill-iconv.git",
  3712. "reference": "bd515d8f392730c833bc1ba993a4f598da64fa5b"
  3713. },
  3714. "dist": {
  3715. "type": "zip",
  3716. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/bd515d8f392730c833bc1ba993a4f598da64fa5b",
  3717. "reference": "bd515d8f392730c833bc1ba993a4f598da64fa5b",
  3718. "shasum": ""
  3719. },
  3720. "require": {
  3721. "php": ">=5.3.3"
  3722. },
  3723. "suggest": {
  3724. "ext-iconv": "For best performance"
  3725. },
  3726. "type": "library",
  3727. "extra": {
  3728. "branch-alias": {
  3729. "dev-master": "1.7-dev"
  3730. }
  3731. },
  3732. "autoload": {
  3733. "psr-4": {
  3734. "Symfony\\Polyfill\\Iconv\\": ""
  3735. },
  3736. "files": [
  3737. "bootstrap.php"
  3738. ]
  3739. },
  3740. "notification-url": "https://packagist.org/downloads/",
  3741. "license": [
  3742. "MIT"
  3743. ],
  3744. "authors": [
  3745. {
  3746. "name": "Nicolas Grekas",
  3747. "email": "p@tchwork.com"
  3748. },
  3749. {
  3750. "name": "Symfony Community",
  3751. "homepage": "https://symfony.com/contributors"
  3752. }
  3753. ],
  3754. "description": "Symfony polyfill for the Iconv extension",
  3755. "homepage": "https://symfony.com",
  3756. "keywords": [
  3757. "compatibility",
  3758. "iconv",
  3759. "polyfill",
  3760. "portable",
  3761. "shim"
  3762. ],
  3763. "time": "2018-01-30T19:27:44+00:00"
  3764. },
  3765. {
  3766. "name": "symfony/polyfill-mbstring",
  3767. "version": "v1.7.0",
  3768. "source": {
  3769. "type": "git",
  3770. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3771. "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b"
  3772. },
  3773. "dist": {
  3774. "type": "zip",
  3775. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/78be803ce01e55d3491c1397cf1c64beb9c1b63b",
  3776. "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b",
  3777. "shasum": ""
  3778. },
  3779. "require": {
  3780. "php": ">=5.3.3"
  3781. },
  3782. "suggest": {
  3783. "ext-mbstring": "For best performance"
  3784. },
  3785. "type": "library",
  3786. "extra": {
  3787. "branch-alias": {
  3788. "dev-master": "1.7-dev"
  3789. }
  3790. },
  3791. "autoload": {
  3792. "psr-4": {
  3793. "Symfony\\Polyfill\\Mbstring\\": ""
  3794. },
  3795. "files": [
  3796. "bootstrap.php"
  3797. ]
  3798. },
  3799. "notification-url": "https://packagist.org/downloads/",
  3800. "license": [
  3801. "MIT"
  3802. ],
  3803. "authors": [
  3804. {
  3805. "name": "Nicolas Grekas",
  3806. "email": "p@tchwork.com"
  3807. },
  3808. {
  3809. "name": "Symfony Community",
  3810. "homepage": "https://symfony.com/contributors"
  3811. }
  3812. ],
  3813. "description": "Symfony polyfill for the Mbstring extension",
  3814. "homepage": "https://symfony.com",
  3815. "keywords": [
  3816. "compatibility",
  3817. "mbstring",
  3818. "polyfill",
  3819. "portable",
  3820. "shim"
  3821. ],
  3822. "time": "2018-01-30T19:27:44+00:00"
  3823. },
  3824. {
  3825. "name": "symfony/polyfill-php70",
  3826. "version": "v1.7.0",
  3827. "source": {
  3828. "type": "git",
  3829. "url": "https://github.com/symfony/polyfill-php70.git",
  3830. "reference": "3532bfcd8f933a7816f3a0a59682fc404776600f"
  3831. },
  3832. "dist": {
  3833. "type": "zip",
  3834. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/3532bfcd8f933a7816f3a0a59682fc404776600f",
  3835. "reference": "3532bfcd8f933a7816f3a0a59682fc404776600f",
  3836. "shasum": ""
  3837. },
  3838. "require": {
  3839. "paragonie/random_compat": "~1.0|~2.0",
  3840. "php": ">=5.3.3"
  3841. },
  3842. "type": "library",
  3843. "extra": {
  3844. "branch-alias": {
  3845. "dev-master": "1.7-dev"
  3846. }
  3847. },
  3848. "autoload": {
  3849. "psr-4": {
  3850. "Symfony\\Polyfill\\Php70\\": ""
  3851. },
  3852. "files": [
  3853. "bootstrap.php"
  3854. ],
  3855. "classmap": [
  3856. "Resources/stubs"
  3857. ]
  3858. },
  3859. "notification-url": "https://packagist.org/downloads/",
  3860. "license": [
  3861. "MIT"
  3862. ],
  3863. "authors": [
  3864. {
  3865. "name": "Nicolas Grekas",
  3866. "email": "p@tchwork.com"
  3867. },
  3868. {
  3869. "name": "Symfony Community",
  3870. "homepage": "https://symfony.com/contributors"
  3871. }
  3872. ],
  3873. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  3874. "homepage": "https://symfony.com",
  3875. "keywords": [
  3876. "compatibility",
  3877. "polyfill",
  3878. "portable",
  3879. "shim"
  3880. ],
  3881. "time": "2018-01-30T19:27:44+00:00"
  3882. },
  3883. {
  3884. "name": "symfony/process",
  3885. "version": "v3.4.7",
  3886. "source": {
  3887. "type": "git",
  3888. "url": "https://github.com/symfony/process.git",
  3889. "reference": "4b7d64e852886319e93ddfdecff0d744ab87658b"
  3890. },
  3891. "dist": {
  3892. "type": "zip",
  3893. "url": "https://api.github.com/repos/symfony/process/zipball/4b7d64e852886319e93ddfdecff0d744ab87658b",
  3894. "reference": "4b7d64e852886319e93ddfdecff0d744ab87658b",
  3895. "shasum": ""
  3896. },
  3897. "require": {
  3898. "php": "^5.5.9|>=7.0.8"
  3899. },
  3900. "type": "library",
  3901. "extra": {
  3902. "branch-alias": {
  3903. "dev-master": "3.4-dev"
  3904. }
  3905. },
  3906. "autoload": {
  3907. "psr-4": {
  3908. "Symfony\\Component\\Process\\": ""
  3909. },
  3910. "exclude-from-classmap": [
  3911. "/Tests/"
  3912. ]
  3913. },
  3914. "notification-url": "https://packagist.org/downloads/",
  3915. "license": [
  3916. "MIT"
  3917. ],
  3918. "authors": [
  3919. {
  3920. "name": "Fabien Potencier",
  3921. "email": "fabien@symfony.com"
  3922. },
  3923. {
  3924. "name": "Symfony Community",
  3925. "homepage": "https://symfony.com/contributors"
  3926. }
  3927. ],
  3928. "description": "Symfony Process Component",
  3929. "homepage": "https://symfony.com",
  3930. "time": "2018-04-03T05:22:50+00:00"
  3931. },
  3932. {
  3933. "name": "symfony/psr-http-message-bridge",
  3934. "version": "v1.0.2",
  3935. "source": {
  3936. "type": "git",
  3937. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  3938. "reference": "c2b757934f2d9681a287e662efbc27c41fe8ef86"
  3939. },
  3940. "dist": {
  3941. "type": "zip",
  3942. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c2b757934f2d9681a287e662efbc27c41fe8ef86",
  3943. "reference": "c2b757934f2d9681a287e662efbc27c41fe8ef86",
  3944. "shasum": ""
  3945. },
  3946. "require": {
  3947. "php": ">=5.3.3",
  3948. "psr/http-message": "~1.0",
  3949. "symfony/http-foundation": "~2.3|~3.0|~4.0"
  3950. },
  3951. "require-dev": {
  3952. "symfony/phpunit-bridge": "~3.2|4.0"
  3953. },
  3954. "suggest": {
  3955. "psr/http-message-implementation": "To use the HttpFoundation factory",
  3956. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  3957. },
  3958. "type": "symfony-bridge",
  3959. "extra": {
  3960. "branch-alias": {
  3961. "dev-master": "1.0-dev"
  3962. }
  3963. },
  3964. "autoload": {
  3965. "psr-4": {
  3966. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  3967. }
  3968. },
  3969. "notification-url": "https://packagist.org/downloads/",
  3970. "license": [
  3971. "MIT"
  3972. ],
  3973. "authors": [
  3974. {
  3975. "name": "Symfony Community",
  3976. "homepage": "http://symfony.com/contributors"
  3977. },
  3978. {
  3979. "name": "Fabien Potencier",
  3980. "email": "fabien@symfony.com"
  3981. }
  3982. ],
  3983. "description": "PSR HTTP message bridge",
  3984. "homepage": "http://symfony.com",
  3985. "keywords": [
  3986. "http",
  3987. "http-message",
  3988. "psr-7"
  3989. ],
  3990. "time": "2017-12-19T00:31:44+00:00"
  3991. },
  3992. {
  3993. "name": "symfony/routing",
  3994. "version": "v3.4.7",
  3995. "source": {
  3996. "type": "git",
  3997. "url": "https://github.com/symfony/routing.git",
  3998. "reference": "5f90733adbf19ea71468a5761fb8f5a043d424dd"
  3999. },
  4000. "dist": {
  4001. "type": "zip",
  4002. "url": "https://api.github.com/repos/symfony/routing/zipball/5f90733adbf19ea71468a5761fb8f5a043d424dd",
  4003. "reference": "5f90733adbf19ea71468a5761fb8f5a043d424dd",
  4004. "shasum": ""
  4005. },
  4006. "require": {
  4007. "php": "^5.5.9|>=7.0.8"
  4008. },
  4009. "conflict": {
  4010. "symfony/config": "<3.3.1",
  4011. "symfony/dependency-injection": "<3.3",
  4012. "symfony/yaml": "<3.4"
  4013. },
  4014. "require-dev": {
  4015. "doctrine/annotations": "~1.0",
  4016. "doctrine/common": "~2.2",
  4017. "psr/log": "~1.0",
  4018. "symfony/config": "^3.3.1|~4.0",
  4019. "symfony/dependency-injection": "~3.3|~4.0",
  4020. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4021. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  4022. "symfony/yaml": "~3.4|~4.0"
  4023. },
  4024. "suggest": {
  4025. "doctrine/annotations": "For using the annotation loader",
  4026. "symfony/config": "For using the all-in-one router or any loader",
  4027. "symfony/dependency-injection": "For loading routes from a service",
  4028. "symfony/expression-language": "For using expression matching",
  4029. "symfony/http-foundation": "For using a Symfony Request object",
  4030. "symfony/yaml": "For using the YAML loader"
  4031. },
  4032. "type": "library",
  4033. "extra": {
  4034. "branch-alias": {
  4035. "dev-master": "3.4-dev"
  4036. }
  4037. },
  4038. "autoload": {
  4039. "psr-4": {
  4040. "Symfony\\Component\\Routing\\": ""
  4041. },
  4042. "exclude-from-classmap": [
  4043. "/Tests/"
  4044. ]
  4045. },
  4046. "notification-url": "https://packagist.org/downloads/",
  4047. "license": [
  4048. "MIT"
  4049. ],
  4050. "authors": [
  4051. {
  4052. "name": "Fabien Potencier",
  4053. "email": "fabien@symfony.com"
  4054. },
  4055. {
  4056. "name": "Symfony Community",
  4057. "homepage": "https://symfony.com/contributors"
  4058. }
  4059. ],
  4060. "description": "Symfony Routing Component",
  4061. "homepage": "https://symfony.com",
  4062. "keywords": [
  4063. "router",
  4064. "routing",
  4065. "uri",
  4066. "url"
  4067. ],
  4068. "time": "2018-03-23T08:14:09+00:00"
  4069. },
  4070. {
  4071. "name": "symfony/serializer",
  4072. "version": "v3.4.7",
  4073. "source": {
  4074. "type": "git",
  4075. "url": "https://github.com/symfony/serializer.git",
  4076. "reference": "d4dc1551da627273230fe16511f4bb4844c02399"
  4077. },
  4078. "dist": {
  4079. "type": "zip",
  4080. "url": "https://api.github.com/repos/symfony/serializer/zipball/d4dc1551da627273230fe16511f4bb4844c02399",
  4081. "reference": "d4dc1551da627273230fe16511f4bb4844c02399",
  4082. "shasum": ""
  4083. },
  4084. "require": {
  4085. "php": "^5.5.9|>=7.0.8"
  4086. },
  4087. "conflict": {
  4088. "phpdocumentor/type-resolver": "<0.2.1",
  4089. "symfony/dependency-injection": "<3.2",
  4090. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  4091. "symfony/property-info": "<3.1",
  4092. "symfony/yaml": "<3.4"
  4093. },
  4094. "require-dev": {
  4095. "doctrine/annotations": "~1.0",
  4096. "doctrine/cache": "~1.0",
  4097. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  4098. "symfony/cache": "~3.1|~4.0",
  4099. "symfony/config": "~2.8|~3.0|~4.0",
  4100. "symfony/dependency-injection": "~3.2|~4.0",
  4101. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  4102. "symfony/property-access": "~2.8|~3.0|~4.0",
  4103. "symfony/property-info": "~3.1|~4.0",
  4104. "symfony/yaml": "~3.4|~4.0"
  4105. },
  4106. "suggest": {
  4107. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  4108. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  4109. "psr/cache-implementation": "For using the metadata cache.",
  4110. "symfony/config": "For using the XML mapping loader.",
  4111. "symfony/http-foundation": "To use the DataUriNormalizer.",
  4112. "symfony/property-access": "For using the ObjectNormalizer.",
  4113. "symfony/property-info": "To deserialize relations.",
  4114. "symfony/yaml": "For using the default YAML mapping loader."
  4115. },
  4116. "type": "library",
  4117. "extra": {
  4118. "branch-alias": {
  4119. "dev-master": "3.4-dev"
  4120. }
  4121. },
  4122. "autoload": {
  4123. "psr-4": {
  4124. "Symfony\\Component\\Serializer\\": ""
  4125. },
  4126. "exclude-from-classmap": [
  4127. "/Tests/"
  4128. ]
  4129. },
  4130. "notification-url": "https://packagist.org/downloads/",
  4131. "license": [
  4132. "MIT"
  4133. ],
  4134. "authors": [
  4135. {
  4136. "name": "Fabien Potencier",
  4137. "email": "fabien@symfony.com"
  4138. },
  4139. {
  4140. "name": "Symfony Community",
  4141. "homepage": "https://symfony.com/contributors"
  4142. }
  4143. ],
  4144. "description": "Symfony Serializer Component",
  4145. "homepage": "https://symfony.com",
  4146. "time": "2018-03-15T19:08:29+00:00"
  4147. },
  4148. {
  4149. "name": "symfony/translation",
  4150. "version": "v3.4.7",
  4151. "source": {
  4152. "type": "git",
  4153. "url": "https://github.com/symfony/translation.git",
  4154. "reference": "80e19eaf12cbb546ac40384e5c55c36306823e57"
  4155. },
  4156. "dist": {
  4157. "type": "zip",
  4158. "url": "https://api.github.com/repos/symfony/translation/zipball/80e19eaf12cbb546ac40384e5c55c36306823e57",
  4159. "reference": "80e19eaf12cbb546ac40384e5c55c36306823e57",
  4160. "shasum": ""
  4161. },
  4162. "require": {
  4163. "php": "^5.5.9|>=7.0.8",
  4164. "symfony/polyfill-mbstring": "~1.0"
  4165. },
  4166. "conflict": {
  4167. "symfony/config": "<2.8",
  4168. "symfony/dependency-injection": "<3.4",
  4169. "symfony/yaml": "<3.4"
  4170. },
  4171. "require-dev": {
  4172. "psr/log": "~1.0",
  4173. "symfony/config": "~2.8|~3.0|~4.0",
  4174. "symfony/dependency-injection": "~3.4|~4.0",
  4175. "symfony/finder": "~2.8|~3.0|~4.0",
  4176. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  4177. "symfony/yaml": "~3.4|~4.0"
  4178. },
  4179. "suggest": {
  4180. "psr/log": "To use logging capability in translator",
  4181. "symfony/config": "",
  4182. "symfony/yaml": ""
  4183. },
  4184. "type": "library",
  4185. "extra": {
  4186. "branch-alias": {
  4187. "dev-master": "3.4-dev"
  4188. }
  4189. },
  4190. "autoload": {
  4191. "psr-4": {
  4192. "Symfony\\Component\\Translation\\": ""
  4193. },
  4194. "exclude-from-classmap": [
  4195. "/Tests/"
  4196. ]
  4197. },
  4198. "notification-url": "https://packagist.org/downloads/",
  4199. "license": [
  4200. "MIT"
  4201. ],
  4202. "authors": [
  4203. {
  4204. "name": "Fabien Potencier",
  4205. "email": "fabien@symfony.com"
  4206. },
  4207. {
  4208. "name": "Symfony Community",
  4209. "homepage": "https://symfony.com/contributors"
  4210. }
  4211. ],
  4212. "description": "Symfony Translation Component",
  4213. "homepage": "https://symfony.com",
  4214. "time": "2018-02-22T06:28:18+00:00"
  4215. },
  4216. {
  4217. "name": "symfony/validator",
  4218. "version": "v3.4.7",
  4219. "source": {
  4220. "type": "git",
  4221. "url": "https://github.com/symfony/validator.git",
  4222. "reference": "4342b66102171b417776f0e4f8f00b20a1eddb0f"
  4223. },
  4224. "dist": {
  4225. "type": "zip",
  4226. "url": "https://api.github.com/repos/symfony/validator/zipball/4342b66102171b417776f0e4f8f00b20a1eddb0f",
  4227. "reference": "4342b66102171b417776f0e4f8f00b20a1eddb0f",
  4228. "shasum": ""
  4229. },
  4230. "require": {
  4231. "php": "^5.5.9|>=7.0.8",
  4232. "symfony/polyfill-mbstring": "~1.0",
  4233. "symfony/translation": "~2.8|~3.0|~4.0"
  4234. },
  4235. "conflict": {
  4236. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4237. "symfony/dependency-injection": "<3.3",
  4238. "symfony/http-kernel": "<3.3.5",
  4239. "symfony/yaml": "<3.4"
  4240. },
  4241. "require-dev": {
  4242. "doctrine/annotations": "~1.0",
  4243. "doctrine/cache": "~1.0",
  4244. "egulias/email-validator": "^1.2.8|~2.0",
  4245. "symfony/cache": "~3.1|~4.0",
  4246. "symfony/config": "~2.8|~3.0|~4.0",
  4247. "symfony/dependency-injection": "~3.3|~4.0",
  4248. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4249. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  4250. "symfony/http-kernel": "^3.3.5|~4.0",
  4251. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  4252. "symfony/property-access": "~2.8|~3.0|~4.0",
  4253. "symfony/var-dumper": "~3.3|~4.0",
  4254. "symfony/yaml": "~3.4|~4.0"
  4255. },
  4256. "suggest": {
  4257. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  4258. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  4259. "egulias/email-validator": "Strict (RFC compliant) email validation",
  4260. "psr/cache-implementation": "For using the metadata cache.",
  4261. "symfony/config": "",
  4262. "symfony/expression-language": "For using the Expression validator",
  4263. "symfony/http-foundation": "",
  4264. "symfony/intl": "",
  4265. "symfony/property-access": "For accessing properties within comparison constraints",
  4266. "symfony/yaml": ""
  4267. },
  4268. "type": "library",
  4269. "extra": {
  4270. "branch-alias": {
  4271. "dev-master": "3.4-dev"
  4272. }
  4273. },
  4274. "autoload": {
  4275. "psr-4": {
  4276. "Symfony\\Component\\Validator\\": ""
  4277. },
  4278. "exclude-from-classmap": [
  4279. "/Tests/"
  4280. ]
  4281. },
  4282. "notification-url": "https://packagist.org/downloads/",
  4283. "license": [
  4284. "MIT"
  4285. ],
  4286. "authors": [
  4287. {
  4288. "name": "Fabien Potencier",
  4289. "email": "fabien@symfony.com"
  4290. },
  4291. {
  4292. "name": "Symfony Community",
  4293. "homepage": "https://symfony.com/contributors"
  4294. }
  4295. ],
  4296. "description": "Symfony Validator Component",
  4297. "homepage": "https://symfony.com",
  4298. "time": "2018-04-02T09:38:44+00:00"
  4299. },
  4300. {
  4301. "name": "symfony/var-dumper",
  4302. "version": "v3.4.7",
  4303. "source": {
  4304. "type": "git",
  4305. "url": "https://github.com/symfony/var-dumper.git",
  4306. "reference": "6f502127b1bb85f7f30f8bc1fb60570a10431863"
  4307. },
  4308. "dist": {
  4309. "type": "zip",
  4310. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6f502127b1bb85f7f30f8bc1fb60570a10431863",
  4311. "reference": "6f502127b1bb85f7f30f8bc1fb60570a10431863",
  4312. "shasum": ""
  4313. },
  4314. "require": {
  4315. "php": "^5.5.9|>=7.0.8",
  4316. "symfony/polyfill-mbstring": "~1.0"
  4317. },
  4318. "conflict": {
  4319. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  4320. },
  4321. "require-dev": {
  4322. "ext-iconv": "*",
  4323. "twig/twig": "~1.34|~2.4"
  4324. },
  4325. "suggest": {
  4326. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4327. "ext-intl": "To show region name in time zone dump",
  4328. "ext-symfony_debug": ""
  4329. },
  4330. "type": "library",
  4331. "extra": {
  4332. "branch-alias": {
  4333. "dev-master": "3.4-dev"
  4334. }
  4335. },
  4336. "autoload": {
  4337. "files": [
  4338. "Resources/functions/dump.php"
  4339. ],
  4340. "psr-4": {
  4341. "Symfony\\Component\\VarDumper\\": ""
  4342. },
  4343. "exclude-from-classmap": [
  4344. "/Tests/"
  4345. ]
  4346. },
  4347. "notification-url": "https://packagist.org/downloads/",
  4348. "license": [
  4349. "MIT"
  4350. ],
  4351. "authors": [
  4352. {
  4353. "name": "Nicolas Grekas",
  4354. "email": "p@tchwork.com"
  4355. },
  4356. {
  4357. "name": "Symfony Community",
  4358. "homepage": "https://symfony.com/contributors"
  4359. }
  4360. ],
  4361. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4362. "homepage": "https://symfony.com",
  4363. "keywords": [
  4364. "debug",
  4365. "dump"
  4366. ],
  4367. "time": "2018-04-03T05:22:50+00:00"
  4368. },
  4369. {
  4370. "name": "symfony/yaml",
  4371. "version": "v3.4.7",
  4372. "source": {
  4373. "type": "git",
  4374. "url": "https://github.com/symfony/yaml.git",
  4375. "reference": "a42f9da85c7c38d59f5e53f076fe81a091f894d0"
  4376. },
  4377. "dist": {
  4378. "type": "zip",
  4379. "url": "https://api.github.com/repos/symfony/yaml/zipball/a42f9da85c7c38d59f5e53f076fe81a091f894d0",
  4380. "reference": "a42f9da85c7c38d59f5e53f076fe81a091f894d0",
  4381. "shasum": ""
  4382. },
  4383. "require": {
  4384. "php": "^5.5.9|>=7.0.8"
  4385. },
  4386. "conflict": {
  4387. "symfony/console": "<3.4"
  4388. },
  4389. "require-dev": {
  4390. "symfony/console": "~3.4|~4.0"
  4391. },
  4392. "suggest": {
  4393. "symfony/console": "For validating YAML files using the lint command"
  4394. },
  4395. "type": "library",
  4396. "extra": {
  4397. "branch-alias": {
  4398. "dev-master": "3.4-dev"
  4399. }
  4400. },
  4401. "autoload": {
  4402. "psr-4": {
  4403. "Symfony\\Component\\Yaml\\": ""
  4404. },
  4405. "exclude-from-classmap": [
  4406. "/Tests/"
  4407. ]
  4408. },
  4409. "notification-url": "https://packagist.org/downloads/",
  4410. "license": [
  4411. "MIT"
  4412. ],
  4413. "authors": [
  4414. {
  4415. "name": "Fabien Potencier",
  4416. "email": "fabien@symfony.com"
  4417. },
  4418. {
  4419. "name": "Symfony Community",
  4420. "homepage": "https://symfony.com/contributors"
  4421. }
  4422. ],
  4423. "description": "Symfony Yaml Component",
  4424. "homepage": "https://symfony.com",
  4425. "time": "2018-04-03T05:14:20+00:00"
  4426. },
  4427. {
  4428. "name": "twig/twig",
  4429. "version": "v1.35.3",
  4430. "source": {
  4431. "type": "git",
  4432. "url": "https://github.com/twigphp/Twig.git",
  4433. "reference": "b48680b6eb7d16b5025b9bfc4108d86f6b8af86f"
  4434. },
  4435. "dist": {
  4436. "type": "zip",
  4437. "url": "https://api.github.com/repos/twigphp/Twig/zipball/b48680b6eb7d16b5025b9bfc4108d86f6b8af86f",
  4438. "reference": "b48680b6eb7d16b5025b9bfc4108d86f6b8af86f",
  4439. "shasum": ""
  4440. },
  4441. "require": {
  4442. "php": ">=5.3.3"
  4443. },
  4444. "require-dev": {
  4445. "psr/container": "^1.0",
  4446. "symfony/debug": "^2.7",
  4447. "symfony/phpunit-bridge": "^3.3"
  4448. },
  4449. "type": "library",
  4450. "extra": {
  4451. "branch-alias": {
  4452. "dev-master": "1.35-dev"
  4453. }
  4454. },
  4455. "autoload": {
  4456. "psr-0": {
  4457. "Twig_": "lib/"
  4458. },
  4459. "psr-4": {
  4460. "Twig\\": "src/"
  4461. }
  4462. },
  4463. "notification-url": "https://packagist.org/downloads/",
  4464. "license": [
  4465. "BSD-3-Clause"
  4466. ],
  4467. "authors": [
  4468. {
  4469. "name": "Fabien Potencier",
  4470. "email": "fabien@symfony.com",
  4471. "homepage": "http://fabien.potencier.org",
  4472. "role": "Lead Developer"
  4473. },
  4474. {
  4475. "name": "Armin Ronacher",
  4476. "email": "armin.ronacher@active-4.com",
  4477. "role": "Project Founder"
  4478. },
  4479. {
  4480. "name": "Twig Team",
  4481. "homepage": "http://twig.sensiolabs.org/contributors",
  4482. "role": "Contributors"
  4483. }
  4484. ],
  4485. "description": "Twig, the flexible, fast, and secure template language for PHP",
  4486. "homepage": "http://twig.sensiolabs.org",
  4487. "keywords": [
  4488. "templating"
  4489. ],
  4490. "time": "2018-03-20T04:25:58+00:00"
  4491. },
  4492. {
  4493. "name": "webflo/drupal-finder",
  4494. "version": "1.1.0",
  4495. "source": {
  4496. "type": "git",
  4497. "url": "https://github.com/webflo/drupal-finder.git",
  4498. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  4499. },
  4500. "dist": {
  4501. "type": "zip",
  4502. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  4503. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  4504. "shasum": ""
  4505. },
  4506. "require-dev": {
  4507. "mikey179/vfsstream": "^1.6",
  4508. "phpunit/phpunit": "^4.8"
  4509. },
  4510. "type": "library",
  4511. "autoload": {
  4512. "classmap": [
  4513. "src/DrupalFinder.php"
  4514. ]
  4515. },
  4516. "notification-url": "https://packagist.org/downloads/",
  4517. "license": [
  4518. "GPL-2.0+"
  4519. ],
  4520. "authors": [
  4521. {
  4522. "name": "Florian Weber",
  4523. "email": "florian@webflo.org"
  4524. }
  4525. ],
  4526. "description": "Helper class to locate a Drupal installation from a given path.",
  4527. "time": "2017-10-24T08:12:11+00:00"
  4528. },
  4529. {
  4530. "name": "webmozart/assert",
  4531. "version": "1.3.0",
  4532. "source": {
  4533. "type": "git",
  4534. "url": "https://github.com/webmozart/assert.git",
  4535. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  4536. },
  4537. "dist": {
  4538. "type": "zip",
  4539. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  4540. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  4541. "shasum": ""
  4542. },
  4543. "require": {
  4544. "php": "^5.3.3 || ^7.0"
  4545. },
  4546. "require-dev": {
  4547. "phpunit/phpunit": "^4.6",
  4548. "sebastian/version": "^1.0.1"
  4549. },
  4550. "type": "library",
  4551. "extra": {
  4552. "branch-alias": {
  4553. "dev-master": "1.3-dev"
  4554. }
  4555. },
  4556. "autoload": {
  4557. "psr-4": {
  4558. "Webmozart\\Assert\\": "src/"
  4559. }
  4560. },
  4561. "notification-url": "https://packagist.org/downloads/",
  4562. "license": [
  4563. "MIT"
  4564. ],
  4565. "authors": [
  4566. {
  4567. "name": "Bernhard Schussek",
  4568. "email": "bschussek@gmail.com"
  4569. }
  4570. ],
  4571. "description": "Assertions to validate method input/output with nice error messages.",
  4572. "keywords": [
  4573. "assert",
  4574. "check",
  4575. "validate"
  4576. ],
  4577. "time": "2018-01-29T19:49:41+00:00"
  4578. },
  4579. {
  4580. "name": "webmozart/path-util",
  4581. "version": "2.3.0",
  4582. "source": {
  4583. "type": "git",
  4584. "url": "https://github.com/webmozart/path-util.git",
  4585. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  4586. },
  4587. "dist": {
  4588. "type": "zip",
  4589. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  4590. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  4591. "shasum": ""
  4592. },
  4593. "require": {
  4594. "php": ">=5.3.3",
  4595. "webmozart/assert": "~1.0"
  4596. },
  4597. "require-dev": {
  4598. "phpunit/phpunit": "^4.6",
  4599. "sebastian/version": "^1.0.1"
  4600. },
  4601. "type": "library",
  4602. "extra": {
  4603. "branch-alias": {
  4604. "dev-master": "2.3-dev"
  4605. }
  4606. },
  4607. "autoload": {
  4608. "psr-4": {
  4609. "Webmozart\\PathUtil\\": "src/"
  4610. }
  4611. },
  4612. "notification-url": "https://packagist.org/downloads/",
  4613. "license": [
  4614. "MIT"
  4615. ],
  4616. "authors": [
  4617. {
  4618. "name": "Bernhard Schussek",
  4619. "email": "bschussek@gmail.com"
  4620. }
  4621. ],
  4622. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  4623. "time": "2015-12-17T08:42:14+00:00"
  4624. },
  4625. {
  4626. "name": "wikimedia/composer-merge-plugin",
  4627. "version": "v1.4.1",
  4628. "source": {
  4629. "type": "git",
  4630. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  4631. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  4632. },
  4633. "dist": {
  4634. "type": "zip",
  4635. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  4636. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  4637. "shasum": ""
  4638. },
  4639. "require": {
  4640. "composer-plugin-api": "^1.0",
  4641. "php": ">=5.3.2"
  4642. },
  4643. "require-dev": {
  4644. "composer/composer": "~1.0.0",
  4645. "jakub-onderka/php-parallel-lint": "~0.8",
  4646. "phpunit/phpunit": "~4.8|~5.0",
  4647. "squizlabs/php_codesniffer": "~2.1.0"
  4648. },
  4649. "type": "composer-plugin",
  4650. "extra": {
  4651. "branch-alias": {
  4652. "dev-master": "1.3.x-dev"
  4653. },
  4654. "class": "Wikimedia\\Composer\\MergePlugin"
  4655. },
  4656. "autoload": {
  4657. "psr-4": {
  4658. "Wikimedia\\Composer\\": "src/"
  4659. }
  4660. },
  4661. "notification-url": "https://packagist.org/downloads/",
  4662. "license": [
  4663. "MIT"
  4664. ],
  4665. "authors": [
  4666. {
  4667. "name": "Bryan Davis",
  4668. "email": "bd808@wikimedia.org"
  4669. }
  4670. ],
  4671. "description": "Composer plugin to merge multiple composer.json files",
  4672. "time": "2017-04-25T02:31:25+00:00"
  4673. },
  4674. {
  4675. "name": "zendframework/zend-diactoros",
  4676. "version": "1.7.1",
  4677. "source": {
  4678. "type": "git",
  4679. "url": "https://github.com/zendframework/zend-diactoros.git",
  4680. "reference": "bf26aff803a11c5cc8eb7c4878a702c403ec67f1"
  4681. },
  4682. "dist": {
  4683. "type": "zip",
  4684. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/bf26aff803a11c5cc8eb7c4878a702c403ec67f1",
  4685. "reference": "bf26aff803a11c5cc8eb7c4878a702c403ec67f1",
  4686. "shasum": ""
  4687. },
  4688. "require": {
  4689. "php": "^5.6 || ^7.0",
  4690. "psr/http-message": "^1.0"
  4691. },
  4692. "provide": {
  4693. "psr/http-message-implementation": "1.0"
  4694. },
  4695. "require-dev": {
  4696. "ext-dom": "*",
  4697. "ext-libxml": "*",
  4698. "phpunit/phpunit": "^5.7.16 || ^6.0.8",
  4699. "zendframework/zend-coding-standard": "~1.0"
  4700. },
  4701. "type": "library",
  4702. "extra": {
  4703. "branch-alias": {
  4704. "dev-master": "1.7.x-dev",
  4705. "dev-develop": "1.8.x-dev"
  4706. }
  4707. },
  4708. "autoload": {
  4709. "psr-4": {
  4710. "Zend\\Diactoros\\": "src/"
  4711. }
  4712. },
  4713. "notification-url": "https://packagist.org/downloads/",
  4714. "license": [
  4715. "BSD-2-Clause"
  4716. ],
  4717. "description": "PSR HTTP Message implementations",
  4718. "homepage": "https://github.com/zendframework/zend-diactoros",
  4719. "keywords": [
  4720. "http",
  4721. "psr",
  4722. "psr-7"
  4723. ],
  4724. "time": "2018-02-26T15:44:50+00:00"
  4725. },
  4726. {
  4727. "name": "zendframework/zend-escaper",
  4728. "version": "2.5.2",
  4729. "source": {
  4730. "type": "git",
  4731. "url": "https://github.com/zendframework/zend-escaper.git",
  4732. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e"
  4733. },
  4734. "dist": {
  4735. "type": "zip",
  4736. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  4737. "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
  4738. "shasum": ""
  4739. },
  4740. "require": {
  4741. "php": ">=5.5"
  4742. },
  4743. "require-dev": {
  4744. "fabpot/php-cs-fixer": "1.7.*",
  4745. "phpunit/phpunit": "~4.0"
  4746. },
  4747. "type": "library",
  4748. "extra": {
  4749. "branch-alias": {
  4750. "dev-master": "2.5-dev",
  4751. "dev-develop": "2.6-dev"
  4752. }
  4753. },
  4754. "autoload": {
  4755. "psr-4": {
  4756. "Zend\\Escaper\\": "src/"
  4757. }
  4758. },
  4759. "notification-url": "https://packagist.org/downloads/",
  4760. "license": [
  4761. "BSD-3-Clause"
  4762. ],
  4763. "homepage": "https://github.com/zendframework/zend-escaper",
  4764. "keywords": [
  4765. "escaper",
  4766. "zf2"
  4767. ],
  4768. "time": "2016-06-30T19:48:38+00:00"
  4769. },
  4770. {
  4771. "name": "zendframework/zend-feed",
  4772. "version": "2.9.0",
  4773. "source": {
  4774. "type": "git",
  4775. "url": "https://github.com/zendframework/zend-feed.git",
  4776. "reference": "abe88686124d492e0a2a84656f15e5482bfbe030"
  4777. },
  4778. "dist": {
  4779. "type": "zip",
  4780. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/abe88686124d492e0a2a84656f15e5482bfbe030",
  4781. "reference": "abe88686124d492e0a2a84656f15e5482bfbe030",
  4782. "shasum": ""
  4783. },
  4784. "require": {
  4785. "php": "^5.6 || ^7.0",
  4786. "zendframework/zend-escaper": "^2.5.2",
  4787. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  4788. },
  4789. "require-dev": {
  4790. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  4791. "psr/http-message": "^1.0.1",
  4792. "zendframework/zend-cache": "^2.7.2",
  4793. "zendframework/zend-coding-standard": "~1.0.0",
  4794. "zendframework/zend-db": "^2.8.2",
  4795. "zendframework/zend-http": "^2.7",
  4796. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  4797. "zendframework/zend-validator": "^2.10.1"
  4798. },
  4799. "suggest": {
  4800. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  4801. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  4802. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  4803. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  4804. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  4805. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  4806. },
  4807. "type": "library",
  4808. "extra": {
  4809. "branch-alias": {
  4810. "dev-master": "2.9-dev",
  4811. "dev-develop": "2.10-dev"
  4812. }
  4813. },
  4814. "autoload": {
  4815. "psr-4": {
  4816. "Zend\\Feed\\": "src/"
  4817. }
  4818. },
  4819. "notification-url": "https://packagist.org/downloads/",
  4820. "license": [
  4821. "BSD-3-Clause"
  4822. ],
  4823. "description": "provides functionality for consuming RSS and Atom feeds",
  4824. "keywords": [
  4825. "ZendFramework",
  4826. "feed",
  4827. "zf"
  4828. ],
  4829. "time": "2017-12-04T17:59:38+00:00"
  4830. },
  4831. {
  4832. "name": "zendframework/zend-stdlib",
  4833. "version": "3.1.0",
  4834. "source": {
  4835. "type": "git",
  4836. "url": "https://github.com/zendframework/zend-stdlib.git",
  4837. "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78"
  4838. },
  4839. "dist": {
  4840. "type": "zip",
  4841. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/debedcfc373a293f9250cc9aa03cf121428c8e78",
  4842. "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78",
  4843. "shasum": ""
  4844. },
  4845. "require": {
  4846. "php": "^5.6 || ^7.0"
  4847. },
  4848. "require-dev": {
  4849. "athletic/athletic": "~0.1",
  4850. "phpunit/phpunit": "~4.0",
  4851. "squizlabs/php_codesniffer": "^2.6.2"
  4852. },
  4853. "type": "library",
  4854. "extra": {
  4855. "branch-alias": {
  4856. "dev-master": "3.1-dev",
  4857. "dev-develop": "3.2-dev"
  4858. }
  4859. },
  4860. "autoload": {
  4861. "psr-4": {
  4862. "Zend\\Stdlib\\": "src/"
  4863. }
  4864. },
  4865. "notification-url": "https://packagist.org/downloads/",
  4866. "license": [
  4867. "BSD-3-Clause"
  4868. ],
  4869. "homepage": "https://github.com/zendframework/zend-stdlib",
  4870. "keywords": [
  4871. "stdlib",
  4872. "zf2"
  4873. ],
  4874. "time": "2016-09-13T14:38:50+00:00"
  4875. }
  4876. ],
  4877. "packages-dev": [
  4878. {
  4879. "name": "behat/mink",
  4880. "version": "dev-master",
  4881. "source": {
  4882. "type": "git",
  4883. "url": "https://github.com/minkphp/Mink.git",
  4884. "reference": "04ab7af68536ac2c80fd6c08a6fd3620d3409891"
  4885. },
  4886. "dist": {
  4887. "type": "zip",
  4888. "url": "https://api.github.com/repos/minkphp/Mink/zipball/04ab7af68536ac2c80fd6c08a6fd3620d3409891",
  4889. "reference": "04ab7af68536ac2c80fd6c08a6fd3620d3409891",
  4890. "shasum": ""
  4891. },
  4892. "require": {
  4893. "php": ">=5.3.1",
  4894. "symfony/css-selector": "^2.7|^3.0|^4.0"
  4895. },
  4896. "require-dev": {
  4897. "symfony/phpunit-bridge": "^3.3|^4.0"
  4898. },
  4899. "suggest": {
  4900. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  4901. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  4902. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  4903. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)"
  4904. },
  4905. "type": "library",
  4906. "extra": {
  4907. "branch-alias": {
  4908. "dev-master": "1.7.x-dev"
  4909. }
  4910. },
  4911. "autoload": {
  4912. "psr-4": {
  4913. "Behat\\Mink\\": "src/"
  4914. }
  4915. },
  4916. "notification-url": "https://packagist.org/downloads/",
  4917. "license": [
  4918. "MIT"
  4919. ],
  4920. "authors": [
  4921. {
  4922. "name": "Konstantin Kudryashov",
  4923. "email": "ever.zet@gmail.com",
  4924. "homepage": "http://everzet.com"
  4925. }
  4926. ],
  4927. "description": "Browser controller/emulator abstraction for PHP",
  4928. "homepage": "http://mink.behat.org/",
  4929. "keywords": [
  4930. "browser",
  4931. "testing",
  4932. "web"
  4933. ],
  4934. "time": "2018-01-07T17:25:05+00:00"
  4935. },
  4936. {
  4937. "name": "behat/mink-browserkit-driver",
  4938. "version": "v1.3.2",
  4939. "source": {
  4940. "type": "git",
  4941. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  4942. "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb"
  4943. },
  4944. "dist": {
  4945. "type": "zip",
  4946. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  4947. "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb",
  4948. "shasum": ""
  4949. },
  4950. "require": {
  4951. "behat/mink": "^1.7.1@dev",
  4952. "php": ">=5.3.6",
  4953. "symfony/browser-kit": "~2.3|~3.0",
  4954. "symfony/dom-crawler": "~2.3|~3.0"
  4955. },
  4956. "require-dev": {
  4957. "silex/silex": "~1.2",
  4958. "symfony/phpunit-bridge": "~2.7|~3.0"
  4959. },
  4960. "type": "mink-driver",
  4961. "extra": {
  4962. "branch-alias": {
  4963. "dev-master": "1.3.x-dev"
  4964. }
  4965. },
  4966. "autoload": {
  4967. "psr-4": {
  4968. "Behat\\Mink\\Driver\\": "src/"
  4969. }
  4970. },
  4971. "notification-url": "https://packagist.org/downloads/",
  4972. "license": [
  4973. "MIT"
  4974. ],
  4975. "authors": [
  4976. {
  4977. "name": "Konstantin Kudryashov",
  4978. "email": "ever.zet@gmail.com",
  4979. "homepage": "http://everzet.com"
  4980. }
  4981. ],
  4982. "description": "Symfony2 BrowserKit driver for Mink framework",
  4983. "homepage": "http://mink.behat.org/",
  4984. "keywords": [
  4985. "Mink",
  4986. "Symfony2",
  4987. "browser",
  4988. "testing"
  4989. ],
  4990. "time": "2016-03-05T08:59:47+00:00"
  4991. },
  4992. {
  4993. "name": "behat/mink-goutte-driver",
  4994. "version": "v1.2.1",
  4995. "source": {
  4996. "type": "git",
  4997. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  4998. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  4999. },
  5000. "dist": {
  5001. "type": "zip",
  5002. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  5003. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  5004. "shasum": ""
  5005. },
  5006. "require": {
  5007. "behat/mink": "~1.6@dev",
  5008. "behat/mink-browserkit-driver": "~1.2@dev",
  5009. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  5010. "php": ">=5.3.1"
  5011. },
  5012. "require-dev": {
  5013. "symfony/phpunit-bridge": "~2.7|~3.0"
  5014. },
  5015. "type": "mink-driver",
  5016. "extra": {
  5017. "branch-alias": {
  5018. "dev-master": "1.2.x-dev"
  5019. }
  5020. },
  5021. "autoload": {
  5022. "psr-4": {
  5023. "Behat\\Mink\\Driver\\": "src/"
  5024. }
  5025. },
  5026. "notification-url": "https://packagist.org/downloads/",
  5027. "license": [
  5028. "MIT"
  5029. ],
  5030. "authors": [
  5031. {
  5032. "name": "Konstantin Kudryashov",
  5033. "email": "ever.zet@gmail.com",
  5034. "homepage": "http://everzet.com"
  5035. }
  5036. ],
  5037. "description": "Goutte driver for Mink framework",
  5038. "homepage": "http://mink.behat.org/",
  5039. "keywords": [
  5040. "browser",
  5041. "goutte",
  5042. "headless",
  5043. "testing"
  5044. ],
  5045. "time": "2016-03-05T09:04:22+00:00"
  5046. },
  5047. {
  5048. "name": "behat/mink-selenium2-driver",
  5049. "version": "dev-master",
  5050. "source": {
  5051. "type": "git",
  5052. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  5053. "reference": "93474c65a2a7bf959200ab5f7a14cc450645c185"
  5054. },
  5055. "dist": {
  5056. "type": "zip",
  5057. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/93474c65a2a7bf959200ab5f7a14cc450645c185",
  5058. "reference": "93474c65a2a7bf959200ab5f7a14cc450645c185",
  5059. "shasum": ""
  5060. },
  5061. "require": {
  5062. "behat/mink": "~1.7@dev",
  5063. "instaclick/php-webdriver": "~1.1",
  5064. "php": ">=5.3.1"
  5065. },
  5066. "require-dev": {
  5067. "mink/driver-testsuite": "dev-master"
  5068. },
  5069. "type": "mink-driver",
  5070. "extra": {
  5071. "branch-alias": {
  5072. "dev-master": "1.3.x-dev"
  5073. }
  5074. },
  5075. "autoload": {
  5076. "psr-4": {
  5077. "Behat\\Mink\\Driver\\": "src/"
  5078. }
  5079. },
  5080. "notification-url": "https://packagist.org/downloads/",
  5081. "license": [
  5082. "MIT"
  5083. ],
  5084. "authors": [
  5085. {
  5086. "name": "Konstantin Kudryashov",
  5087. "email": "ever.zet@gmail.com",
  5088. "homepage": "http://everzet.com"
  5089. },
  5090. {
  5091. "name": "Pete Otaqui",
  5092. "email": "pete@otaqui.com",
  5093. "homepage": "https://github.com/pete-otaqui"
  5094. }
  5095. ],
  5096. "description": "Selenium2 (WebDriver) driver for Mink framework",
  5097. "homepage": "http://mink.behat.org/",
  5098. "keywords": [
  5099. "ajax",
  5100. "browser",
  5101. "javascript",
  5102. "selenium",
  5103. "testing",
  5104. "webdriver"
  5105. ],
  5106. "time": "2018-01-07T19:17:08+00:00"
  5107. },
  5108. {
  5109. "name": "doctrine/instantiator",
  5110. "version": "1.0.5",
  5111. "source": {
  5112. "type": "git",
  5113. "url": "https://github.com/doctrine/instantiator.git",
  5114. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  5115. },
  5116. "dist": {
  5117. "type": "zip",
  5118. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  5119. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  5120. "shasum": ""
  5121. },
  5122. "require": {
  5123. "php": ">=5.3,<8.0-DEV"
  5124. },
  5125. "require-dev": {
  5126. "athletic/athletic": "~0.1.8",
  5127. "ext-pdo": "*",
  5128. "ext-phar": "*",
  5129. "phpunit/phpunit": "~4.0",
  5130. "squizlabs/php_codesniffer": "~2.0"
  5131. },
  5132. "type": "library",
  5133. "extra": {
  5134. "branch-alias": {
  5135. "dev-master": "1.0.x-dev"
  5136. }
  5137. },
  5138. "autoload": {
  5139. "psr-4": {
  5140. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5141. }
  5142. },
  5143. "notification-url": "https://packagist.org/downloads/",
  5144. "license": [
  5145. "MIT"
  5146. ],
  5147. "authors": [
  5148. {
  5149. "name": "Marco Pivetta",
  5150. "email": "ocramius@gmail.com",
  5151. "homepage": "http://ocramius.github.com/"
  5152. }
  5153. ],
  5154. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5155. "homepage": "https://github.com/doctrine/instantiator",
  5156. "keywords": [
  5157. "constructor",
  5158. "instantiate"
  5159. ],
  5160. "time": "2015-06-14T21:17:01+00:00"
  5161. },
  5162. {
  5163. "name": "drupal/coder",
  5164. "version": "8.2.12",
  5165. "source": {
  5166. "type": "git",
  5167. "url": "https://git.drupal.org/project/coder.git",
  5168. "reference": "984c54a7b1e8f27ff1c32348df69712afd86b17f"
  5169. },
  5170. "require": {
  5171. "ext-mbstring": "*",
  5172. "php": ">=5.4.0",
  5173. "squizlabs/php_codesniffer": ">=2.8.1 <3.0",
  5174. "symfony/yaml": ">=2.0.0"
  5175. },
  5176. "require-dev": {
  5177. "phpunit/phpunit": ">=3.7 <6"
  5178. },
  5179. "type": "phpcodesniffer-standard",
  5180. "notification-url": "https://packagist.org/downloads/",
  5181. "license": [
  5182. "GPL-2.0+"
  5183. ],
  5184. "description": "Coder is a library to review Drupal code.",
  5185. "homepage": "https://www.drupal.org/project/coder",
  5186. "keywords": [
  5187. "code review",
  5188. "phpcs",
  5189. "standards"
  5190. ],
  5191. "time": "2017-03-18T10:28:49+00:00"
  5192. },
  5193. {
  5194. "name": "fabpot/goutte",
  5195. "version": "v3.2.2",
  5196. "source": {
  5197. "type": "git",
  5198. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  5199. "reference": "395f61d7c2e15a813839769553a4de16fa3b3c96"
  5200. },
  5201. "dist": {
  5202. "type": "zip",
  5203. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/395f61d7c2e15a813839769553a4de16fa3b3c96",
  5204. "reference": "395f61d7c2e15a813839769553a4de16fa3b3c96",
  5205. "shasum": ""
  5206. },
  5207. "require": {
  5208. "guzzlehttp/guzzle": "^6.0",
  5209. "php": ">=5.5.0",
  5210. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  5211. "symfony/css-selector": "~2.1|~3.0|~4.0",
  5212. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  5213. },
  5214. "require-dev": {
  5215. "symfony/phpunit-bridge": "^3.3 || ^4"
  5216. },
  5217. "type": "application",
  5218. "extra": {
  5219. "branch-alias": {
  5220. "dev-master": "3.2-dev"
  5221. }
  5222. },
  5223. "autoload": {
  5224. "psr-4": {
  5225. "Goutte\\": "Goutte"
  5226. },
  5227. "exclude-from-classmap": [
  5228. "Goutte/Tests"
  5229. ]
  5230. },
  5231. "notification-url": "https://packagist.org/downloads/",
  5232. "license": [
  5233. "MIT"
  5234. ],
  5235. "authors": [
  5236. {
  5237. "name": "Fabien Potencier",
  5238. "email": "fabien@symfony.com"
  5239. }
  5240. ],
  5241. "description": "A simple PHP Web Scraper",
  5242. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  5243. "keywords": [
  5244. "scraper"
  5245. ],
  5246. "time": "2017-11-19T08:45:40+00:00"
  5247. },
  5248. {
  5249. "name": "instaclick/php-webdriver",
  5250. "version": "1.4.5",
  5251. "source": {
  5252. "type": "git",
  5253. "url": "https://github.com/instaclick/php-webdriver.git",
  5254. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  5255. },
  5256. "dist": {
  5257. "type": "zip",
  5258. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  5259. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  5260. "shasum": ""
  5261. },
  5262. "require": {
  5263. "ext-curl": "*",
  5264. "php": ">=5.3.2"
  5265. },
  5266. "require-dev": {
  5267. "phpunit/phpunit": "^4.8",
  5268. "satooshi/php-coveralls": "^1.0||^2.0"
  5269. },
  5270. "type": "library",
  5271. "extra": {
  5272. "branch-alias": {
  5273. "dev-master": "1.4.x-dev"
  5274. }
  5275. },
  5276. "autoload": {
  5277. "psr-0": {
  5278. "WebDriver": "lib/"
  5279. }
  5280. },
  5281. "notification-url": "https://packagist.org/downloads/",
  5282. "license": [
  5283. "Apache-2.0"
  5284. ],
  5285. "authors": [
  5286. {
  5287. "name": "Justin Bishop",
  5288. "email": "jubishop@gmail.com",
  5289. "role": "Developer"
  5290. },
  5291. {
  5292. "name": "Anthon Pang",
  5293. "email": "apang@softwaredevelopment.ca",
  5294. "role": "Fork Maintainer"
  5295. }
  5296. ],
  5297. "description": "PHP WebDriver for Selenium 2",
  5298. "homepage": "http://instaclick.com/",
  5299. "keywords": [
  5300. "browser",
  5301. "selenium",
  5302. "webdriver",
  5303. "webtest"
  5304. ],
  5305. "time": "2017-06-30T04:02:48+00:00"
  5306. },
  5307. {
  5308. "name": "jcalderonzumba/gastonjs",
  5309. "version": "v1.2.0",
  5310. "source": {
  5311. "type": "git",
  5312. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  5313. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  5314. },
  5315. "dist": {
  5316. "type": "zip",
  5317. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  5318. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  5319. "shasum": ""
  5320. },
  5321. "require": {
  5322. "guzzlehttp/guzzle": "~5.0|~6.0",
  5323. "php": ">=5.4"
  5324. },
  5325. "require-dev": {
  5326. "phpunit/phpunit": "~4.6",
  5327. "silex/silex": "~1.2",
  5328. "symfony/phpunit-bridge": "~2.7",
  5329. "symfony/process": "~2.1"
  5330. },
  5331. "type": "phantomjs-api",
  5332. "extra": {
  5333. "branch-alias": {
  5334. "dev-master": "1.1.x-dev"
  5335. }
  5336. },
  5337. "autoload": {
  5338. "psr-4": {
  5339. "Zumba\\GastonJS\\": "src"
  5340. }
  5341. },
  5342. "notification-url": "https://packagist.org/downloads/",
  5343. "license": [
  5344. "MIT"
  5345. ],
  5346. "authors": [
  5347. {
  5348. "name": "Juan Francisco Calderón Zumba",
  5349. "email": "juanfcz@gmail.com",
  5350. "homepage": "http://github.com/jcalderonzumba"
  5351. }
  5352. ],
  5353. "description": "PhantomJS API based server for webpage automation",
  5354. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  5355. "keywords": [
  5356. "api",
  5357. "automation",
  5358. "browser",
  5359. "headless",
  5360. "phantomjs"
  5361. ],
  5362. "time": "2017-03-31T07:31:47+00:00"
  5363. },
  5364. {
  5365. "name": "jcalderonzumba/mink-phantomjs-driver",
  5366. "version": "v0.3.3",
  5367. "source": {
  5368. "type": "git",
  5369. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  5370. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  5371. },
  5372. "dist": {
  5373. "type": "zip",
  5374. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  5375. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  5376. "shasum": ""
  5377. },
  5378. "require": {
  5379. "behat/mink": "~1.7",
  5380. "jcalderonzumba/gastonjs": "~1.0",
  5381. "php": ">=5.4",
  5382. "twig/twig": "~1.20|~2.0"
  5383. },
  5384. "require-dev": {
  5385. "mink/driver-testsuite": "dev-master",
  5386. "phpunit/phpunit": "~4.6"
  5387. },
  5388. "type": "mink-driver",
  5389. "extra": {
  5390. "branch-alias": {
  5391. "dev-master": "0.4.x-dev"
  5392. }
  5393. },
  5394. "autoload": {
  5395. "psr-4": {
  5396. "Zumba\\Mink\\Driver\\": "src"
  5397. }
  5398. },
  5399. "notification-url": "https://packagist.org/downloads/",
  5400. "license": [
  5401. "MIT"
  5402. ],
  5403. "authors": [
  5404. {
  5405. "name": "Juan Francisco Calderón Zumba",
  5406. "email": "juanfcz@gmail.com",
  5407. "homepage": "http://github.com/jcalderonzumba"
  5408. }
  5409. ],
  5410. "description": "PhantomJS driver for Mink framework",
  5411. "homepage": "http://mink.behat.org/",
  5412. "keywords": [
  5413. "ajax",
  5414. "browser",
  5415. "headless",
  5416. "javascript",
  5417. "phantomjs",
  5418. "testing"
  5419. ],
  5420. "time": "2016-12-01T10:57:30+00:00"
  5421. },
  5422. {
  5423. "name": "mikey179/vfsStream",
  5424. "version": "v1.6.5",
  5425. "source": {
  5426. "type": "git",
  5427. "url": "https://github.com/mikey179/vfsStream.git",
  5428. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  5429. },
  5430. "dist": {
  5431. "type": "zip",
  5432. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  5433. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  5434. "shasum": ""
  5435. },
  5436. "require": {
  5437. "php": ">=5.3.0"
  5438. },
  5439. "require-dev": {
  5440. "phpunit/phpunit": "~4.5"
  5441. },
  5442. "type": "library",
  5443. "extra": {
  5444. "branch-alias": {
  5445. "dev-master": "1.6.x-dev"
  5446. }
  5447. },
  5448. "autoload": {
  5449. "psr-0": {
  5450. "org\\bovigo\\vfs\\": "src/main/php"
  5451. }
  5452. },
  5453. "notification-url": "https://packagist.org/downloads/",
  5454. "license": [
  5455. "BSD-3-Clause"
  5456. ],
  5457. "authors": [
  5458. {
  5459. "name": "Frank Kleine",
  5460. "homepage": "http://frankkleine.de/",
  5461. "role": "Developer"
  5462. }
  5463. ],
  5464. "description": "Virtual file system to mock the real file system in unit tests.",
  5465. "homepage": "http://vfs.bovigo.org/",
  5466. "time": "2017-08-01T08:02:14+00:00"
  5467. },
  5468. {
  5469. "name": "myclabs/deep-copy",
  5470. "version": "1.7.0",
  5471. "source": {
  5472. "type": "git",
  5473. "url": "https://github.com/myclabs/DeepCopy.git",
  5474. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  5475. },
  5476. "dist": {
  5477. "type": "zip",
  5478. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  5479. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  5480. "shasum": ""
  5481. },
  5482. "require": {
  5483. "php": "^5.6 || ^7.0"
  5484. },
  5485. "require-dev": {
  5486. "doctrine/collections": "^1.0",
  5487. "doctrine/common": "^2.6",
  5488. "phpunit/phpunit": "^4.1"
  5489. },
  5490. "type": "library",
  5491. "autoload": {
  5492. "psr-4": {
  5493. "DeepCopy\\": "src/DeepCopy/"
  5494. },
  5495. "files": [
  5496. "src/DeepCopy/deep_copy.php"
  5497. ]
  5498. },
  5499. "notification-url": "https://packagist.org/downloads/",
  5500. "license": [
  5501. "MIT"
  5502. ],
  5503. "description": "Create deep copies (clones) of your objects",
  5504. "keywords": [
  5505. "clone",
  5506. "copy",
  5507. "duplicate",
  5508. "object",
  5509. "object graph"
  5510. ],
  5511. "time": "2017-10-19T19:58:43+00:00"
  5512. },
  5513. {
  5514. "name": "phar-io/manifest",
  5515. "version": "1.0.1",
  5516. "source": {
  5517. "type": "git",
  5518. "url": "https://github.com/phar-io/manifest.git",
  5519. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  5520. },
  5521. "dist": {
  5522. "type": "zip",
  5523. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  5524. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  5525. "shasum": ""
  5526. },
  5527. "require": {
  5528. "ext-dom": "*",
  5529. "ext-phar": "*",
  5530. "phar-io/version": "^1.0.1",
  5531. "php": "^5.6 || ^7.0"
  5532. },
  5533. "type": "library",
  5534. "extra": {
  5535. "branch-alias": {
  5536. "dev-master": "1.0.x-dev"
  5537. }
  5538. },
  5539. "autoload": {
  5540. "classmap": [
  5541. "src/"
  5542. ]
  5543. },
  5544. "notification-url": "https://packagist.org/downloads/",
  5545. "license": [
  5546. "BSD-3-Clause"
  5547. ],
  5548. "authors": [
  5549. {
  5550. "name": "Arne Blankerts",
  5551. "email": "arne@blankerts.de",
  5552. "role": "Developer"
  5553. },
  5554. {
  5555. "name": "Sebastian Heuer",
  5556. "email": "sebastian@phpeople.de",
  5557. "role": "Developer"
  5558. },
  5559. {
  5560. "name": "Sebastian Bergmann",
  5561. "email": "sebastian@phpunit.de",
  5562. "role": "Developer"
  5563. }
  5564. ],
  5565. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5566. "time": "2017-03-05T18:14:27+00:00"
  5567. },
  5568. {
  5569. "name": "phar-io/version",
  5570. "version": "1.0.1",
  5571. "source": {
  5572. "type": "git",
  5573. "url": "https://github.com/phar-io/version.git",
  5574. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  5575. },
  5576. "dist": {
  5577. "type": "zip",
  5578. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  5579. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  5580. "shasum": ""
  5581. },
  5582. "require": {
  5583. "php": "^5.6 || ^7.0"
  5584. },
  5585. "type": "library",
  5586. "autoload": {
  5587. "classmap": [
  5588. "src/"
  5589. ]
  5590. },
  5591. "notification-url": "https://packagist.org/downloads/",
  5592. "license": [
  5593. "BSD-3-Clause"
  5594. ],
  5595. "authors": [
  5596. {
  5597. "name": "Arne Blankerts",
  5598. "email": "arne@blankerts.de",
  5599. "role": "Developer"
  5600. },
  5601. {
  5602. "name": "Sebastian Heuer",
  5603. "email": "sebastian@phpeople.de",
  5604. "role": "Developer"
  5605. },
  5606. {
  5607. "name": "Sebastian Bergmann",
  5608. "email": "sebastian@phpunit.de",
  5609. "role": "Developer"
  5610. }
  5611. ],
  5612. "description": "Library for handling version information and constraints",
  5613. "time": "2017-03-05T17:38:23+00:00"
  5614. },
  5615. {
  5616. "name": "phpdocumentor/reflection-common",
  5617. "version": "1.0.1",
  5618. "source": {
  5619. "type": "git",
  5620. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5621. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  5622. },
  5623. "dist": {
  5624. "type": "zip",
  5625. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5626. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5627. "shasum": ""
  5628. },
  5629. "require": {
  5630. "php": ">=5.5"
  5631. },
  5632. "require-dev": {
  5633. "phpunit/phpunit": "^4.6"
  5634. },
  5635. "type": "library",
  5636. "extra": {
  5637. "branch-alias": {
  5638. "dev-master": "1.0.x-dev"
  5639. }
  5640. },
  5641. "autoload": {
  5642. "psr-4": {
  5643. "phpDocumentor\\Reflection\\": [
  5644. "src"
  5645. ]
  5646. }
  5647. },
  5648. "notification-url": "https://packagist.org/downloads/",
  5649. "license": [
  5650. "MIT"
  5651. ],
  5652. "authors": [
  5653. {
  5654. "name": "Jaap van Otterdijk",
  5655. "email": "opensource@ijaap.nl"
  5656. }
  5657. ],
  5658. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5659. "homepage": "http://www.phpdoc.org",
  5660. "keywords": [
  5661. "FQSEN",
  5662. "phpDocumentor",
  5663. "phpdoc",
  5664. "reflection",
  5665. "static analysis"
  5666. ],
  5667. "time": "2017-09-11T18:02:19+00:00"
  5668. },
  5669. {
  5670. "name": "phpdocumentor/reflection-docblock",
  5671. "version": "4.3.0",
  5672. "source": {
  5673. "type": "git",
  5674. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5675. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  5676. },
  5677. "dist": {
  5678. "type": "zip",
  5679. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  5680. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  5681. "shasum": ""
  5682. },
  5683. "require": {
  5684. "php": "^7.0",
  5685. "phpdocumentor/reflection-common": "^1.0.0",
  5686. "phpdocumentor/type-resolver": "^0.4.0",
  5687. "webmozart/assert": "^1.0"
  5688. },
  5689. "require-dev": {
  5690. "doctrine/instantiator": "~1.0.5",
  5691. "mockery/mockery": "^1.0",
  5692. "phpunit/phpunit": "^6.4"
  5693. },
  5694. "type": "library",
  5695. "extra": {
  5696. "branch-alias": {
  5697. "dev-master": "4.x-dev"
  5698. }
  5699. },
  5700. "autoload": {
  5701. "psr-4": {
  5702. "phpDocumentor\\Reflection\\": [
  5703. "src/"
  5704. ]
  5705. }
  5706. },
  5707. "notification-url": "https://packagist.org/downloads/",
  5708. "license": [
  5709. "MIT"
  5710. ],
  5711. "authors": [
  5712. {
  5713. "name": "Mike van Riel",
  5714. "email": "me@mikevanriel.com"
  5715. }
  5716. ],
  5717. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5718. "time": "2017-11-30T07:14:17+00:00"
  5719. },
  5720. {
  5721. "name": "phpdocumentor/type-resolver",
  5722. "version": "0.4.0",
  5723. "source": {
  5724. "type": "git",
  5725. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5726. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  5727. },
  5728. "dist": {
  5729. "type": "zip",
  5730. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  5731. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  5732. "shasum": ""
  5733. },
  5734. "require": {
  5735. "php": "^5.5 || ^7.0",
  5736. "phpdocumentor/reflection-common": "^1.0"
  5737. },
  5738. "require-dev": {
  5739. "mockery/mockery": "^0.9.4",
  5740. "phpunit/phpunit": "^5.2||^4.8.24"
  5741. },
  5742. "type": "library",
  5743. "extra": {
  5744. "branch-alias": {
  5745. "dev-master": "1.0.x-dev"
  5746. }
  5747. },
  5748. "autoload": {
  5749. "psr-4": {
  5750. "phpDocumentor\\Reflection\\": [
  5751. "src/"
  5752. ]
  5753. }
  5754. },
  5755. "notification-url": "https://packagist.org/downloads/",
  5756. "license": [
  5757. "MIT"
  5758. ],
  5759. "authors": [
  5760. {
  5761. "name": "Mike van Riel",
  5762. "email": "me@mikevanriel.com"
  5763. }
  5764. ],
  5765. "time": "2017-07-14T14:27:02+00:00"
  5766. },
  5767. {
  5768. "name": "phpspec/prophecy",
  5769. "version": "1.7.5",
  5770. "source": {
  5771. "type": "git",
  5772. "url": "https://github.com/phpspec/prophecy.git",
  5773. "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401"
  5774. },
  5775. "dist": {
  5776. "type": "zip",
  5777. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/dfd6be44111a7c41c2e884a336cc4f461b3b2401",
  5778. "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401",
  5779. "shasum": ""
  5780. },
  5781. "require": {
  5782. "doctrine/instantiator": "^1.0.2",
  5783. "php": "^5.3|^7.0",
  5784. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  5785. "sebastian/comparator": "^1.1|^2.0",
  5786. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  5787. },
  5788. "require-dev": {
  5789. "phpspec/phpspec": "^2.5|^3.2",
  5790. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  5791. },
  5792. "type": "library",
  5793. "extra": {
  5794. "branch-alias": {
  5795. "dev-master": "1.7.x-dev"
  5796. }
  5797. },
  5798. "autoload": {
  5799. "psr-0": {
  5800. "Prophecy\\": "src/"
  5801. }
  5802. },
  5803. "notification-url": "https://packagist.org/downloads/",
  5804. "license": [
  5805. "MIT"
  5806. ],
  5807. "authors": [
  5808. {
  5809. "name": "Konstantin Kudryashov",
  5810. "email": "ever.zet@gmail.com",
  5811. "homepage": "http://everzet.com"
  5812. },
  5813. {
  5814. "name": "Marcello Duarte",
  5815. "email": "marcello.duarte@gmail.com"
  5816. }
  5817. ],
  5818. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5819. "homepage": "https://github.com/phpspec/prophecy",
  5820. "keywords": [
  5821. "Double",
  5822. "Dummy",
  5823. "fake",
  5824. "mock",
  5825. "spy",
  5826. "stub"
  5827. ],
  5828. "time": "2018-02-19T10:16:54+00:00"
  5829. },
  5830. {
  5831. "name": "phpunit/php-code-coverage",
  5832. "version": "5.3.0",
  5833. "source": {
  5834. "type": "git",
  5835. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  5836. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1"
  5837. },
  5838. "dist": {
  5839. "type": "zip",
  5840. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/661f34d0bd3f1a7225ef491a70a020ad23a057a1",
  5841. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1",
  5842. "shasum": ""
  5843. },
  5844. "require": {
  5845. "ext-dom": "*",
  5846. "ext-xmlwriter": "*",
  5847. "php": "^7.0",
  5848. "phpunit/php-file-iterator": "^1.4.2",
  5849. "phpunit/php-text-template": "^1.2.1",
  5850. "phpunit/php-token-stream": "^2.0.1",
  5851. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  5852. "sebastian/environment": "^3.0",
  5853. "sebastian/version": "^2.0.1",
  5854. "theseer/tokenizer": "^1.1"
  5855. },
  5856. "require-dev": {
  5857. "phpunit/phpunit": "^6.0"
  5858. },
  5859. "suggest": {
  5860. "ext-xdebug": "^2.5.5"
  5861. },
  5862. "type": "library",
  5863. "extra": {
  5864. "branch-alias": {
  5865. "dev-master": "5.3.x-dev"
  5866. }
  5867. },
  5868. "autoload": {
  5869. "classmap": [
  5870. "src/"
  5871. ]
  5872. },
  5873. "notification-url": "https://packagist.org/downloads/",
  5874. "license": [
  5875. "BSD-3-Clause"
  5876. ],
  5877. "authors": [
  5878. {
  5879. "name": "Sebastian Bergmann",
  5880. "email": "sebastian@phpunit.de",
  5881. "role": "lead"
  5882. }
  5883. ],
  5884. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5885. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5886. "keywords": [
  5887. "coverage",
  5888. "testing",
  5889. "xunit"
  5890. ],
  5891. "time": "2017-12-06T09:29:45+00:00"
  5892. },
  5893. {
  5894. "name": "phpunit/php-file-iterator",
  5895. "version": "1.4.5",
  5896. "source": {
  5897. "type": "git",
  5898. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5899. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  5900. },
  5901. "dist": {
  5902. "type": "zip",
  5903. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  5904. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  5905. "shasum": ""
  5906. },
  5907. "require": {
  5908. "php": ">=5.3.3"
  5909. },
  5910. "type": "library",
  5911. "extra": {
  5912. "branch-alias": {
  5913. "dev-master": "1.4.x-dev"
  5914. }
  5915. },
  5916. "autoload": {
  5917. "classmap": [
  5918. "src/"
  5919. ]
  5920. },
  5921. "notification-url": "https://packagist.org/downloads/",
  5922. "license": [
  5923. "BSD-3-Clause"
  5924. ],
  5925. "authors": [
  5926. {
  5927. "name": "Sebastian Bergmann",
  5928. "email": "sb@sebastian-bergmann.de",
  5929. "role": "lead"
  5930. }
  5931. ],
  5932. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5933. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5934. "keywords": [
  5935. "filesystem",
  5936. "iterator"
  5937. ],
  5938. "time": "2017-11-27T13:52:08+00:00"
  5939. },
  5940. {
  5941. "name": "phpunit/php-text-template",
  5942. "version": "1.2.1",
  5943. "source": {
  5944. "type": "git",
  5945. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  5946. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  5947. },
  5948. "dist": {
  5949. "type": "zip",
  5950. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5951. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5952. "shasum": ""
  5953. },
  5954. "require": {
  5955. "php": ">=5.3.3"
  5956. },
  5957. "type": "library",
  5958. "autoload": {
  5959. "classmap": [
  5960. "src/"
  5961. ]
  5962. },
  5963. "notification-url": "https://packagist.org/downloads/",
  5964. "license": [
  5965. "BSD-3-Clause"
  5966. ],
  5967. "authors": [
  5968. {
  5969. "name": "Sebastian Bergmann",
  5970. "email": "sebastian@phpunit.de",
  5971. "role": "lead"
  5972. }
  5973. ],
  5974. "description": "Simple template engine.",
  5975. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  5976. "keywords": [
  5977. "template"
  5978. ],
  5979. "time": "2015-06-21T13:50:34+00:00"
  5980. },
  5981. {
  5982. "name": "phpunit/php-timer",
  5983. "version": "1.0.9",
  5984. "source": {
  5985. "type": "git",
  5986. "url": "https://github.com/sebastianbergmann/php-timer.git",
  5987. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  5988. },
  5989. "dist": {
  5990. "type": "zip",
  5991. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  5992. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  5993. "shasum": ""
  5994. },
  5995. "require": {
  5996. "php": "^5.3.3 || ^7.0"
  5997. },
  5998. "require-dev": {
  5999. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  6000. },
  6001. "type": "library",
  6002. "extra": {
  6003. "branch-alias": {
  6004. "dev-master": "1.0-dev"
  6005. }
  6006. },
  6007. "autoload": {
  6008. "classmap": [
  6009. "src/"
  6010. ]
  6011. },
  6012. "notification-url": "https://packagist.org/downloads/",
  6013. "license": [
  6014. "BSD-3-Clause"
  6015. ],
  6016. "authors": [
  6017. {
  6018. "name": "Sebastian Bergmann",
  6019. "email": "sb@sebastian-bergmann.de",
  6020. "role": "lead"
  6021. }
  6022. ],
  6023. "description": "Utility class for timing",
  6024. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6025. "keywords": [
  6026. "timer"
  6027. ],
  6028. "time": "2017-02-26T11:10:40+00:00"
  6029. },
  6030. {
  6031. "name": "phpunit/php-token-stream",
  6032. "version": "2.0.2",
  6033. "source": {
  6034. "type": "git",
  6035. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  6036. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  6037. },
  6038. "dist": {
  6039. "type": "zip",
  6040. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  6041. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  6042. "shasum": ""
  6043. },
  6044. "require": {
  6045. "ext-tokenizer": "*",
  6046. "php": "^7.0"
  6047. },
  6048. "require-dev": {
  6049. "phpunit/phpunit": "^6.2.4"
  6050. },
  6051. "type": "library",
  6052. "extra": {
  6053. "branch-alias": {
  6054. "dev-master": "2.0-dev"
  6055. }
  6056. },
  6057. "autoload": {
  6058. "classmap": [
  6059. "src/"
  6060. ]
  6061. },
  6062. "notification-url": "https://packagist.org/downloads/",
  6063. "license": [
  6064. "BSD-3-Clause"
  6065. ],
  6066. "authors": [
  6067. {
  6068. "name": "Sebastian Bergmann",
  6069. "email": "sebastian@phpunit.de"
  6070. }
  6071. ],
  6072. "description": "Wrapper around PHP's tokenizer extension.",
  6073. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  6074. "keywords": [
  6075. "tokenizer"
  6076. ],
  6077. "time": "2017-11-27T05:48:46+00:00"
  6078. },
  6079. {
  6080. "name": "phpunit/phpunit",
  6081. "version": "6.5.7",
  6082. "source": {
  6083. "type": "git",
  6084. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6085. "reference": "6bd77b57707c236833d2b57b968e403df060c9d9"
  6086. },
  6087. "dist": {
  6088. "type": "zip",
  6089. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6bd77b57707c236833d2b57b968e403df060c9d9",
  6090. "reference": "6bd77b57707c236833d2b57b968e403df060c9d9",
  6091. "shasum": ""
  6092. },
  6093. "require": {
  6094. "ext-dom": "*",
  6095. "ext-json": "*",
  6096. "ext-libxml": "*",
  6097. "ext-mbstring": "*",
  6098. "ext-xml": "*",
  6099. "myclabs/deep-copy": "^1.6.1",
  6100. "phar-io/manifest": "^1.0.1",
  6101. "phar-io/version": "^1.0",
  6102. "php": "^7.0",
  6103. "phpspec/prophecy": "^1.7",
  6104. "phpunit/php-code-coverage": "^5.3",
  6105. "phpunit/php-file-iterator": "^1.4.3",
  6106. "phpunit/php-text-template": "^1.2.1",
  6107. "phpunit/php-timer": "^1.0.9",
  6108. "phpunit/phpunit-mock-objects": "^5.0.5",
  6109. "sebastian/comparator": "^2.1",
  6110. "sebastian/diff": "^2.0",
  6111. "sebastian/environment": "^3.1",
  6112. "sebastian/exporter": "^3.1",
  6113. "sebastian/global-state": "^2.0",
  6114. "sebastian/object-enumerator": "^3.0.3",
  6115. "sebastian/resource-operations": "^1.0",
  6116. "sebastian/version": "^2.0.1"
  6117. },
  6118. "conflict": {
  6119. "phpdocumentor/reflection-docblock": "3.0.2",
  6120. "phpunit/dbunit": "<3.0"
  6121. },
  6122. "require-dev": {
  6123. "ext-pdo": "*"
  6124. },
  6125. "suggest": {
  6126. "ext-xdebug": "*",
  6127. "phpunit/php-invoker": "^1.1"
  6128. },
  6129. "bin": [
  6130. "phpunit"
  6131. ],
  6132. "type": "library",
  6133. "extra": {
  6134. "branch-alias": {
  6135. "dev-master": "6.5.x-dev"
  6136. }
  6137. },
  6138. "autoload": {
  6139. "classmap": [
  6140. "src/"
  6141. ]
  6142. },
  6143. "notification-url": "https://packagist.org/downloads/",
  6144. "license": [
  6145. "BSD-3-Clause"
  6146. ],
  6147. "authors": [
  6148. {
  6149. "name": "Sebastian Bergmann",
  6150. "email": "sebastian@phpunit.de",
  6151. "role": "lead"
  6152. }
  6153. ],
  6154. "description": "The PHP Unit Testing framework.",
  6155. "homepage": "https://phpunit.de/",
  6156. "keywords": [
  6157. "phpunit",
  6158. "testing",
  6159. "xunit"
  6160. ],
  6161. "time": "2018-02-26T07:01:09+00:00"
  6162. },
  6163. {
  6164. "name": "phpunit/phpunit-mock-objects",
  6165. "version": "5.0.6",
  6166. "source": {
  6167. "type": "git",
  6168. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  6169. "reference": "33fd41a76e746b8fa96d00b49a23dadfa8334cdf"
  6170. },
  6171. "dist": {
  6172. "type": "zip",
  6173. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/33fd41a76e746b8fa96d00b49a23dadfa8334cdf",
  6174. "reference": "33fd41a76e746b8fa96d00b49a23dadfa8334cdf",
  6175. "shasum": ""
  6176. },
  6177. "require": {
  6178. "doctrine/instantiator": "^1.0.5",
  6179. "php": "^7.0",
  6180. "phpunit/php-text-template": "^1.2.1",
  6181. "sebastian/exporter": "^3.1"
  6182. },
  6183. "conflict": {
  6184. "phpunit/phpunit": "<6.0"
  6185. },
  6186. "require-dev": {
  6187. "phpunit/phpunit": "^6.5"
  6188. },
  6189. "suggest": {
  6190. "ext-soap": "*"
  6191. },
  6192. "type": "library",
  6193. "extra": {
  6194. "branch-alias": {
  6195. "dev-master": "5.0.x-dev"
  6196. }
  6197. },
  6198. "autoload": {
  6199. "classmap": [
  6200. "src/"
  6201. ]
  6202. },
  6203. "notification-url": "https://packagist.org/downloads/",
  6204. "license": [
  6205. "BSD-3-Clause"
  6206. ],
  6207. "authors": [
  6208. {
  6209. "name": "Sebastian Bergmann",
  6210. "email": "sebastian@phpunit.de",
  6211. "role": "lead"
  6212. }
  6213. ],
  6214. "description": "Mock Object library for PHPUnit",
  6215. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  6216. "keywords": [
  6217. "mock",
  6218. "xunit"
  6219. ],
  6220. "time": "2018-01-06T05:45:45+00:00"
  6221. },
  6222. {
  6223. "name": "sebastian/code-unit-reverse-lookup",
  6224. "version": "1.0.1",
  6225. "source": {
  6226. "type": "git",
  6227. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6228. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  6229. },
  6230. "dist": {
  6231. "type": "zip",
  6232. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6233. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6234. "shasum": ""
  6235. },
  6236. "require": {
  6237. "php": "^5.6 || ^7.0"
  6238. },
  6239. "require-dev": {
  6240. "phpunit/phpunit": "^5.7 || ^6.0"
  6241. },
  6242. "type": "library",
  6243. "extra": {
  6244. "branch-alias": {
  6245. "dev-master": "1.0.x-dev"
  6246. }
  6247. },
  6248. "autoload": {
  6249. "classmap": [
  6250. "src/"
  6251. ]
  6252. },
  6253. "notification-url": "https://packagist.org/downloads/",
  6254. "license": [
  6255. "BSD-3-Clause"
  6256. ],
  6257. "authors": [
  6258. {
  6259. "name": "Sebastian Bergmann",
  6260. "email": "sebastian@phpunit.de"
  6261. }
  6262. ],
  6263. "description": "Looks up which function or method a line of code belongs to",
  6264. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6265. "time": "2017-03-04T06:30:41+00:00"
  6266. },
  6267. {
  6268. "name": "sebastian/comparator",
  6269. "version": "2.1.3",
  6270. "source": {
  6271. "type": "git",
  6272. "url": "https://github.com/sebastianbergmann/comparator.git",
  6273. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  6274. },
  6275. "dist": {
  6276. "type": "zip",
  6277. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  6278. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  6279. "shasum": ""
  6280. },
  6281. "require": {
  6282. "php": "^7.0",
  6283. "sebastian/diff": "^2.0 || ^3.0",
  6284. "sebastian/exporter": "^3.1"
  6285. },
  6286. "require-dev": {
  6287. "phpunit/phpunit": "^6.4"
  6288. },
  6289. "type": "library",
  6290. "extra": {
  6291. "branch-alias": {
  6292. "dev-master": "2.1.x-dev"
  6293. }
  6294. },
  6295. "autoload": {
  6296. "classmap": [
  6297. "src/"
  6298. ]
  6299. },
  6300. "notification-url": "https://packagist.org/downloads/",
  6301. "license": [
  6302. "BSD-3-Clause"
  6303. ],
  6304. "authors": [
  6305. {
  6306. "name": "Jeff Welch",
  6307. "email": "whatthejeff@gmail.com"
  6308. },
  6309. {
  6310. "name": "Volker Dusch",
  6311. "email": "github@wallbash.com"
  6312. },
  6313. {
  6314. "name": "Bernhard Schussek",
  6315. "email": "bschussek@2bepublished.at"
  6316. },
  6317. {
  6318. "name": "Sebastian Bergmann",
  6319. "email": "sebastian@phpunit.de"
  6320. }
  6321. ],
  6322. "description": "Provides the functionality to compare PHP values for equality",
  6323. "homepage": "https://github.com/sebastianbergmann/comparator",
  6324. "keywords": [
  6325. "comparator",
  6326. "compare",
  6327. "equality"
  6328. ],
  6329. "time": "2018-02-01T13:46:46+00:00"
  6330. },
  6331. {
  6332. "name": "sebastian/diff",
  6333. "version": "2.0.1",
  6334. "source": {
  6335. "type": "git",
  6336. "url": "https://github.com/sebastianbergmann/diff.git",
  6337. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  6338. },
  6339. "dist": {
  6340. "type": "zip",
  6341. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  6342. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  6343. "shasum": ""
  6344. },
  6345. "require": {
  6346. "php": "^7.0"
  6347. },
  6348. "require-dev": {
  6349. "phpunit/phpunit": "^6.2"
  6350. },
  6351. "type": "library",
  6352. "extra": {
  6353. "branch-alias": {
  6354. "dev-master": "2.0-dev"
  6355. }
  6356. },
  6357. "autoload": {
  6358. "classmap": [
  6359. "src/"
  6360. ]
  6361. },
  6362. "notification-url": "https://packagist.org/downloads/",
  6363. "license": [
  6364. "BSD-3-Clause"
  6365. ],
  6366. "authors": [
  6367. {
  6368. "name": "Kore Nordmann",
  6369. "email": "mail@kore-nordmann.de"
  6370. },
  6371. {
  6372. "name": "Sebastian Bergmann",
  6373. "email": "sebastian@phpunit.de"
  6374. }
  6375. ],
  6376. "description": "Diff implementation",
  6377. "homepage": "https://github.com/sebastianbergmann/diff",
  6378. "keywords": [
  6379. "diff"
  6380. ],
  6381. "time": "2017-08-03T08:09:46+00:00"
  6382. },
  6383. {
  6384. "name": "sebastian/environment",
  6385. "version": "3.1.0",
  6386. "source": {
  6387. "type": "git",
  6388. "url": "https://github.com/sebastianbergmann/environment.git",
  6389. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  6390. },
  6391. "dist": {
  6392. "type": "zip",
  6393. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  6394. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  6395. "shasum": ""
  6396. },
  6397. "require": {
  6398. "php": "^7.0"
  6399. },
  6400. "require-dev": {
  6401. "phpunit/phpunit": "^6.1"
  6402. },
  6403. "type": "library",
  6404. "extra": {
  6405. "branch-alias": {
  6406. "dev-master": "3.1.x-dev"
  6407. }
  6408. },
  6409. "autoload": {
  6410. "classmap": [
  6411. "src/"
  6412. ]
  6413. },
  6414. "notification-url": "https://packagist.org/downloads/",
  6415. "license": [
  6416. "BSD-3-Clause"
  6417. ],
  6418. "authors": [
  6419. {
  6420. "name": "Sebastian Bergmann",
  6421. "email": "sebastian@phpunit.de"
  6422. }
  6423. ],
  6424. "description": "Provides functionality to handle HHVM/PHP environments",
  6425. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6426. "keywords": [
  6427. "Xdebug",
  6428. "environment",
  6429. "hhvm"
  6430. ],
  6431. "time": "2017-07-01T08:51:00+00:00"
  6432. },
  6433. {
  6434. "name": "sebastian/exporter",
  6435. "version": "3.1.0",
  6436. "source": {
  6437. "type": "git",
  6438. "url": "https://github.com/sebastianbergmann/exporter.git",
  6439. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  6440. },
  6441. "dist": {
  6442. "type": "zip",
  6443. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  6444. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  6445. "shasum": ""
  6446. },
  6447. "require": {
  6448. "php": "^7.0",
  6449. "sebastian/recursion-context": "^3.0"
  6450. },
  6451. "require-dev": {
  6452. "ext-mbstring": "*",
  6453. "phpunit/phpunit": "^6.0"
  6454. },
  6455. "type": "library",
  6456. "extra": {
  6457. "branch-alias": {
  6458. "dev-master": "3.1.x-dev"
  6459. }
  6460. },
  6461. "autoload": {
  6462. "classmap": [
  6463. "src/"
  6464. ]
  6465. },
  6466. "notification-url": "https://packagist.org/downloads/",
  6467. "license": [
  6468. "BSD-3-Clause"
  6469. ],
  6470. "authors": [
  6471. {
  6472. "name": "Jeff Welch",
  6473. "email": "whatthejeff@gmail.com"
  6474. },
  6475. {
  6476. "name": "Volker Dusch",
  6477. "email": "github@wallbash.com"
  6478. },
  6479. {
  6480. "name": "Bernhard Schussek",
  6481. "email": "bschussek@2bepublished.at"
  6482. },
  6483. {
  6484. "name": "Sebastian Bergmann",
  6485. "email": "sebastian@phpunit.de"
  6486. },
  6487. {
  6488. "name": "Adam Harvey",
  6489. "email": "aharvey@php.net"
  6490. }
  6491. ],
  6492. "description": "Provides the functionality to export PHP variables for visualization",
  6493. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6494. "keywords": [
  6495. "export",
  6496. "exporter"
  6497. ],
  6498. "time": "2017-04-03T13:19:02+00:00"
  6499. },
  6500. {
  6501. "name": "sebastian/global-state",
  6502. "version": "2.0.0",
  6503. "source": {
  6504. "type": "git",
  6505. "url": "https://github.com/sebastianbergmann/global-state.git",
  6506. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  6507. },
  6508. "dist": {
  6509. "type": "zip",
  6510. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6511. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6512. "shasum": ""
  6513. },
  6514. "require": {
  6515. "php": "^7.0"
  6516. },
  6517. "require-dev": {
  6518. "phpunit/phpunit": "^6.0"
  6519. },
  6520. "suggest": {
  6521. "ext-uopz": "*"
  6522. },
  6523. "type": "library",
  6524. "extra": {
  6525. "branch-alias": {
  6526. "dev-master": "2.0-dev"
  6527. }
  6528. },
  6529. "autoload": {
  6530. "classmap": [
  6531. "src/"
  6532. ]
  6533. },
  6534. "notification-url": "https://packagist.org/downloads/",
  6535. "license": [
  6536. "BSD-3-Clause"
  6537. ],
  6538. "authors": [
  6539. {
  6540. "name": "Sebastian Bergmann",
  6541. "email": "sebastian@phpunit.de"
  6542. }
  6543. ],
  6544. "description": "Snapshotting of global state",
  6545. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6546. "keywords": [
  6547. "global state"
  6548. ],
  6549. "time": "2017-04-27T15:39:26+00:00"
  6550. },
  6551. {
  6552. "name": "sebastian/object-enumerator",
  6553. "version": "3.0.3",
  6554. "source": {
  6555. "type": "git",
  6556. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  6557. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  6558. },
  6559. "dist": {
  6560. "type": "zip",
  6561. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6562. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6563. "shasum": ""
  6564. },
  6565. "require": {
  6566. "php": "^7.0",
  6567. "sebastian/object-reflector": "^1.1.1",
  6568. "sebastian/recursion-context": "^3.0"
  6569. },
  6570. "require-dev": {
  6571. "phpunit/phpunit": "^6.0"
  6572. },
  6573. "type": "library",
  6574. "extra": {
  6575. "branch-alias": {
  6576. "dev-master": "3.0.x-dev"
  6577. }
  6578. },
  6579. "autoload": {
  6580. "classmap": [
  6581. "src/"
  6582. ]
  6583. },
  6584. "notification-url": "https://packagist.org/downloads/",
  6585. "license": [
  6586. "BSD-3-Clause"
  6587. ],
  6588. "authors": [
  6589. {
  6590. "name": "Sebastian Bergmann",
  6591. "email": "sebastian@phpunit.de"
  6592. }
  6593. ],
  6594. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6595. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6596. "time": "2017-08-03T12:35:26+00:00"
  6597. },
  6598. {
  6599. "name": "sebastian/object-reflector",
  6600. "version": "1.1.1",
  6601. "source": {
  6602. "type": "git",
  6603. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6604. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  6605. },
  6606. "dist": {
  6607. "type": "zip",
  6608. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  6609. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  6610. "shasum": ""
  6611. },
  6612. "require": {
  6613. "php": "^7.0"
  6614. },
  6615. "require-dev": {
  6616. "phpunit/phpunit": "^6.0"
  6617. },
  6618. "type": "library",
  6619. "extra": {
  6620. "branch-alias": {
  6621. "dev-master": "1.1-dev"
  6622. }
  6623. },
  6624. "autoload": {
  6625. "classmap": [
  6626. "src/"
  6627. ]
  6628. },
  6629. "notification-url": "https://packagist.org/downloads/",
  6630. "license": [
  6631. "BSD-3-Clause"
  6632. ],
  6633. "authors": [
  6634. {
  6635. "name": "Sebastian Bergmann",
  6636. "email": "sebastian@phpunit.de"
  6637. }
  6638. ],
  6639. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6640. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6641. "time": "2017-03-29T09:07:27+00:00"
  6642. },
  6643. {
  6644. "name": "sebastian/recursion-context",
  6645. "version": "3.0.0",
  6646. "source": {
  6647. "type": "git",
  6648. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6649. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  6650. },
  6651. "dist": {
  6652. "type": "zip",
  6653. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6654. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6655. "shasum": ""
  6656. },
  6657. "require": {
  6658. "php": "^7.0"
  6659. },
  6660. "require-dev": {
  6661. "phpunit/phpunit": "^6.0"
  6662. },
  6663. "type": "library",
  6664. "extra": {
  6665. "branch-alias": {
  6666. "dev-master": "3.0.x-dev"
  6667. }
  6668. },
  6669. "autoload": {
  6670. "classmap": [
  6671. "src/"
  6672. ]
  6673. },
  6674. "notification-url": "https://packagist.org/downloads/",
  6675. "license": [
  6676. "BSD-3-Clause"
  6677. ],
  6678. "authors": [
  6679. {
  6680. "name": "Jeff Welch",
  6681. "email": "whatthejeff@gmail.com"
  6682. },
  6683. {
  6684. "name": "Sebastian Bergmann",
  6685. "email": "sebastian@phpunit.de"
  6686. },
  6687. {
  6688. "name": "Adam Harvey",
  6689. "email": "aharvey@php.net"
  6690. }
  6691. ],
  6692. "description": "Provides functionality to recursively process PHP variables",
  6693. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  6694. "time": "2017-03-03T06:23:57+00:00"
  6695. },
  6696. {
  6697. "name": "sebastian/resource-operations",
  6698. "version": "1.0.0",
  6699. "source": {
  6700. "type": "git",
  6701. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  6702. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  6703. },
  6704. "dist": {
  6705. "type": "zip",
  6706. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  6707. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  6708. "shasum": ""
  6709. },
  6710. "require": {
  6711. "php": ">=5.6.0"
  6712. },
  6713. "type": "library",
  6714. "extra": {
  6715. "branch-alias": {
  6716. "dev-master": "1.0.x-dev"
  6717. }
  6718. },
  6719. "autoload": {
  6720. "classmap": [
  6721. "src/"
  6722. ]
  6723. },
  6724. "notification-url": "https://packagist.org/downloads/",
  6725. "license": [
  6726. "BSD-3-Clause"
  6727. ],
  6728. "authors": [
  6729. {
  6730. "name": "Sebastian Bergmann",
  6731. "email": "sebastian@phpunit.de"
  6732. }
  6733. ],
  6734. "description": "Provides a list of PHP built-in functions that operate on resources",
  6735. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  6736. "time": "2015-07-28T20:34:47+00:00"
  6737. },
  6738. {
  6739. "name": "squizlabs/php_codesniffer",
  6740. "version": "2.9.1",
  6741. "source": {
  6742. "type": "git",
  6743. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  6744. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62"
  6745. },
  6746. "dist": {
  6747. "type": "zip",
  6748. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dcbed1074f8244661eecddfc2a675430d8d33f62",
  6749. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62",
  6750. "shasum": ""
  6751. },
  6752. "require": {
  6753. "ext-simplexml": "*",
  6754. "ext-tokenizer": "*",
  6755. "ext-xmlwriter": "*",
  6756. "php": ">=5.1.2"
  6757. },
  6758. "require-dev": {
  6759. "phpunit/phpunit": "~4.0"
  6760. },
  6761. "bin": [
  6762. "scripts/phpcs",
  6763. "scripts/phpcbf"
  6764. ],
  6765. "type": "library",
  6766. "extra": {
  6767. "branch-alias": {
  6768. "dev-master": "2.x-dev"
  6769. }
  6770. },
  6771. "autoload": {
  6772. "classmap": [
  6773. "CodeSniffer.php",
  6774. "CodeSniffer/CLI.php",
  6775. "CodeSniffer/Exception.php",
  6776. "CodeSniffer/File.php",
  6777. "CodeSniffer/Fixer.php",
  6778. "CodeSniffer/Report.php",
  6779. "CodeSniffer/Reporting.php",
  6780. "CodeSniffer/Sniff.php",
  6781. "CodeSniffer/Tokens.php",
  6782. "CodeSniffer/Reports/",
  6783. "CodeSniffer/Tokenizers/",
  6784. "CodeSniffer/DocGenerators/",
  6785. "CodeSniffer/Standards/AbstractPatternSniff.php",
  6786. "CodeSniffer/Standards/AbstractScopeSniff.php",
  6787. "CodeSniffer/Standards/AbstractVariableSniff.php",
  6788. "CodeSniffer/Standards/IncorrectPatternException.php",
  6789. "CodeSniffer/Standards/Generic/Sniffs/",
  6790. "CodeSniffer/Standards/MySource/Sniffs/",
  6791. "CodeSniffer/Standards/PEAR/Sniffs/",
  6792. "CodeSniffer/Standards/PSR1/Sniffs/",
  6793. "CodeSniffer/Standards/PSR2/Sniffs/",
  6794. "CodeSniffer/Standards/Squiz/Sniffs/",
  6795. "CodeSniffer/Standards/Zend/Sniffs/"
  6796. ]
  6797. },
  6798. "notification-url": "https://packagist.org/downloads/",
  6799. "license": [
  6800. "BSD-3-Clause"
  6801. ],
  6802. "authors": [
  6803. {
  6804. "name": "Greg Sherwood",
  6805. "role": "lead"
  6806. }
  6807. ],
  6808. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  6809. "homepage": "http://www.squizlabs.com/php-codesniffer",
  6810. "keywords": [
  6811. "phpcs",
  6812. "standards"
  6813. ],
  6814. "time": "2017-05-22T02:43:20+00:00"
  6815. },
  6816. {
  6817. "name": "symfony/browser-kit",
  6818. "version": "v3.4.7",
  6819. "source": {
  6820. "type": "git",
  6821. "url": "https://github.com/symfony/browser-kit.git",
  6822. "reference": "840bb6f0d5b3701fd768b68adf7193c2d0f98f79"
  6823. },
  6824. "dist": {
  6825. "type": "zip",
  6826. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/840bb6f0d5b3701fd768b68adf7193c2d0f98f79",
  6827. "reference": "840bb6f0d5b3701fd768b68adf7193c2d0f98f79",
  6828. "shasum": ""
  6829. },
  6830. "require": {
  6831. "php": "^5.5.9|>=7.0.8",
  6832. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  6833. },
  6834. "require-dev": {
  6835. "symfony/css-selector": "~2.8|~3.0|~4.0",
  6836. "symfony/process": "~2.8|~3.0|~4.0"
  6837. },
  6838. "suggest": {
  6839. "symfony/process": ""
  6840. },
  6841. "type": "library",
  6842. "extra": {
  6843. "branch-alias": {
  6844. "dev-master": "3.4-dev"
  6845. }
  6846. },
  6847. "autoload": {
  6848. "psr-4": {
  6849. "Symfony\\Component\\BrowserKit\\": ""
  6850. },
  6851. "exclude-from-classmap": [
  6852. "/Tests/"
  6853. ]
  6854. },
  6855. "notification-url": "https://packagist.org/downloads/",
  6856. "license": [
  6857. "MIT"
  6858. ],
  6859. "authors": [
  6860. {
  6861. "name": "Fabien Potencier",
  6862. "email": "fabien@symfony.com"
  6863. },
  6864. {
  6865. "name": "Symfony Community",
  6866. "homepage": "https://symfony.com/contributors"
  6867. }
  6868. ],
  6869. "description": "Symfony BrowserKit Component",
  6870. "homepage": "https://symfony.com",
  6871. "time": "2018-03-19T22:32:39+00:00"
  6872. },
  6873. {
  6874. "name": "symfony/phpunit-bridge",
  6875. "version": "v3.4.7",
  6876. "source": {
  6877. "type": "git",
  6878. "url": "https://github.com/symfony/phpunit-bridge.git",
  6879. "reference": "e4b72beb8961340764367a804f21044e83fc19a8"
  6880. },
  6881. "dist": {
  6882. "type": "zip",
  6883. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/e4b72beb8961340764367a804f21044e83fc19a8",
  6884. "reference": "e4b72beb8961340764367a804f21044e83fc19a8",
  6885. "shasum": ""
  6886. },
  6887. "require": {
  6888. "php": ">=5.3.3"
  6889. },
  6890. "conflict": {
  6891. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  6892. },
  6893. "suggest": {
  6894. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  6895. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  6896. },
  6897. "bin": [
  6898. "bin/simple-phpunit"
  6899. ],
  6900. "type": "symfony-bridge",
  6901. "extra": {
  6902. "branch-alias": {
  6903. "dev-master": "3.4-dev"
  6904. },
  6905. "thanks": {
  6906. "name": "phpunit/phpunit",
  6907. "url": "https://github.com/sebastianbergmann/phpunit"
  6908. }
  6909. },
  6910. "autoload": {
  6911. "files": [
  6912. "bootstrap.php"
  6913. ],
  6914. "psr-4": {
  6915. "Symfony\\Bridge\\PhpUnit\\": ""
  6916. },
  6917. "exclude-from-classmap": [
  6918. "/Tests/"
  6919. ]
  6920. },
  6921. "notification-url": "https://packagist.org/downloads/",
  6922. "license": [
  6923. "MIT"
  6924. ],
  6925. "authors": [
  6926. {
  6927. "name": "Nicolas Grekas",
  6928. "email": "p@tchwork.com"
  6929. },
  6930. {
  6931. "name": "Symfony Community",
  6932. "homepage": "https://symfony.com/contributors"
  6933. }
  6934. ],
  6935. "description": "Symfony PHPUnit Bridge",
  6936. "homepage": "https://symfony.com",
  6937. "time": "2018-03-20T23:37:33+00:00"
  6938. },
  6939. {
  6940. "name": "theseer/tokenizer",
  6941. "version": "1.1.0",
  6942. "source": {
  6943. "type": "git",
  6944. "url": "https://github.com/theseer/tokenizer.git",
  6945. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  6946. },
  6947. "dist": {
  6948. "type": "zip",
  6949. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  6950. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  6951. "shasum": ""
  6952. },
  6953. "require": {
  6954. "ext-dom": "*",
  6955. "ext-tokenizer": "*",
  6956. "ext-xmlwriter": "*",
  6957. "php": "^7.0"
  6958. },
  6959. "type": "library",
  6960. "autoload": {
  6961. "classmap": [
  6962. "src/"
  6963. ]
  6964. },
  6965. "notification-url": "https://packagist.org/downloads/",
  6966. "license": [
  6967. "BSD-3-Clause"
  6968. ],
  6969. "authors": [
  6970. {
  6971. "name": "Arne Blankerts",
  6972. "email": "arne@blankerts.de",
  6973. "role": "Developer"
  6974. }
  6975. ],
  6976. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6977. "time": "2017-04-07T12:08:54+00:00"
  6978. }
  6979. ],
  6980. "aliases": [],
  6981. "minimum-stability": "dev",
  6982. "stability-flags": {
  6983. "behat/mink": 20,
  6984. "behat/mink-selenium2-driver": 20
  6985. },
  6986. "prefer-stable": true,
  6987. "prefer-lowest": false,
  6988. "platform": {
  6989. "ext-date": "*",
  6990. "ext-dom": "*",
  6991. "ext-filter": "*",
  6992. "ext-gd": "*",
  6993. "ext-hash": "*",
  6994. "ext-json": "*",
  6995. "ext-pcre": "*",
  6996. "ext-pdo": "*",
  6997. "ext-session": "*",
  6998. "ext-simplexml": "*",
  6999. "ext-spl": "*",
  7000. "ext-tokenizer": "*",
  7001. "ext-xml": "*",
  7002. "php": "^5.5.9|>=7.0.8"
  7003. },
  7004. "platform-dev": []
  7005. }