composer.lock 257 KB

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