composer.lock 249 KB

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