composer.lock 240 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702
  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#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "7a189ff08171900faf4041b04a7ad3b7",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  20. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5.9",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^5.0 || ^4.8.10",
  30. "squizlabs/php_codesniffer": "^2.3"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/Asm89/Stack/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "time": "2019-12-24T22:41:47+00:00"
  60. },
  61. {
  62. "name": "chi-teck/drupal-code-generator",
  63. "version": "1.32.0",
  64. "source": {
  65. "type": "git",
  66. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  67. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246"
  68. },
  69. "dist": {
  70. "type": "zip",
  71. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/0e045f7a7e747af3d8f603156bf4d73be5768246",
  72. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246",
  73. "shasum": ""
  74. },
  75. "require": {
  76. "ext-json": "*",
  77. "php": ">=5.5.9",
  78. "symfony/console": "^3.4 || ^4.0",
  79. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  80. "twig/twig": "^1.41 || ^2.12"
  81. },
  82. "bin": [
  83. "bin/dcg"
  84. ],
  85. "type": "library",
  86. "extra": {
  87. "branch-alias": {
  88. "dev-master": "1.x-dev"
  89. }
  90. },
  91. "autoload": {
  92. "files": [
  93. "src/bootstrap.php"
  94. ],
  95. "psr-4": {
  96. "DrupalCodeGenerator\\": "src"
  97. }
  98. },
  99. "notification-url": "https://packagist.org/downloads/",
  100. "license": [
  101. "GPL-2.0-or-later"
  102. ],
  103. "description": "Drupal code generator",
  104. "time": "2020-04-16T06:45:06+00:00"
  105. },
  106. {
  107. "name": "commerceguys/addressing",
  108. "version": "v1.0.8",
  109. "source": {
  110. "type": "git",
  111. "url": "https://github.com/commerceguys/addressing.git",
  112. "reference": "cf202c913c10d85085ab5ed9ec88607e312839ce"
  113. },
  114. "dist": {
  115. "type": "zip",
  116. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/cf202c913c10d85085ab5ed9ec88607e312839ce",
  117. "reference": "cf202c913c10d85085ab5ed9ec88607e312839ce",
  118. "shasum": ""
  119. },
  120. "require": {
  121. "doctrine/collections": "~1.0",
  122. "php": ">=7.0.8"
  123. },
  124. "require-dev": {
  125. "mikey179/vfsstream": "1.*",
  126. "phpunit/phpunit": "^6.0",
  127. "squizlabs/php_codesniffer": "2.*",
  128. "symfony/validator": "^3.4"
  129. },
  130. "suggest": {
  131. "symfony/validator": "to validate addresses"
  132. },
  133. "type": "library",
  134. "extra": {
  135. "branch-alias": {
  136. "dev-master": "1.x-dev"
  137. }
  138. },
  139. "autoload": {
  140. "psr-4": {
  141. "CommerceGuys\\Addressing\\": "src"
  142. }
  143. },
  144. "notification-url": "https://packagist.org/downloads/",
  145. "license": [
  146. "MIT"
  147. ],
  148. "authors": [
  149. {
  150. "name": "Bojan Zivanovic"
  151. },
  152. {
  153. "name": "Damien Tournoud"
  154. }
  155. ],
  156. "description": "Addressing library powered by CLDR and Google's address data.",
  157. "keywords": [
  158. "address",
  159. "internationalization",
  160. "localization",
  161. "postal"
  162. ],
  163. "time": "2020-05-26T11:04:04+00:00"
  164. },
  165. {
  166. "name": "composer/installers",
  167. "version": "v1.9.0",
  168. "source": {
  169. "type": "git",
  170. "url": "https://github.com/composer/installers.git",
  171. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca"
  172. },
  173. "dist": {
  174. "type": "zip",
  175. "url": "https://api.github.com/repos/composer/installers/zipball/b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  176. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  177. "shasum": ""
  178. },
  179. "require": {
  180. "composer-plugin-api": "^1.0 || ^2.0"
  181. },
  182. "replace": {
  183. "roundcube/plugin-installer": "*",
  184. "shama/baton": "*"
  185. },
  186. "require-dev": {
  187. "composer/composer": "1.6.* || 2.0.*@dev",
  188. "composer/semver": "1.0.* || 2.0.*@dev",
  189. "phpunit/phpunit": "^4.8.36",
  190. "sebastian/comparator": "^1.2.4",
  191. "symfony/process": "^2.3"
  192. },
  193. "type": "composer-plugin",
  194. "extra": {
  195. "class": "Composer\\Installers\\Plugin",
  196. "branch-alias": {
  197. "dev-master": "1.0-dev"
  198. }
  199. },
  200. "autoload": {
  201. "psr-4": {
  202. "Composer\\Installers\\": "src/Composer/Installers"
  203. }
  204. },
  205. "notification-url": "https://packagist.org/downloads/",
  206. "license": [
  207. "MIT"
  208. ],
  209. "authors": [
  210. {
  211. "name": "Kyle Robinson Young",
  212. "email": "kyle@dontkry.com",
  213. "homepage": "https://github.com/shama"
  214. }
  215. ],
  216. "description": "A multi-framework Composer library installer",
  217. "homepage": "https://composer.github.io/installers/",
  218. "keywords": [
  219. "Craft",
  220. "Dolibarr",
  221. "Eliasis",
  222. "Hurad",
  223. "ImageCMS",
  224. "Kanboard",
  225. "Lan Management System",
  226. "MODX Evo",
  227. "MantisBT",
  228. "Mautic",
  229. "Maya",
  230. "OXID",
  231. "Plentymarkets",
  232. "Porto",
  233. "RadPHP",
  234. "SMF",
  235. "Thelia",
  236. "Whmcs",
  237. "WolfCMS",
  238. "agl",
  239. "aimeos",
  240. "annotatecms",
  241. "attogram",
  242. "bitrix",
  243. "cakephp",
  244. "chef",
  245. "cockpit",
  246. "codeigniter",
  247. "concrete5",
  248. "croogo",
  249. "dokuwiki",
  250. "drupal",
  251. "eZ Platform",
  252. "elgg",
  253. "expressionengine",
  254. "fuelphp",
  255. "grav",
  256. "installer",
  257. "itop",
  258. "joomla",
  259. "known",
  260. "kohana",
  261. "laravel",
  262. "lavalite",
  263. "lithium",
  264. "magento",
  265. "majima",
  266. "mako",
  267. "mediawiki",
  268. "modulework",
  269. "modx",
  270. "moodle",
  271. "osclass",
  272. "phpbb",
  273. "piwik",
  274. "ppi",
  275. "puppet",
  276. "pxcms",
  277. "reindex",
  278. "roundcube",
  279. "shopware",
  280. "silverstripe",
  281. "sydes",
  282. "sylius",
  283. "symfony",
  284. "typo3",
  285. "wordpress",
  286. "yawik",
  287. "zend",
  288. "zikula"
  289. ],
  290. "funding": [
  291. {
  292. "url": "https://packagist.com",
  293. "type": "custom"
  294. },
  295. {
  296. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  297. "type": "tidelift"
  298. }
  299. ],
  300. "time": "2020-04-07T06:57:05+00:00"
  301. },
  302. {
  303. "name": "composer/semver",
  304. "version": "1.5.1",
  305. "source": {
  306. "type": "git",
  307. "url": "https://github.com/composer/semver.git",
  308. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  309. },
  310. "dist": {
  311. "type": "zip",
  312. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  313. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  314. "shasum": ""
  315. },
  316. "require": {
  317. "php": "^5.3.2 || ^7.0"
  318. },
  319. "require-dev": {
  320. "phpunit/phpunit": "^4.5 || ^5.0.5"
  321. },
  322. "type": "library",
  323. "extra": {
  324. "branch-alias": {
  325. "dev-master": "1.x-dev"
  326. }
  327. },
  328. "autoload": {
  329. "psr-4": {
  330. "Composer\\Semver\\": "src"
  331. }
  332. },
  333. "notification-url": "https://packagist.org/downloads/",
  334. "license": [
  335. "MIT"
  336. ],
  337. "authors": [
  338. {
  339. "name": "Nils Adermann",
  340. "email": "naderman@naderman.de",
  341. "homepage": "http://www.naderman.de"
  342. },
  343. {
  344. "name": "Jordi Boggiano",
  345. "email": "j.boggiano@seld.be",
  346. "homepage": "http://seld.be"
  347. },
  348. {
  349. "name": "Rob Bast",
  350. "email": "rob.bast@gmail.com",
  351. "homepage": "http://robbast.nl"
  352. }
  353. ],
  354. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  355. "keywords": [
  356. "semantic",
  357. "semver",
  358. "validation",
  359. "versioning"
  360. ],
  361. "time": "2020-01-13T12:06:48+00:00"
  362. },
  363. {
  364. "name": "consolidation/annotated-command",
  365. "version": "2.12.0",
  366. "source": {
  367. "type": "git",
  368. "url": "https://github.com/consolidation/annotated-command.git",
  369. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  370. },
  371. "dist": {
  372. "type": "zip",
  373. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  374. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  375. "shasum": ""
  376. },
  377. "require": {
  378. "consolidation/output-formatters": "^3.4",
  379. "php": ">=5.4.5",
  380. "psr/log": "^1",
  381. "symfony/console": "^2.8|^3|^4",
  382. "symfony/event-dispatcher": "^2.5|^3|^4",
  383. "symfony/finder": "^2.5|^3|^4"
  384. },
  385. "require-dev": {
  386. "g1a/composer-test-scenarios": "^3",
  387. "php-coveralls/php-coveralls": "^1",
  388. "phpunit/phpunit": "^6",
  389. "squizlabs/php_codesniffer": "^2.7"
  390. },
  391. "type": "library",
  392. "extra": {
  393. "scenarios": {
  394. "symfony4": {
  395. "require": {
  396. "symfony/console": "^4.0"
  397. },
  398. "config": {
  399. "platform": {
  400. "php": "7.1.3"
  401. }
  402. }
  403. },
  404. "symfony2": {
  405. "require": {
  406. "symfony/console": "^2.8"
  407. },
  408. "require-dev": {
  409. "phpunit/phpunit": "^4.8.36"
  410. },
  411. "remove": [
  412. "php-coveralls/php-coveralls"
  413. ],
  414. "config": {
  415. "platform": {
  416. "php": "5.4.8"
  417. }
  418. },
  419. "scenario-options": {
  420. "create-lockfile": "false"
  421. }
  422. },
  423. "phpunit4": {
  424. "require-dev": {
  425. "phpunit/phpunit": "^4.8.36"
  426. },
  427. "remove": [
  428. "php-coveralls/php-coveralls"
  429. ],
  430. "config": {
  431. "platform": {
  432. "php": "5.4.8"
  433. }
  434. }
  435. }
  436. },
  437. "branch-alias": {
  438. "dev-master": "2.x-dev"
  439. }
  440. },
  441. "autoload": {
  442. "psr-4": {
  443. "Consolidation\\AnnotatedCommand\\": "src"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Greg Anderson",
  453. "email": "greg.1.anderson@greenknowe.org"
  454. }
  455. ],
  456. "description": "Initialize Symfony Console commands from annotated command class methods.",
  457. "time": "2019-03-08T16:55:03+00:00"
  458. },
  459. {
  460. "name": "consolidation/config",
  461. "version": "1.2.1",
  462. "source": {
  463. "type": "git",
  464. "url": "https://github.com/consolidation/config.git",
  465. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  466. },
  467. "dist": {
  468. "type": "zip",
  469. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  470. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  471. "shasum": ""
  472. },
  473. "require": {
  474. "dflydev/dot-access-data": "^1.1.0",
  475. "grasmash/expander": "^1",
  476. "php": ">=5.4.0"
  477. },
  478. "require-dev": {
  479. "g1a/composer-test-scenarios": "^3",
  480. "php-coveralls/php-coveralls": "^1",
  481. "phpunit/phpunit": "^5",
  482. "squizlabs/php_codesniffer": "2.*",
  483. "symfony/console": "^2.5|^3|^4",
  484. "symfony/yaml": "^2.8.11|^3|^4"
  485. },
  486. "suggest": {
  487. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  488. },
  489. "type": "library",
  490. "extra": {
  491. "scenarios": {
  492. "symfony4": {
  493. "require-dev": {
  494. "symfony/console": "^4.0"
  495. },
  496. "config": {
  497. "platform": {
  498. "php": "7.1.3"
  499. }
  500. }
  501. },
  502. "symfony2": {
  503. "require-dev": {
  504. "symfony/console": "^2.8",
  505. "symfony/event-dispatcher": "^2.8",
  506. "phpunit/phpunit": "^4.8.36"
  507. },
  508. "remove": [
  509. "php-coveralls/php-coveralls"
  510. ],
  511. "config": {
  512. "platform": {
  513. "php": "5.4.8"
  514. }
  515. }
  516. }
  517. },
  518. "branch-alias": {
  519. "dev-master": "1.x-dev"
  520. }
  521. },
  522. "autoload": {
  523. "psr-4": {
  524. "Consolidation\\Config\\": "src"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Greg Anderson",
  534. "email": "greg.1.anderson@greenknowe.org"
  535. }
  536. ],
  537. "description": "Provide configuration services for a commandline tool.",
  538. "time": "2019-03-03T19:37:04+00:00"
  539. },
  540. {
  541. "name": "consolidation/filter-via-dot-access-data",
  542. "version": "1.0.0",
  543. "source": {
  544. "type": "git",
  545. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  546. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  547. },
  548. "dist": {
  549. "type": "zip",
  550. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  551. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  552. "shasum": ""
  553. },
  554. "require": {
  555. "dflydev/dot-access-data": "^1.1.0",
  556. "php": ">=5.5.0"
  557. },
  558. "require-dev": {
  559. "consolidation/robo": "^1.2.3",
  560. "g1a/composer-test-scenarios": "^3",
  561. "knplabs/github-api": "^2.7",
  562. "php-coveralls/php-coveralls": "^1",
  563. "php-http/guzzle6-adapter": "^1.1",
  564. "phpunit/phpunit": "^5",
  565. "squizlabs/php_codesniffer": "^2.8",
  566. "symfony/console": "^2.8|^3|^4"
  567. },
  568. "type": "library",
  569. "extra": {
  570. "scenarios": {
  571. "phpunit5": {
  572. "require-dev": {
  573. "phpunit/phpunit": "^5.7.27"
  574. },
  575. "remove": [
  576. "php-coveralls/php-coveralls"
  577. ],
  578. "config": {
  579. "platform": {
  580. "php": "5.6.33"
  581. }
  582. }
  583. }
  584. },
  585. "branch-alias": {
  586. "dev-master": "1.x-dev"
  587. }
  588. },
  589. "autoload": {
  590. "psr-4": {
  591. "Consolidation\\Filter\\": "src"
  592. }
  593. },
  594. "notification-url": "https://packagist.org/downloads/",
  595. "license": [
  596. "MIT"
  597. ],
  598. "authors": [
  599. {
  600. "name": "Greg Anderson",
  601. "email": "greg.1.anderson@greenknowe.org"
  602. }
  603. ],
  604. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  605. "time": "2019-01-18T06:05:07+00:00"
  606. },
  607. {
  608. "name": "consolidation/log",
  609. "version": "1.1.1",
  610. "source": {
  611. "type": "git",
  612. "url": "https://github.com/consolidation/log.git",
  613. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  614. },
  615. "dist": {
  616. "type": "zip",
  617. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  618. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  619. "shasum": ""
  620. },
  621. "require": {
  622. "php": ">=5.4.5",
  623. "psr/log": "^1.0",
  624. "symfony/console": "^2.8|^3|^4"
  625. },
  626. "require-dev": {
  627. "g1a/composer-test-scenarios": "^3",
  628. "php-coveralls/php-coveralls": "^1",
  629. "phpunit/phpunit": "^6",
  630. "squizlabs/php_codesniffer": "^2"
  631. },
  632. "type": "library",
  633. "extra": {
  634. "scenarios": {
  635. "symfony4": {
  636. "require": {
  637. "symfony/console": "^4.0"
  638. },
  639. "config": {
  640. "platform": {
  641. "php": "7.1.3"
  642. }
  643. }
  644. },
  645. "symfony2": {
  646. "require": {
  647. "symfony/console": "^2.8"
  648. },
  649. "require-dev": {
  650. "phpunit/phpunit": "^4.8.36"
  651. },
  652. "remove": [
  653. "php-coveralls/php-coveralls"
  654. ],
  655. "config": {
  656. "platform": {
  657. "php": "5.4.8"
  658. }
  659. }
  660. },
  661. "phpunit4": {
  662. "require-dev": {
  663. "phpunit/phpunit": "^4.8.36"
  664. },
  665. "remove": [
  666. "php-coveralls/php-coveralls"
  667. ],
  668. "config": {
  669. "platform": {
  670. "php": "5.4.8"
  671. }
  672. }
  673. }
  674. },
  675. "branch-alias": {
  676. "dev-master": "1.x-dev"
  677. }
  678. },
  679. "autoload": {
  680. "psr-4": {
  681. "Consolidation\\Log\\": "src"
  682. }
  683. },
  684. "notification-url": "https://packagist.org/downloads/",
  685. "license": [
  686. "MIT"
  687. ],
  688. "authors": [
  689. {
  690. "name": "Greg Anderson",
  691. "email": "greg.1.anderson@greenknowe.org"
  692. }
  693. ],
  694. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  695. "time": "2019-01-01T17:30:51+00:00"
  696. },
  697. {
  698. "name": "consolidation/output-formatters",
  699. "version": "3.5.0",
  700. "source": {
  701. "type": "git",
  702. "url": "https://github.com/consolidation/output-formatters.git",
  703. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  704. },
  705. "dist": {
  706. "type": "zip",
  707. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  708. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  709. "shasum": ""
  710. },
  711. "require": {
  712. "dflydev/dot-access-data": "^1.1.0",
  713. "php": ">=5.4.0",
  714. "symfony/console": "^2.8|^3|^4",
  715. "symfony/finder": "^2.5|^3|^4"
  716. },
  717. "require-dev": {
  718. "g1a/composer-test-scenarios": "^3",
  719. "php-coveralls/php-coveralls": "^1",
  720. "phpunit/phpunit": "^5.7.27",
  721. "squizlabs/php_codesniffer": "^2.7",
  722. "symfony/var-dumper": "^2.8|^3|^4",
  723. "victorjonsson/markdowndocs": "^1.3"
  724. },
  725. "suggest": {
  726. "symfony/var-dumper": "For using the var_dump formatter"
  727. },
  728. "type": "library",
  729. "extra": {
  730. "scenarios": {
  731. "symfony4": {
  732. "require": {
  733. "symfony/console": "^4.0"
  734. },
  735. "require-dev": {
  736. "phpunit/phpunit": "^6"
  737. },
  738. "config": {
  739. "platform": {
  740. "php": "7.1.3"
  741. }
  742. }
  743. },
  744. "symfony3": {
  745. "require": {
  746. "symfony/console": "^3.4",
  747. "symfony/finder": "^3.4",
  748. "symfony/var-dumper": "^3.4"
  749. },
  750. "config": {
  751. "platform": {
  752. "php": "5.6.32"
  753. }
  754. }
  755. },
  756. "symfony2": {
  757. "require": {
  758. "symfony/console": "^2.8"
  759. },
  760. "require-dev": {
  761. "phpunit/phpunit": "^4.8.36"
  762. },
  763. "remove": [
  764. "php-coveralls/php-coveralls"
  765. ],
  766. "config": {
  767. "platform": {
  768. "php": "5.4.8"
  769. }
  770. },
  771. "scenario-options": {
  772. "create-lockfile": "false"
  773. }
  774. }
  775. },
  776. "branch-alias": {
  777. "dev-master": "3.x-dev"
  778. }
  779. },
  780. "autoload": {
  781. "psr-4": {
  782. "Consolidation\\OutputFormatters\\": "src"
  783. }
  784. },
  785. "notification-url": "https://packagist.org/downloads/",
  786. "license": [
  787. "MIT"
  788. ],
  789. "authors": [
  790. {
  791. "name": "Greg Anderson",
  792. "email": "greg.1.anderson@greenknowe.org"
  793. }
  794. ],
  795. "description": "Format text by applying transformations provided by plug-in formatters.",
  796. "time": "2019-05-30T23:16:01+00:00"
  797. },
  798. {
  799. "name": "consolidation/robo",
  800. "version": "1.4.12",
  801. "source": {
  802. "type": "git",
  803. "url": "https://github.com/consolidation/Robo.git",
  804. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51"
  805. },
  806. "dist": {
  807. "type": "zip",
  808. "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51",
  809. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51",
  810. "shasum": ""
  811. },
  812. "require": {
  813. "consolidation/annotated-command": "^2.11.0|^4.1",
  814. "consolidation/config": "^1.2.1",
  815. "consolidation/log": "^1.1.1|^2",
  816. "consolidation/output-formatters": "^3.1.13|^4.1",
  817. "consolidation/self-update": "^1.1.5",
  818. "grasmash/yaml-expander": "^1.4",
  819. "league/container": "^2.4.1",
  820. "php": ">=5.5.0",
  821. "symfony/console": "^2.8|^3|^4",
  822. "symfony/event-dispatcher": "^2.5|^3|^4",
  823. "symfony/filesystem": "^2.5|^3|^4",
  824. "symfony/finder": "^2.5|^3|^4",
  825. "symfony/process": "^2.5|^3|^4"
  826. },
  827. "replace": {
  828. "codegyre/robo": "< 1.0"
  829. },
  830. "require-dev": {
  831. "g1a/composer-test-scenarios": "^3",
  832. "natxet/cssmin": "3.0.4",
  833. "patchwork/jsqueeze": "^2",
  834. "pear/archive_tar": "^1.4.4",
  835. "php-coveralls/php-coveralls": "^1",
  836. "phpunit/phpunit": "^5.7.27",
  837. "squizlabs/php_codesniffer": "^3"
  838. },
  839. "suggest": {
  840. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  841. "natxet/CssMin": "For minifying CSS files in taskMinify",
  842. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  843. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  844. },
  845. "bin": [
  846. "robo"
  847. ],
  848. "type": "library",
  849. "extra": {
  850. "scenarios": {
  851. "symfony4": {
  852. "require": {
  853. "symfony/console": "^4"
  854. },
  855. "config": {
  856. "platform": {
  857. "php": "7.1.3"
  858. }
  859. }
  860. },
  861. "symfony2": {
  862. "require": {
  863. "symfony/console": "^2.8"
  864. },
  865. "require-dev": {
  866. "phpunit/phpunit": "^4.8.36"
  867. },
  868. "remove": [
  869. "php-coveralls/php-coveralls"
  870. ],
  871. "config": {
  872. "platform": {
  873. "php": "5.5.9"
  874. }
  875. },
  876. "scenario-options": {
  877. "create-lockfile": "false"
  878. }
  879. }
  880. },
  881. "branch-alias": {
  882. "dev-master": "1.x-dev"
  883. }
  884. },
  885. "autoload": {
  886. "psr-4": {
  887. "Robo\\": "src"
  888. }
  889. },
  890. "notification-url": "https://packagist.org/downloads/",
  891. "license": [
  892. "MIT"
  893. ],
  894. "authors": [
  895. {
  896. "name": "Davert",
  897. "email": "davert.php@resend.cc"
  898. }
  899. ],
  900. "description": "Modern task runner",
  901. "time": "2020-02-18T17:31:26+00:00"
  902. },
  903. {
  904. "name": "consolidation/self-update",
  905. "version": "1.2.0",
  906. "source": {
  907. "type": "git",
  908. "url": "https://github.com/consolidation/self-update.git",
  909. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  910. },
  911. "dist": {
  912. "type": "zip",
  913. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  914. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  915. "shasum": ""
  916. },
  917. "require": {
  918. "php": ">=5.5.0",
  919. "symfony/console": "^2.8|^3|^4|^5",
  920. "symfony/filesystem": "^2.5|^3|^4|^5"
  921. },
  922. "bin": [
  923. "scripts/release"
  924. ],
  925. "type": "library",
  926. "extra": {
  927. "branch-alias": {
  928. "dev-master": "1.x-dev"
  929. }
  930. },
  931. "autoload": {
  932. "psr-4": {
  933. "SelfUpdate\\": "src"
  934. }
  935. },
  936. "notification-url": "https://packagist.org/downloads/",
  937. "license": [
  938. "MIT"
  939. ],
  940. "authors": [
  941. {
  942. "name": "Alexander Menk",
  943. "email": "menk@mestrona.net"
  944. },
  945. {
  946. "name": "Greg Anderson",
  947. "email": "greg.1.anderson@greenknowe.org"
  948. }
  949. ],
  950. "description": "Provides a self:update command for Symfony Console applications.",
  951. "time": "2020-04-13T02:49:20+00:00"
  952. },
  953. {
  954. "name": "consolidation/site-alias",
  955. "version": "3.0.1",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/consolidation/site-alias.git",
  959. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  964. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  965. "shasum": ""
  966. },
  967. "require": {
  968. "consolidation/config": "^1.2.1|^2",
  969. "php": ">=5.5.0"
  970. },
  971. "require-dev": {
  972. "consolidation/robo": "^1.2.3|^2",
  973. "g1a/composer-test-scenarios": "^3",
  974. "knplabs/github-api": "^2.7",
  975. "php-coveralls/php-coveralls": "^2.2",
  976. "php-http/guzzle6-adapter": "^1.1",
  977. "phpunit/phpunit": "^6",
  978. "squizlabs/php_codesniffer": "^2.8",
  979. "symfony/yaml": "~2.3|^3|^4.4|^5"
  980. },
  981. "type": "library",
  982. "extra": {
  983. "scenarios": {
  984. "phpunit5": {
  985. "require-dev": {
  986. "phpunit/phpunit": "^5.7.27"
  987. },
  988. "remove": [
  989. "php-coveralls/php-coveralls"
  990. ],
  991. "config": {
  992. "platform": {
  993. "php": "5.6.33"
  994. }
  995. }
  996. }
  997. },
  998. "branch-alias": {
  999. "dev-master": "3.x-dev"
  1000. }
  1001. },
  1002. "autoload": {
  1003. "psr-4": {
  1004. "Consolidation\\SiteAlias\\": "src"
  1005. }
  1006. },
  1007. "notification-url": "https://packagist.org/downloads/",
  1008. "license": [
  1009. "MIT"
  1010. ],
  1011. "authors": [
  1012. {
  1013. "name": "Greg Anderson",
  1014. "email": "greg.1.anderson@greenknowe.org"
  1015. },
  1016. {
  1017. "name": "Moshe Weitzman",
  1018. "email": "weitzman@tejasa.com"
  1019. }
  1020. ],
  1021. "description": "Manage alias records for local and remote sites.",
  1022. "time": "2020-05-28T00:33:41+00:00"
  1023. },
  1024. {
  1025. "name": "consolidation/site-process",
  1026. "version": "2.1.0",
  1027. "source": {
  1028. "type": "git",
  1029. "url": "https://github.com/consolidation/site-process.git",
  1030. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  1031. },
  1032. "dist": {
  1033. "type": "zip",
  1034. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  1035. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  1036. "shasum": ""
  1037. },
  1038. "require": {
  1039. "consolidation/config": "^1.2.1",
  1040. "consolidation/site-alias": "^3",
  1041. "php": ">=5.6.0",
  1042. "symfony/process": "^3.4"
  1043. },
  1044. "require-dev": {
  1045. "consolidation/robo": "^1.3",
  1046. "g1a/composer-test-scenarios": "^3",
  1047. "knplabs/github-api": "^2.7",
  1048. "php-coveralls/php-coveralls": "^1",
  1049. "php-http/guzzle6-adapter": "^1.1",
  1050. "phpunit/phpunit": "^6",
  1051. "squizlabs/php_codesniffer": "^2.8"
  1052. },
  1053. "type": "library",
  1054. "extra": {
  1055. "scenarios": {
  1056. "phpunit5": {
  1057. "require-dev": {
  1058. "phpunit/phpunit": "^5.7.27"
  1059. },
  1060. "remove": [
  1061. "php-coveralls/php-coveralls"
  1062. ],
  1063. "config": {
  1064. "platform": {
  1065. "php": "5.6.33"
  1066. }
  1067. }
  1068. }
  1069. },
  1070. "branch-alias": {
  1071. "dev-master": "0.x-dev"
  1072. }
  1073. },
  1074. "autoload": {
  1075. "psr-4": {
  1076. "Consolidation\\SiteProcess\\": "src"
  1077. }
  1078. },
  1079. "notification-url": "https://packagist.org/downloads/",
  1080. "license": [
  1081. "MIT"
  1082. ],
  1083. "authors": [
  1084. {
  1085. "name": "Greg Anderson",
  1086. "email": "greg.1.anderson@greenknowe.org"
  1087. },
  1088. {
  1089. "name": "Moshe Weitzman",
  1090. "email": "weitzman@tejasa.com"
  1091. }
  1092. ],
  1093. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  1094. "time": "2019-09-10T17:56:24+00:00"
  1095. },
  1096. {
  1097. "name": "container-interop/container-interop",
  1098. "version": "1.2.0",
  1099. "source": {
  1100. "type": "git",
  1101. "url": "https://github.com/container-interop/container-interop.git",
  1102. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1103. },
  1104. "dist": {
  1105. "type": "zip",
  1106. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1107. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1108. "shasum": ""
  1109. },
  1110. "require": {
  1111. "psr/container": "^1.0"
  1112. },
  1113. "type": "library",
  1114. "autoload": {
  1115. "psr-4": {
  1116. "Interop\\Container\\": "src/Interop/Container/"
  1117. }
  1118. },
  1119. "notification-url": "https://packagist.org/downloads/",
  1120. "license": [
  1121. "MIT"
  1122. ],
  1123. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1124. "homepage": "https://github.com/container-interop/container-interop",
  1125. "abandoned": "psr/container",
  1126. "time": "2017-02-14T19:40:03+00:00"
  1127. },
  1128. {
  1129. "name": "dflydev/dot-access-data",
  1130. "version": "v1.1.0",
  1131. "source": {
  1132. "type": "git",
  1133. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1134. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1135. },
  1136. "dist": {
  1137. "type": "zip",
  1138. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1139. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1140. "shasum": ""
  1141. },
  1142. "require": {
  1143. "php": ">=5.3.2"
  1144. },
  1145. "type": "library",
  1146. "extra": {
  1147. "branch-alias": {
  1148. "dev-master": "1.0-dev"
  1149. }
  1150. },
  1151. "autoload": {
  1152. "psr-0": {
  1153. "Dflydev\\DotAccessData": "src"
  1154. }
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "authors": [
  1161. {
  1162. "name": "Dragonfly Development Inc.",
  1163. "email": "info@dflydev.com",
  1164. "homepage": "http://dflydev.com"
  1165. },
  1166. {
  1167. "name": "Beau Simensen",
  1168. "email": "beau@dflydev.com",
  1169. "homepage": "http://beausimensen.com"
  1170. },
  1171. {
  1172. "name": "Carlos Frutos",
  1173. "email": "carlos@kiwing.it",
  1174. "homepage": "https://github.com/cfrutos"
  1175. }
  1176. ],
  1177. "description": "Given a deep data structure, access data by dot notation.",
  1178. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1179. "keywords": [
  1180. "access",
  1181. "data",
  1182. "dot",
  1183. "notation"
  1184. ],
  1185. "time": "2017-01-20T21:14:22+00:00"
  1186. },
  1187. {
  1188. "name": "dnoegel/php-xdg-base-dir",
  1189. "version": "v0.1.1",
  1190. "source": {
  1191. "type": "git",
  1192. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1193. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1194. },
  1195. "dist": {
  1196. "type": "zip",
  1197. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1198. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1199. "shasum": ""
  1200. },
  1201. "require": {
  1202. "php": ">=5.3.2"
  1203. },
  1204. "require-dev": {
  1205. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1206. },
  1207. "type": "library",
  1208. "autoload": {
  1209. "psr-4": {
  1210. "XdgBaseDir\\": "src/"
  1211. }
  1212. },
  1213. "notification-url": "https://packagist.org/downloads/",
  1214. "license": [
  1215. "MIT"
  1216. ],
  1217. "description": "implementation of xdg base directory specification for php",
  1218. "time": "2019-12-04T15:06:13+00:00"
  1219. },
  1220. {
  1221. "name": "doctrine/annotations",
  1222. "version": "v1.4.0",
  1223. "source": {
  1224. "type": "git",
  1225. "url": "https://github.com/doctrine/annotations.git",
  1226. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1227. },
  1228. "dist": {
  1229. "type": "zip",
  1230. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1231. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1232. "shasum": ""
  1233. },
  1234. "require": {
  1235. "doctrine/lexer": "1.*",
  1236. "php": "^5.6 || ^7.0"
  1237. },
  1238. "require-dev": {
  1239. "doctrine/cache": "1.*",
  1240. "phpunit/phpunit": "^5.7"
  1241. },
  1242. "type": "library",
  1243. "extra": {
  1244. "branch-alias": {
  1245. "dev-master": "1.4.x-dev"
  1246. }
  1247. },
  1248. "autoload": {
  1249. "psr-4": {
  1250. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1251. }
  1252. },
  1253. "notification-url": "https://packagist.org/downloads/",
  1254. "license": [
  1255. "MIT"
  1256. ],
  1257. "authors": [
  1258. {
  1259. "name": "Roman Borschel",
  1260. "email": "roman@code-factory.org"
  1261. },
  1262. {
  1263. "name": "Benjamin Eberlei",
  1264. "email": "kontakt@beberlei.de"
  1265. },
  1266. {
  1267. "name": "Guilherme Blanco",
  1268. "email": "guilhermeblanco@gmail.com"
  1269. },
  1270. {
  1271. "name": "Jonathan Wage",
  1272. "email": "jonwage@gmail.com"
  1273. },
  1274. {
  1275. "name": "Johannes Schmitt",
  1276. "email": "schmittjoh@gmail.com"
  1277. }
  1278. ],
  1279. "description": "Docblock Annotations Parser",
  1280. "homepage": "http://www.doctrine-project.org",
  1281. "keywords": [
  1282. "annotations",
  1283. "docblock",
  1284. "parser"
  1285. ],
  1286. "time": "2017-02-24T16:22:25+00:00"
  1287. },
  1288. {
  1289. "name": "doctrine/cache",
  1290. "version": "v1.6.2",
  1291. "source": {
  1292. "type": "git",
  1293. "url": "https://github.com/doctrine/cache.git",
  1294. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1295. },
  1296. "dist": {
  1297. "type": "zip",
  1298. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1299. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1300. "shasum": ""
  1301. },
  1302. "require": {
  1303. "php": "~5.5|~7.0"
  1304. },
  1305. "conflict": {
  1306. "doctrine/common": ">2.2,<2.4"
  1307. },
  1308. "require-dev": {
  1309. "phpunit/phpunit": "~4.8|~5.0",
  1310. "predis/predis": "~1.0",
  1311. "satooshi/php-coveralls": "~0.6"
  1312. },
  1313. "type": "library",
  1314. "extra": {
  1315. "branch-alias": {
  1316. "dev-master": "1.6.x-dev"
  1317. }
  1318. },
  1319. "autoload": {
  1320. "psr-4": {
  1321. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1322. }
  1323. },
  1324. "notification-url": "https://packagist.org/downloads/",
  1325. "license": [
  1326. "MIT"
  1327. ],
  1328. "authors": [
  1329. {
  1330. "name": "Roman Borschel",
  1331. "email": "roman@code-factory.org"
  1332. },
  1333. {
  1334. "name": "Benjamin Eberlei",
  1335. "email": "kontakt@beberlei.de"
  1336. },
  1337. {
  1338. "name": "Guilherme Blanco",
  1339. "email": "guilhermeblanco@gmail.com"
  1340. },
  1341. {
  1342. "name": "Jonathan Wage",
  1343. "email": "jonwage@gmail.com"
  1344. },
  1345. {
  1346. "name": "Johannes Schmitt",
  1347. "email": "schmittjoh@gmail.com"
  1348. }
  1349. ],
  1350. "description": "Caching library offering an object-oriented API for many cache backends",
  1351. "homepage": "http://www.doctrine-project.org",
  1352. "keywords": [
  1353. "cache",
  1354. "caching"
  1355. ],
  1356. "time": "2017-07-22T12:49:21+00:00"
  1357. },
  1358. {
  1359. "name": "doctrine/collections",
  1360. "version": "v1.4.0",
  1361. "source": {
  1362. "type": "git",
  1363. "url": "https://github.com/doctrine/collections.git",
  1364. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1365. },
  1366. "dist": {
  1367. "type": "zip",
  1368. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1369. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1370. "shasum": ""
  1371. },
  1372. "require": {
  1373. "php": "^5.6 || ^7.0"
  1374. },
  1375. "require-dev": {
  1376. "doctrine/coding-standard": "~0.1@dev",
  1377. "phpunit/phpunit": "^5.7"
  1378. },
  1379. "type": "library",
  1380. "extra": {
  1381. "branch-alias": {
  1382. "dev-master": "1.3.x-dev"
  1383. }
  1384. },
  1385. "autoload": {
  1386. "psr-0": {
  1387. "Doctrine\\Common\\Collections\\": "lib/"
  1388. }
  1389. },
  1390. "notification-url": "https://packagist.org/downloads/",
  1391. "license": [
  1392. "MIT"
  1393. ],
  1394. "authors": [
  1395. {
  1396. "name": "Roman Borschel",
  1397. "email": "roman@code-factory.org"
  1398. },
  1399. {
  1400. "name": "Benjamin Eberlei",
  1401. "email": "kontakt@beberlei.de"
  1402. },
  1403. {
  1404. "name": "Guilherme Blanco",
  1405. "email": "guilhermeblanco@gmail.com"
  1406. },
  1407. {
  1408. "name": "Jonathan Wage",
  1409. "email": "jonwage@gmail.com"
  1410. },
  1411. {
  1412. "name": "Johannes Schmitt",
  1413. "email": "schmittjoh@gmail.com"
  1414. }
  1415. ],
  1416. "description": "Collections Abstraction library",
  1417. "homepage": "http://www.doctrine-project.org",
  1418. "keywords": [
  1419. "array",
  1420. "collections",
  1421. "iterator"
  1422. ],
  1423. "time": "2017-01-03T10:49:41+00:00"
  1424. },
  1425. {
  1426. "name": "doctrine/common",
  1427. "version": "v2.7.3",
  1428. "source": {
  1429. "type": "git",
  1430. "url": "https://github.com/doctrine/common.git",
  1431. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1432. },
  1433. "dist": {
  1434. "type": "zip",
  1435. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1436. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1437. "shasum": ""
  1438. },
  1439. "require": {
  1440. "doctrine/annotations": "1.*",
  1441. "doctrine/cache": "1.*",
  1442. "doctrine/collections": "1.*",
  1443. "doctrine/inflector": "1.*",
  1444. "doctrine/lexer": "1.*",
  1445. "php": "~5.6|~7.0"
  1446. },
  1447. "require-dev": {
  1448. "phpunit/phpunit": "^5.4.6"
  1449. },
  1450. "type": "library",
  1451. "extra": {
  1452. "branch-alias": {
  1453. "dev-master": "2.7.x-dev"
  1454. }
  1455. },
  1456. "autoload": {
  1457. "psr-4": {
  1458. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1459. }
  1460. },
  1461. "notification-url": "https://packagist.org/downloads/",
  1462. "license": [
  1463. "MIT"
  1464. ],
  1465. "authors": [
  1466. {
  1467. "name": "Roman Borschel",
  1468. "email": "roman@code-factory.org"
  1469. },
  1470. {
  1471. "name": "Benjamin Eberlei",
  1472. "email": "kontakt@beberlei.de"
  1473. },
  1474. {
  1475. "name": "Guilherme Blanco",
  1476. "email": "guilhermeblanco@gmail.com"
  1477. },
  1478. {
  1479. "name": "Jonathan Wage",
  1480. "email": "jonwage@gmail.com"
  1481. },
  1482. {
  1483. "name": "Johannes Schmitt",
  1484. "email": "schmittjoh@gmail.com"
  1485. }
  1486. ],
  1487. "description": "Common Library for Doctrine projects",
  1488. "homepage": "http://www.doctrine-project.org",
  1489. "keywords": [
  1490. "annotations",
  1491. "collections",
  1492. "eventmanager",
  1493. "persistence",
  1494. "spl"
  1495. ],
  1496. "time": "2017-07-22T08:35:12+00:00"
  1497. },
  1498. {
  1499. "name": "doctrine/inflector",
  1500. "version": "v1.2.0",
  1501. "source": {
  1502. "type": "git",
  1503. "url": "https://github.com/doctrine/inflector.git",
  1504. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1505. },
  1506. "dist": {
  1507. "type": "zip",
  1508. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1509. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1510. "shasum": ""
  1511. },
  1512. "require": {
  1513. "php": "^7.0"
  1514. },
  1515. "require-dev": {
  1516. "phpunit/phpunit": "^6.2"
  1517. },
  1518. "type": "library",
  1519. "extra": {
  1520. "branch-alias": {
  1521. "dev-master": "1.2.x-dev"
  1522. }
  1523. },
  1524. "autoload": {
  1525. "psr-4": {
  1526. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1527. }
  1528. },
  1529. "notification-url": "https://packagist.org/downloads/",
  1530. "license": [
  1531. "MIT"
  1532. ],
  1533. "authors": [
  1534. {
  1535. "name": "Roman Borschel",
  1536. "email": "roman@code-factory.org"
  1537. },
  1538. {
  1539. "name": "Benjamin Eberlei",
  1540. "email": "kontakt@beberlei.de"
  1541. },
  1542. {
  1543. "name": "Guilherme Blanco",
  1544. "email": "guilhermeblanco@gmail.com"
  1545. },
  1546. {
  1547. "name": "Jonathan Wage",
  1548. "email": "jonwage@gmail.com"
  1549. },
  1550. {
  1551. "name": "Johannes Schmitt",
  1552. "email": "schmittjoh@gmail.com"
  1553. }
  1554. ],
  1555. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1556. "homepage": "http://www.doctrine-project.org",
  1557. "keywords": [
  1558. "inflection",
  1559. "pluralize",
  1560. "singularize",
  1561. "string"
  1562. ],
  1563. "time": "2017-07-22T12:18:28+00:00"
  1564. },
  1565. {
  1566. "name": "doctrine/lexer",
  1567. "version": "1.0.2",
  1568. "source": {
  1569. "type": "git",
  1570. "url": "https://github.com/doctrine/lexer.git",
  1571. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  1572. },
  1573. "dist": {
  1574. "type": "zip",
  1575. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1576. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1577. "shasum": ""
  1578. },
  1579. "require": {
  1580. "php": ">=5.3.2"
  1581. },
  1582. "require-dev": {
  1583. "phpunit/phpunit": "^4.5"
  1584. },
  1585. "type": "library",
  1586. "extra": {
  1587. "branch-alias": {
  1588. "dev-master": "1.0.x-dev"
  1589. }
  1590. },
  1591. "autoload": {
  1592. "psr-4": {
  1593. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1594. }
  1595. },
  1596. "notification-url": "https://packagist.org/downloads/",
  1597. "license": [
  1598. "MIT"
  1599. ],
  1600. "authors": [
  1601. {
  1602. "name": "Roman Borschel",
  1603. "email": "roman@code-factory.org"
  1604. },
  1605. {
  1606. "name": "Guilherme Blanco",
  1607. "email": "guilhermeblanco@gmail.com"
  1608. },
  1609. {
  1610. "name": "Johannes Schmitt",
  1611. "email": "schmittjoh@gmail.com"
  1612. }
  1613. ],
  1614. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1615. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1616. "keywords": [
  1617. "annotations",
  1618. "docblock",
  1619. "lexer",
  1620. "parser",
  1621. "php"
  1622. ],
  1623. "time": "2019-06-08T11:03:04+00:00"
  1624. },
  1625. {
  1626. "name": "drupal/address",
  1627. "version": "1.8.0",
  1628. "source": {
  1629. "type": "git",
  1630. "url": "https://git.drupalcode.org/project/address.git",
  1631. "reference": "8.x-1.8"
  1632. },
  1633. "dist": {
  1634. "type": "zip",
  1635. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.8.zip",
  1636. "reference": "8.x-1.8",
  1637. "shasum": "ded73be392ba9257fca9289719757928a8826275"
  1638. },
  1639. "require": {
  1640. "commerceguys/addressing": "^1.0.7",
  1641. "drupal/core": "^8.7.7 || ^9"
  1642. },
  1643. "require-dev": {
  1644. "drupal/token": "^1.0"
  1645. },
  1646. "type": "drupal-module",
  1647. "extra": {
  1648. "drupal": {
  1649. "version": "8.x-1.8",
  1650. "datestamp": "1583988119",
  1651. "security-coverage": {
  1652. "status": "covered",
  1653. "message": "Covered by Drupal's security advisory policy"
  1654. }
  1655. }
  1656. },
  1657. "notification-url": "https://packages.drupal.org/8/downloads",
  1658. "license": [
  1659. "GPL-2.0+"
  1660. ],
  1661. "authors": [
  1662. {
  1663. "name": "bojanz",
  1664. "homepage": "https://www.drupal.org/user/86106"
  1665. },
  1666. {
  1667. "name": "dww",
  1668. "homepage": "https://www.drupal.org/user/46549"
  1669. },
  1670. {
  1671. "name": "googletorp",
  1672. "homepage": "https://www.drupal.org/user/386230"
  1673. },
  1674. {
  1675. "name": "jsacksick",
  1676. "homepage": "https://www.drupal.org/user/972218"
  1677. },
  1678. {
  1679. "name": "mglaman",
  1680. "homepage": "https://www.drupal.org/user/2416470"
  1681. },
  1682. {
  1683. "name": "rszrama",
  1684. "homepage": "https://www.drupal.org/user/49344"
  1685. }
  1686. ],
  1687. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1688. "homepage": "http://drupal.org/project/address",
  1689. "support": {
  1690. "source": "https://git.drupalcode.org/project/address"
  1691. }
  1692. },
  1693. {
  1694. "name": "drupal/audiofield",
  1695. "version": "1.9.0",
  1696. "source": {
  1697. "type": "git",
  1698. "url": "https://git.drupalcode.org/project/audiofield.git",
  1699. "reference": "8.x-1.9"
  1700. },
  1701. "dist": {
  1702. "type": "zip",
  1703. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.9.zip",
  1704. "reference": "8.x-1.9",
  1705. "shasum": "ddb2ca8dd5125a2bd0104e0001037c6fa2716682"
  1706. },
  1707. "require": {
  1708. "drupal/core": "~8.0"
  1709. },
  1710. "type": "drupal-module",
  1711. "extra": {
  1712. "drupal": {
  1713. "version": "8.x-1.9",
  1714. "datestamp": "1553712781",
  1715. "security-coverage": {
  1716. "status": "covered",
  1717. "message": "Covered by Drupal's security advisory policy"
  1718. }
  1719. },
  1720. "drush": {
  1721. "services": {
  1722. "drush.services.yml": "^9"
  1723. }
  1724. }
  1725. },
  1726. "notification-url": "https://packages.drupal.org/8/downloads",
  1727. "license": [
  1728. "GPL-2.0+"
  1729. ],
  1730. "authors": [
  1731. {
  1732. "name": "Daniel Moberly",
  1733. "homepage": "https://www.drupal.org/u/danielmoberly",
  1734. "role": "Maintainer"
  1735. },
  1736. {
  1737. "name": "josipsaric",
  1738. "homepage": "https://www.drupal.org/user/3063287"
  1739. },
  1740. {
  1741. "name": "tamerzg",
  1742. "homepage": "https://www.drupal.org/user/464564"
  1743. }
  1744. ],
  1745. "description": "AudioField Module",
  1746. "homepage": "https://www.drupal.org/project/audiofield",
  1747. "support": {
  1748. "source": "https://git.drupalcode.org/project/audiofield",
  1749. "issues": "https://www.drupal.org/project/issues/audiofield"
  1750. }
  1751. },
  1752. {
  1753. "name": "drupal/core",
  1754. "version": "8.9.0",
  1755. "source": {
  1756. "type": "git",
  1757. "url": "https://github.com/drupal/core.git",
  1758. "reference": "f90882ab0723becda2333e4d33e1a6ab27cb8f0c"
  1759. },
  1760. "dist": {
  1761. "type": "zip",
  1762. "url": "https://api.github.com/repos/drupal/core/zipball/f90882ab0723becda2333e4d33e1a6ab27cb8f0c",
  1763. "reference": "f90882ab0723becda2333e4d33e1a6ab27cb8f0c",
  1764. "shasum": ""
  1765. },
  1766. "require": {
  1767. "asm89/stack-cors": "^1.1",
  1768. "composer/semver": "^1.0",
  1769. "doctrine/annotations": "^1.4",
  1770. "doctrine/common": "^2.7",
  1771. "easyrdf/easyrdf": "^0.9",
  1772. "egulias/email-validator": "^2.0",
  1773. "ext-date": "*",
  1774. "ext-dom": "*",
  1775. "ext-filter": "*",
  1776. "ext-gd": "*",
  1777. "ext-hash": "*",
  1778. "ext-json": "*",
  1779. "ext-pcre": "*",
  1780. "ext-pdo": "*",
  1781. "ext-session": "*",
  1782. "ext-simplexml": "*",
  1783. "ext-spl": "*",
  1784. "ext-tokenizer": "*",
  1785. "ext-xml": "*",
  1786. "guzzlehttp/guzzle": "^6.3",
  1787. "laminas/laminas-diactoros": "^1.8",
  1788. "laminas/laminas-feed": "^2.12",
  1789. "masterminds/html5": "^2.1",
  1790. "pear/archive_tar": "^1.4.9",
  1791. "php": ">=7.0.8",
  1792. "psr/log": "^1.0",
  1793. "stack/builder": "^1.0",
  1794. "symfony-cmf/routing": "^1.4",
  1795. "symfony/class-loader": "~3.4.0",
  1796. "symfony/console": "~3.4.0",
  1797. "symfony/dependency-injection": "~3.4.26",
  1798. "symfony/event-dispatcher": "~3.4.0",
  1799. "symfony/http-foundation": "~3.4.35",
  1800. "symfony/http-kernel": "~3.4.14",
  1801. "symfony/polyfill-iconv": "^1.0",
  1802. "symfony/process": "~3.4.0",
  1803. "symfony/psr-http-message-bridge": "^1.1.2",
  1804. "symfony/routing": "~3.4.0",
  1805. "symfony/serializer": "~3.4.0",
  1806. "symfony/translation": "~3.4.0",
  1807. "symfony/validator": "~3.4.0",
  1808. "symfony/yaml": "~3.4.5",
  1809. "twig/twig": "^1.38.2",
  1810. "typo3/phar-stream-wrapper": "^3.1.3"
  1811. },
  1812. "conflict": {
  1813. "drupal/pathauto": "<1.6",
  1814. "drush/drush": "<8.1.10"
  1815. },
  1816. "replace": {
  1817. "drupal/action": "self.version",
  1818. "drupal/aggregator": "self.version",
  1819. "drupal/automated_cron": "self.version",
  1820. "drupal/ban": "self.version",
  1821. "drupal/bartik": "self.version",
  1822. "drupal/basic_auth": "self.version",
  1823. "drupal/big_pipe": "self.version",
  1824. "drupal/block": "self.version",
  1825. "drupal/block_content": "self.version",
  1826. "drupal/block_place": "self.version",
  1827. "drupal/book": "self.version",
  1828. "drupal/breakpoint": "self.version",
  1829. "drupal/ckeditor": "self.version",
  1830. "drupal/claro": "self.version",
  1831. "drupal/classy": "self.version",
  1832. "drupal/color": "self.version",
  1833. "drupal/comment": "self.version",
  1834. "drupal/config": "self.version",
  1835. "drupal/config_translation": "self.version",
  1836. "drupal/contact": "self.version",
  1837. "drupal/content_moderation": "self.version",
  1838. "drupal/content_translation": "self.version",
  1839. "drupal/contextual": "self.version",
  1840. "drupal/core-annotation": "self.version",
  1841. "drupal/core-assertion": "self.version",
  1842. "drupal/core-bridge": "self.version",
  1843. "drupal/core-class-finder": "self.version",
  1844. "drupal/core-datetime": "self.version",
  1845. "drupal/core-dependency-injection": "self.version",
  1846. "drupal/core-diff": "self.version",
  1847. "drupal/core-discovery": "self.version",
  1848. "drupal/core-event-dispatcher": "self.version",
  1849. "drupal/core-file-cache": "self.version",
  1850. "drupal/core-file-security": "self.version",
  1851. "drupal/core-filesystem": "self.version",
  1852. "drupal/core-gettext": "self.version",
  1853. "drupal/core-graph": "self.version",
  1854. "drupal/core-http-foundation": "self.version",
  1855. "drupal/core-php-storage": "self.version",
  1856. "drupal/core-plugin": "self.version",
  1857. "drupal/core-proxy-builder": "self.version",
  1858. "drupal/core-render": "self.version",
  1859. "drupal/core-serialization": "self.version",
  1860. "drupal/core-transliteration": "self.version",
  1861. "drupal/core-utility": "self.version",
  1862. "drupal/core-uuid": "self.version",
  1863. "drupal/core-version": "self.version",
  1864. "drupal/datetime": "self.version",
  1865. "drupal/datetime_range": "self.version",
  1866. "drupal/dblog": "self.version",
  1867. "drupal/dynamic_page_cache": "self.version",
  1868. "drupal/editor": "self.version",
  1869. "drupal/entity_reference": "self.version",
  1870. "drupal/field": "self.version",
  1871. "drupal/field_layout": "self.version",
  1872. "drupal/field_ui": "self.version",
  1873. "drupal/file": "self.version",
  1874. "drupal/filter": "self.version",
  1875. "drupal/forum": "self.version",
  1876. "drupal/hal": "self.version",
  1877. "drupal/help": "self.version",
  1878. "drupal/help_topics": "self.version",
  1879. "drupal/history": "self.version",
  1880. "drupal/image": "self.version",
  1881. "drupal/inline_form_errors": "self.version",
  1882. "drupal/jsonapi": "self.version",
  1883. "drupal/language": "self.version",
  1884. "drupal/layout_builder": "self.version",
  1885. "drupal/layout_discovery": "self.version",
  1886. "drupal/link": "self.version",
  1887. "drupal/locale": "self.version",
  1888. "drupal/media": "self.version",
  1889. "drupal/media_library": "self.version",
  1890. "drupal/menu_link_content": "self.version",
  1891. "drupal/menu_ui": "self.version",
  1892. "drupal/migrate": "self.version",
  1893. "drupal/migrate_drupal": "self.version",
  1894. "drupal/migrate_drupal_multilingual": "self.version",
  1895. "drupal/migrate_drupal_ui": "self.version",
  1896. "drupal/minimal": "self.version",
  1897. "drupal/node": "self.version",
  1898. "drupal/options": "self.version",
  1899. "drupal/page_cache": "self.version",
  1900. "drupal/path": "self.version",
  1901. "drupal/path_alias": "self.version",
  1902. "drupal/quickedit": "self.version",
  1903. "drupal/rdf": "self.version",
  1904. "drupal/responsive_image": "self.version",
  1905. "drupal/rest": "self.version",
  1906. "drupal/search": "self.version",
  1907. "drupal/serialization": "self.version",
  1908. "drupal/settings_tray": "self.version",
  1909. "drupal/seven": "self.version",
  1910. "drupal/shortcut": "self.version",
  1911. "drupal/simpletest": "self.version",
  1912. "drupal/standard": "self.version",
  1913. "drupal/stark": "self.version",
  1914. "drupal/statistics": "self.version",
  1915. "drupal/syslog": "self.version",
  1916. "drupal/system": "self.version",
  1917. "drupal/taxonomy": "self.version",
  1918. "drupal/telephone": "self.version",
  1919. "drupal/text": "self.version",
  1920. "drupal/toolbar": "self.version",
  1921. "drupal/tour": "self.version",
  1922. "drupal/tracker": "self.version",
  1923. "drupal/update": "self.version",
  1924. "drupal/user": "self.version",
  1925. "drupal/views": "self.version",
  1926. "drupal/views_ui": "self.version",
  1927. "drupal/workflows": "self.version",
  1928. "drupal/workspaces": "self.version"
  1929. },
  1930. "type": "drupal-core",
  1931. "extra": {
  1932. "drupal-scaffold": {
  1933. "file-mapping": {
  1934. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  1935. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  1936. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  1937. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  1938. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  1939. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  1940. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  1941. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  1942. "[web-root]/index.php": "assets/scaffold/files/index.php",
  1943. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  1944. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  1945. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  1946. "[web-root]/update.php": "assets/scaffold/files/update.php",
  1947. "[web-root]/web.config": "assets/scaffold/files/web.config",
  1948. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  1949. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  1950. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  1951. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  1952. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  1953. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  1954. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  1955. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  1956. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  1957. }
  1958. }
  1959. },
  1960. "autoload": {
  1961. "psr-4": {
  1962. "Drupal\\Core\\": "lib/Drupal/Core",
  1963. "Drupal\\Component\\": "lib/Drupal/Component",
  1964. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  1965. },
  1966. "classmap": [
  1967. "lib/Drupal.php",
  1968. "lib/Drupal/Component/Utility/Timer.php",
  1969. "lib/Drupal/Component/Utility/Unicode.php",
  1970. "lib/Drupal/Core/Database/Database.php",
  1971. "lib/Drupal/Core/DrupalKernel.php",
  1972. "lib/Drupal/Core/DrupalKernelInterface.php",
  1973. "lib/Drupal/Core/Site/Settings.php"
  1974. ]
  1975. },
  1976. "scripts": {
  1977. "pre-autoload-dump": [
  1978. "Drupal\\Core\\Composer\\Composer::preAutoloadDump"
  1979. ],
  1980. "post-autoload-dump": [
  1981. "Drupal\\Core\\Composer\\Composer::ensureHtaccess"
  1982. ]
  1983. },
  1984. "license": [
  1985. "GPL-2.0-or-later"
  1986. ],
  1987. "description": "Drupal is an open source content management platform powering millions of websites and applications."
  1988. },
  1989. {
  1990. "name": "drupal/core-composer-scaffold",
  1991. "version": "8.9.0",
  1992. "source": {
  1993. "type": "git",
  1994. "url": "https://github.com/drupal/core-composer-scaffold.git",
  1995. "reference": "07cdfe2799789fc0c2d0e3e1ba64cb5e2a973ece"
  1996. },
  1997. "dist": {
  1998. "type": "zip",
  1999. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/07cdfe2799789fc0c2d0e3e1ba64cb5e2a973ece",
  2000. "reference": "07cdfe2799789fc0c2d0e3e1ba64cb5e2a973ece",
  2001. "shasum": ""
  2002. },
  2003. "require": {
  2004. "composer-plugin-api": "^1 || ^2",
  2005. "php": ">=7.0.8"
  2006. },
  2007. "conflict": {
  2008. "drupal-composer/drupal-scaffold": "*"
  2009. },
  2010. "require-dev": {
  2011. "composer/composer": "^1.8@stable"
  2012. },
  2013. "type": "composer-plugin",
  2014. "extra": {
  2015. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2016. "branch-alias": {
  2017. "dev-master": "1.0.x-dev"
  2018. }
  2019. },
  2020. "autoload": {
  2021. "psr-4": {
  2022. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2023. }
  2024. },
  2025. "license": [
  2026. "GPL-2.0-or-later"
  2027. ],
  2028. "description": "A flexible Composer project scaffold builder.",
  2029. "homepage": "https://www.drupal.org/project/drupal",
  2030. "keywords": [
  2031. "drupal"
  2032. ]
  2033. },
  2034. {
  2035. "name": "drupal/core-recommended",
  2036. "version": "8.9.0",
  2037. "source": {
  2038. "type": "git",
  2039. "url": "https://github.com/drupal/core-recommended.git",
  2040. "reference": "1b87cf5dea633a66a1c4f22d635bc92c127071d9"
  2041. },
  2042. "dist": {
  2043. "type": "zip",
  2044. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/1b87cf5dea633a66a1c4f22d635bc92c127071d9",
  2045. "reference": "1b87cf5dea633a66a1c4f22d635bc92c127071d9",
  2046. "shasum": ""
  2047. },
  2048. "require": {
  2049. "asm89/stack-cors": "1.3.0",
  2050. "composer/semver": "1.5.1",
  2051. "doctrine/annotations": "v1.4.0",
  2052. "doctrine/cache": "v1.6.2",
  2053. "doctrine/collections": "v1.4.0",
  2054. "doctrine/common": "v2.7.3",
  2055. "doctrine/inflector": "v1.2.0",
  2056. "doctrine/lexer": "1.0.2",
  2057. "drupal/core": "8.9.0",
  2058. "easyrdf/easyrdf": "0.9.1",
  2059. "egulias/email-validator": "2.1.17",
  2060. "guzzlehttp/guzzle": "6.5.4",
  2061. "guzzlehttp/promises": "v1.3.1",
  2062. "guzzlehttp/psr7": "1.6.1",
  2063. "laminas/laminas-diactoros": "1.8.7p2",
  2064. "laminas/laminas-escaper": "2.6.1",
  2065. "laminas/laminas-feed": "2.12.2",
  2066. "laminas/laminas-stdlib": "3.2.1",
  2067. "laminas/laminas-zendframework-bridge": "1.0.4",
  2068. "masterminds/html5": "2.3.0",
  2069. "paragonie/random_compat": "v9.99.99",
  2070. "pear/archive_tar": "1.4.9",
  2071. "pear/console_getopt": "v1.4.3",
  2072. "pear/pear-core-minimal": "v1.10.10",
  2073. "pear/pear_exception": "v1.0.1",
  2074. "psr/container": "1.0.0",
  2075. "psr/http-message": "1.0.1",
  2076. "psr/log": "1.1.3",
  2077. "ralouphie/getallheaders": "3.0.3",
  2078. "stack/builder": "v1.0.5",
  2079. "symfony-cmf/routing": "1.4.1",
  2080. "symfony/class-loader": "v3.4.41",
  2081. "symfony/console": "v3.4.41",
  2082. "symfony/debug": "v3.4.41",
  2083. "symfony/dependency-injection": "v3.4.41",
  2084. "symfony/event-dispatcher": "v3.4.41",
  2085. "symfony/http-foundation": "v3.4.41",
  2086. "symfony/http-kernel": "v3.4.41",
  2087. "symfony/polyfill-ctype": "v1.17.0",
  2088. "symfony/polyfill-iconv": "v1.17.0",
  2089. "symfony/polyfill-intl-idn": "v1.17.0",
  2090. "symfony/polyfill-mbstring": "v1.17.0",
  2091. "symfony/polyfill-php56": "v1.17.0",
  2092. "symfony/polyfill-php70": "v1.17.0",
  2093. "symfony/polyfill-php72": "v1.17.0",
  2094. "symfony/polyfill-util": "v1.17.0",
  2095. "symfony/process": "v3.4.41",
  2096. "symfony/psr-http-message-bridge": "v1.1.2",
  2097. "symfony/routing": "v3.4.41",
  2098. "symfony/serializer": "v3.4.41",
  2099. "symfony/translation": "v3.4.41",
  2100. "symfony/validator": "v3.4.41",
  2101. "symfony/yaml": "v3.4.41",
  2102. "twig/twig": "v1.42.5",
  2103. "typo3/phar-stream-wrapper": "v3.1.4"
  2104. },
  2105. "conflict": {
  2106. "webflo/drupal-core-strict": "*"
  2107. },
  2108. "type": "metapackage",
  2109. "license": [
  2110. "GPL-2.0-or-later"
  2111. ],
  2112. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core."
  2113. },
  2114. {
  2115. "name": "drupal/ctools",
  2116. "version": "3.4.0",
  2117. "source": {
  2118. "type": "git",
  2119. "url": "https://git.drupalcode.org/project/ctools.git",
  2120. "reference": "8.x-3.4"
  2121. },
  2122. "dist": {
  2123. "type": "zip",
  2124. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  2125. "reference": "8.x-3.4",
  2126. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  2127. },
  2128. "require": {
  2129. "drupal/core": "^8.7.7 || ^9"
  2130. },
  2131. "type": "drupal-module",
  2132. "extra": {
  2133. "drupal": {
  2134. "version": "8.x-3.4",
  2135. "datestamp": "1585763383",
  2136. "security-coverage": {
  2137. "status": "covered",
  2138. "message": "Covered by Drupal's security advisory policy"
  2139. }
  2140. }
  2141. },
  2142. "notification-url": "https://packages.drupal.org/8/downloads",
  2143. "license": [
  2144. "GPL-2.0+"
  2145. ],
  2146. "authors": [
  2147. {
  2148. "name": "Kris Vanderwater (EclipseGc)",
  2149. "homepage": "https://www.drupal.org/u/eclipsegc",
  2150. "role": "Maintainer"
  2151. },
  2152. {
  2153. "name": "Jakob Perry (japerry)",
  2154. "homepage": "https://www.drupal.org/u/japerry",
  2155. "role": "Maintainer"
  2156. },
  2157. {
  2158. "name": "Tim Plunkett (tim.plunkett)",
  2159. "homepage": "https://www.drupal.org/u/timplunkett",
  2160. "role": "Maintainer"
  2161. },
  2162. {
  2163. "name": "James Gilliland (neclimdul)",
  2164. "homepage": "https://www.drupal.org/u/neclimdul",
  2165. "role": "Maintainer"
  2166. },
  2167. {
  2168. "name": "Daniel Wehner (dawehner)",
  2169. "homepage": "https://www.drupal.org/u/dawehner",
  2170. "role": "Maintainer"
  2171. },
  2172. {
  2173. "name": "joelpittet",
  2174. "homepage": "https://www.drupal.org/user/160302"
  2175. },
  2176. {
  2177. "name": "merlinofchaos",
  2178. "homepage": "https://www.drupal.org/user/26979"
  2179. },
  2180. {
  2181. "name": "neclimdul",
  2182. "homepage": "https://www.drupal.org/user/48673"
  2183. },
  2184. {
  2185. "name": "sdboyer",
  2186. "homepage": "https://www.drupal.org/user/146719"
  2187. },
  2188. {
  2189. "name": "sun",
  2190. "homepage": "https://www.drupal.org/user/54136"
  2191. },
  2192. {
  2193. "name": "tim.plunkett",
  2194. "homepage": "https://www.drupal.org/user/241634"
  2195. }
  2196. ],
  2197. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2198. "homepage": "https://www.drupal.org/project/ctools",
  2199. "support": {
  2200. "source": "https://git.drupalcode.org/project/ctools",
  2201. "issues": "https://www.drupal.org/project/issues/ctools"
  2202. }
  2203. },
  2204. {
  2205. "name": "drupal/entity_reference_revisions",
  2206. "version": "1.8.0",
  2207. "source": {
  2208. "type": "git",
  2209. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  2210. "reference": "8.x-1.8"
  2211. },
  2212. "dist": {
  2213. "type": "zip",
  2214. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.8.zip",
  2215. "reference": "8.x-1.8",
  2216. "shasum": "c1279e6c683edc2dbccedba8de1505340c8a62b6"
  2217. },
  2218. "require": {
  2219. "drupal/core": "^8.7.7 || ^9"
  2220. },
  2221. "require-dev": {
  2222. "drupal/diff": "1.x-dev"
  2223. },
  2224. "type": "drupal-module",
  2225. "extra": {
  2226. "branch-alias": {
  2227. "dev-1.x": "1.x-dev"
  2228. },
  2229. "drupal": {
  2230. "version": "8.x-1.8",
  2231. "datestamp": "1583961846",
  2232. "security-coverage": {
  2233. "status": "covered",
  2234. "message": "Covered by Drupal's security advisory policy"
  2235. }
  2236. }
  2237. },
  2238. "notification-url": "https://packages.drupal.org/8/downloads",
  2239. "license": [
  2240. "GPL-2.0"
  2241. ],
  2242. "authors": [
  2243. {
  2244. "name": "Berdir",
  2245. "homepage": "https://www.drupal.org/user/214652"
  2246. },
  2247. {
  2248. "name": "Frans",
  2249. "homepage": "https://www.drupal.org/user/514222"
  2250. },
  2251. {
  2252. "name": "jeroen.b",
  2253. "homepage": "https://www.drupal.org/user/1853532"
  2254. },
  2255. {
  2256. "name": "miro_dietiker",
  2257. "homepage": "https://www.drupal.org/user/227761"
  2258. }
  2259. ],
  2260. "description": "Entity Reference Revisions",
  2261. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  2262. "support": {
  2263. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  2264. }
  2265. },
  2266. {
  2267. "name": "drupal/field_group",
  2268. "version": "3.0.0",
  2269. "source": {
  2270. "type": "git",
  2271. "url": "https://git.drupalcode.org/project/field_group.git",
  2272. "reference": "8.x-3.0"
  2273. },
  2274. "dist": {
  2275. "type": "zip",
  2276. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0.zip",
  2277. "reference": "8.x-3.0",
  2278. "shasum": "8d87cdc4abc417aa4d411bffcaeb0a3ef1afa497"
  2279. },
  2280. "require": {
  2281. "drupal/core": "^8 || ^9"
  2282. },
  2283. "type": "drupal-module",
  2284. "extra": {
  2285. "drupal": {
  2286. "version": "8.x-3.0",
  2287. "datestamp": "1580250787",
  2288. "security-coverage": {
  2289. "status": "covered",
  2290. "message": "Covered by Drupal's security advisory policy"
  2291. }
  2292. }
  2293. },
  2294. "notification-url": "https://packages.drupal.org/8/downloads",
  2295. "license": [
  2296. "GPL-2.0+"
  2297. ],
  2298. "authors": [
  2299. {
  2300. "name": "Hydra",
  2301. "homepage": "https://www.drupal.org/user/647364"
  2302. },
  2303. {
  2304. "name": "Stalski",
  2305. "homepage": "https://www.drupal.org/user/322618"
  2306. },
  2307. {
  2308. "name": "jyve",
  2309. "homepage": "https://www.drupal.org/user/591438"
  2310. },
  2311. {
  2312. "name": "nils.destoop",
  2313. "homepage": "https://www.drupal.org/user/361625"
  2314. },
  2315. {
  2316. "name": "swentel",
  2317. "homepage": "https://www.drupal.org/user/107403"
  2318. }
  2319. ],
  2320. "description": "Provides the field_group module.",
  2321. "homepage": "https://www.drupal.org/project/field_group",
  2322. "support": {
  2323. "source": "https://git.drupalcode.org/project/field_group"
  2324. }
  2325. },
  2326. {
  2327. "name": "drupal/linkit",
  2328. "version": "4.3.0",
  2329. "source": {
  2330. "type": "git",
  2331. "url": "https://git.drupalcode.org/project/linkit.git",
  2332. "reference": "8.x-4.3"
  2333. },
  2334. "dist": {
  2335. "type": "zip",
  2336. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.3.zip",
  2337. "reference": "8.x-4.3",
  2338. "shasum": "e624ea2f18a6100b76a8337e24f7c08df6e2235e"
  2339. },
  2340. "require": {
  2341. "drupal/core": "~8.0"
  2342. },
  2343. "type": "drupal-module",
  2344. "extra": {
  2345. "drupal": {
  2346. "version": "8.x-4.3",
  2347. "datestamp": "1490205830",
  2348. "security-coverage": {
  2349. "status": "covered",
  2350. "message": "Covered by Drupal's security advisory policy"
  2351. }
  2352. }
  2353. },
  2354. "notification-url": "https://packages.drupal.org/8/downloads",
  2355. "license": [
  2356. "GPL-2.0+"
  2357. ],
  2358. "authors": [
  2359. {
  2360. "name": "Emil Stjerneman",
  2361. "homepage": "https://stjerneman.com",
  2362. "email": "emil@stjerneman.com",
  2363. "role": "Maintainer"
  2364. }
  2365. ],
  2366. "description": "Linkit - Enriched linking experience",
  2367. "homepage": "http://drupal.org/project/linkit",
  2368. "support": {
  2369. "source": "http://cgit.drupalcode.org/linkit",
  2370. "issues": "http://drupal.org/project/linkit"
  2371. }
  2372. },
  2373. {
  2374. "name": "drupal/mediteran",
  2375. "version": "1.10.0",
  2376. "source": {
  2377. "type": "git",
  2378. "url": "https://git.drupalcode.org/project/mediteran.git",
  2379. "reference": "8.x-1.10"
  2380. },
  2381. "dist": {
  2382. "type": "zip",
  2383. "url": "https://ftp.drupal.org/files/projects/mediteran-8.x-1.10.zip",
  2384. "reference": "8.x-1.10",
  2385. "shasum": "da1b7389a7e33189ebdb9106d162c07aa68ced5d"
  2386. },
  2387. "require": {
  2388. "drupal/core": "^8 || ^9"
  2389. },
  2390. "type": "drupal-theme",
  2391. "extra": {
  2392. "drupal": {
  2393. "version": "8.x-1.10",
  2394. "datestamp": "1590662208",
  2395. "security-coverage": {
  2396. "status": "covered",
  2397. "message": "Covered by Drupal's security advisory policy"
  2398. }
  2399. }
  2400. },
  2401. "notification-url": "https://packages.drupal.org/8/downloads",
  2402. "license": [
  2403. "GPL-2.0-or-later"
  2404. ],
  2405. "authors": [
  2406. {
  2407. "name": "bataboza",
  2408. "homepage": "https://www.drupal.org/user/3581173"
  2409. },
  2410. {
  2411. "name": "diqidoq",
  2412. "homepage": "https://www.drupal.org/user/1001934"
  2413. },
  2414. {
  2415. "name": "doxigo",
  2416. "homepage": "https://www.drupal.org/user/1331334"
  2417. }
  2418. ],
  2419. "description": "Mediteran administrator is responsive theme for Drupal 8 with clean and modern design.",
  2420. "homepage": "https://www.drupal.org/project/mediteran",
  2421. "support": {
  2422. "source": "https://git.drupalcode.org/project/mediteran"
  2423. }
  2424. },
  2425. {
  2426. "name": "drupal/metatag",
  2427. "version": "1.13.0",
  2428. "source": {
  2429. "type": "git",
  2430. "url": "https://git.drupalcode.org/project/metatag.git",
  2431. "reference": "8.x-1.13"
  2432. },
  2433. "dist": {
  2434. "type": "zip",
  2435. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.13.zip",
  2436. "reference": "8.x-1.13",
  2437. "shasum": "c471d9982a6540fd7baccc94572947923634fb6b"
  2438. },
  2439. "require": {
  2440. "drupal/core": "^8 || ^9",
  2441. "drupal/token": "^1.0"
  2442. },
  2443. "require-dev": {
  2444. "drupal/metatag_dc": "*",
  2445. "drupal/metatag_open_graph": "*",
  2446. "drupal/page_manager": "4.x-dev",
  2447. "drupal/redirect": "1.x-dev"
  2448. },
  2449. "type": "drupal-module",
  2450. "extra": {
  2451. "drupal": {
  2452. "version": "8.x-1.13",
  2453. "datestamp": "1587478404",
  2454. "security-coverage": {
  2455. "status": "covered",
  2456. "message": "Covered by Drupal's security advisory policy"
  2457. }
  2458. }
  2459. },
  2460. "notification-url": "https://packages.drupal.org/8/downloads",
  2461. "license": [
  2462. "GPL-2.0+"
  2463. ],
  2464. "authors": [
  2465. {
  2466. "name": "See contributors",
  2467. "homepage": "https://www.drupal.org/node/640498/committers",
  2468. "role": "Developer"
  2469. },
  2470. {
  2471. "name": "Dave Reid",
  2472. "homepage": "https://www.drupal.org/user/53892"
  2473. }
  2474. ],
  2475. "description": "Manage meta tags for all entities.",
  2476. "homepage": "https://www.drupal.org/project/metatag",
  2477. "keywords": [
  2478. "Drupal",
  2479. "seo"
  2480. ],
  2481. "support": {
  2482. "source": "https://git.drupalcode.org/project/metatag",
  2483. "issues": "https://www.drupal.org/project/issues/metatag",
  2484. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  2485. }
  2486. },
  2487. {
  2488. "name": "drupal/paragraphs",
  2489. "version": "1.12.0",
  2490. "source": {
  2491. "type": "git",
  2492. "url": "https://git.drupalcode.org/project/paragraphs.git",
  2493. "reference": "8.x-1.12"
  2494. },
  2495. "dist": {
  2496. "type": "zip",
  2497. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.12.zip",
  2498. "reference": "8.x-1.12",
  2499. "shasum": "3b67d8af1160af42d93a4610be1e02869e428965"
  2500. },
  2501. "require": {
  2502. "drupal/core": "^8.8 || ^9",
  2503. "drupal/entity_reference_revisions": "~1.3"
  2504. },
  2505. "require-dev": {
  2506. "drupal/block_field": "~1.0",
  2507. "drupal/ctools": "3.x-dev",
  2508. "drupal/diff": "~1.0",
  2509. "drupal/entity_browser": "2.x-dev",
  2510. "drupal/entity_usage": "2.x-dev",
  2511. "drupal/field_group": "3.x-dev",
  2512. "drupal/inline_entity_form": "~1.0",
  2513. "drupal/paragraphs-paragraphs_library": "*",
  2514. "drupal/replicate": "~1.0",
  2515. "drupal/search_api": "~1.0",
  2516. "drupal/search_api_db": "*"
  2517. },
  2518. "suggest": {
  2519. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  2520. },
  2521. "type": "drupal-module",
  2522. "extra": {
  2523. "drupal": {
  2524. "version": "8.x-1.12",
  2525. "datestamp": "1590140081",
  2526. "security-coverage": {
  2527. "status": "covered",
  2528. "message": "Covered by Drupal's security advisory policy"
  2529. }
  2530. }
  2531. },
  2532. "notification-url": "https://packages.drupal.org/8/downloads",
  2533. "license": [
  2534. "GPL-2.0-or-later"
  2535. ],
  2536. "authors": [
  2537. {
  2538. "name": "Berdir",
  2539. "homepage": "https://www.drupal.org/user/214652"
  2540. },
  2541. {
  2542. "name": "Frans",
  2543. "homepage": "https://www.drupal.org/user/514222"
  2544. },
  2545. {
  2546. "name": "Primsi",
  2547. "homepage": "https://www.drupal.org/user/282629"
  2548. },
  2549. {
  2550. "name": "jeroen.b",
  2551. "homepage": "https://www.drupal.org/user/1853532"
  2552. },
  2553. {
  2554. "name": "jstoller",
  2555. "homepage": "https://www.drupal.org/user/99012"
  2556. },
  2557. {
  2558. "name": "miro_dietiker",
  2559. "homepage": "https://www.drupal.org/user/227761"
  2560. }
  2561. ],
  2562. "description": "Enables the creation of Paragraphs entities.",
  2563. "homepage": "https://www.drupal.org/project/paragraphs",
  2564. "support": {
  2565. "source": "https://git.drupalcode.org/project/paragraphs"
  2566. }
  2567. },
  2568. {
  2569. "name": "drupal/pathauto",
  2570. "version": "1.8.0",
  2571. "source": {
  2572. "type": "git",
  2573. "url": "https://git.drupalcode.org/project/pathauto.git",
  2574. "reference": "8.x-1.8"
  2575. },
  2576. "dist": {
  2577. "type": "zip",
  2578. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  2579. "reference": "8.x-1.8",
  2580. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  2581. },
  2582. "require": {
  2583. "drupal/core": "^8.8 || ^9",
  2584. "drupal/ctools": "*",
  2585. "drupal/token": "*"
  2586. },
  2587. "suggest": {
  2588. "drupal/redirect": "When installed Pathauto will provide a new \"Update Action\" in case your URLs change. This is the recommended update action and is considered the best practice for SEO and usability."
  2589. },
  2590. "type": "drupal-module",
  2591. "extra": {
  2592. "drupal": {
  2593. "version": "8.x-1.8",
  2594. "datestamp": "1588103046",
  2595. "security-coverage": {
  2596. "status": "covered",
  2597. "message": "Covered by Drupal's security advisory policy"
  2598. }
  2599. },
  2600. "drush": {
  2601. "services": {
  2602. "drush.services.yml": "^9 || ^10"
  2603. }
  2604. }
  2605. },
  2606. "notification-url": "https://packages.drupal.org/8/downloads",
  2607. "license": [
  2608. "GPL-2.0-or-later"
  2609. ],
  2610. "authors": [
  2611. {
  2612. "name": "Berdir",
  2613. "homepage": "https://www.drupal.org/user/214652"
  2614. },
  2615. {
  2616. "name": "Dave Reid",
  2617. "homepage": "https://www.drupal.org/user/53892"
  2618. },
  2619. {
  2620. "name": "Freso",
  2621. "homepage": "https://www.drupal.org/user/27504"
  2622. },
  2623. {
  2624. "name": "greggles",
  2625. "homepage": "https://www.drupal.org/user/36762"
  2626. }
  2627. ],
  2628. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  2629. "homepage": "https://www.drupal.org/project/pathauto",
  2630. "support": {
  2631. "source": "https://cgit.drupalcode.org/pathauto",
  2632. "issues": "https://www.drupal.org/project/issues/pathauto",
  2633. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  2634. }
  2635. },
  2636. {
  2637. "name": "drupal/schema_metatag",
  2638. "version": "1.5.0",
  2639. "source": {
  2640. "type": "git",
  2641. "url": "https://git.drupalcode.org/project/schema_metatag.git",
  2642. "reference": "8.x-1.5"
  2643. },
  2644. "dist": {
  2645. "type": "zip",
  2646. "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-1.5.zip",
  2647. "reference": "8.x-1.5",
  2648. "shasum": "06334fadc2c6b80312319cbce11b1c3621b2e918"
  2649. },
  2650. "require": {
  2651. "drupal/core": "^8 || ^9",
  2652. "drupal/metatag": "*"
  2653. },
  2654. "require-dev": {
  2655. "drupal/metatag_views": "*",
  2656. "drupal/schema_article": "*",
  2657. "drupal/schema_organization": "*"
  2658. },
  2659. "type": "drupal-module",
  2660. "extra": {
  2661. "drupal": {
  2662. "version": "8.x-1.5",
  2663. "datestamp": "1590323806",
  2664. "security-coverage": {
  2665. "status": "covered",
  2666. "message": "Covered by Drupal's security advisory policy"
  2667. }
  2668. }
  2669. },
  2670. "notification-url": "https://packages.drupal.org/8/downloads",
  2671. "license": [
  2672. "GPL-2.0+"
  2673. ],
  2674. "authors": [
  2675. {
  2676. "name": "KarenS",
  2677. "homepage": "https://www.drupal.org/user/45874"
  2678. }
  2679. ],
  2680. "description": "Metatag implementation of Schema.org structured data (JSON-LD)",
  2681. "homepage": "https://www.drupal.org/project/schema_metatag",
  2682. "keywords": [
  2683. "Drupal"
  2684. ],
  2685. "support": {
  2686. "source": "http://cgit.drupalcode.org/schema_metatag",
  2687. "issues": "https://www.drupal.org/project/issues/schema_metatag"
  2688. }
  2689. },
  2690. {
  2691. "name": "drupal/token",
  2692. "version": "1.7.0",
  2693. "source": {
  2694. "type": "git",
  2695. "url": "https://git.drupalcode.org/project/token.git",
  2696. "reference": "8.x-1.7"
  2697. },
  2698. "dist": {
  2699. "type": "zip",
  2700. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip",
  2701. "reference": "8.x-1.7",
  2702. "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853"
  2703. },
  2704. "require": {
  2705. "drupal/core": "^8.8 || ^9"
  2706. },
  2707. "type": "drupal-module",
  2708. "extra": {
  2709. "drupal": {
  2710. "version": "8.x-1.7",
  2711. "datestamp": "1589314266",
  2712. "security-coverage": {
  2713. "status": "covered",
  2714. "message": "Covered by Drupal's security advisory policy"
  2715. }
  2716. },
  2717. "drush": {
  2718. "services": {
  2719. "drush.services.yml": "^9 || ^10"
  2720. }
  2721. }
  2722. },
  2723. "notification-url": "https://packages.drupal.org/8/downloads",
  2724. "license": [
  2725. "GPL-2.0+"
  2726. ],
  2727. "authors": [
  2728. {
  2729. "name": "Berdir",
  2730. "homepage": "https://www.drupal.org/user/214652"
  2731. },
  2732. {
  2733. "name": "Dave Reid",
  2734. "homepage": "https://www.drupal.org/user/53892"
  2735. },
  2736. {
  2737. "name": "eaton",
  2738. "homepage": "https://www.drupal.org/user/16496"
  2739. },
  2740. {
  2741. "name": "fago",
  2742. "homepage": "https://www.drupal.org/user/16747"
  2743. },
  2744. {
  2745. "name": "greggles",
  2746. "homepage": "https://www.drupal.org/user/36762"
  2747. },
  2748. {
  2749. "name": "mikeryan",
  2750. "homepage": "https://www.drupal.org/user/4420"
  2751. }
  2752. ],
  2753. "description": "Provides a user interface for the Token API, some missing core tokens.",
  2754. "homepage": "https://www.drupal.org/project/token",
  2755. "support": {
  2756. "source": "https://git.drupalcode.org/project/token"
  2757. }
  2758. },
  2759. {
  2760. "name": "drupal/video_embed_field",
  2761. "version": "2.4.0",
  2762. "source": {
  2763. "type": "git",
  2764. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  2765. "reference": "8.x-2.4"
  2766. },
  2767. "dist": {
  2768. "type": "zip",
  2769. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  2770. "reference": "8.x-2.4",
  2771. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  2772. },
  2773. "require": {
  2774. "drupal/core": "^8.8 || ^9"
  2775. },
  2776. "require-dev": {
  2777. "drupal/colorbox": "^1.0",
  2778. "drupal/video_embed_media": "*"
  2779. },
  2780. "type": "drupal-module",
  2781. "extra": {
  2782. "drupal": {
  2783. "version": "8.x-2.4",
  2784. "datestamp": "1587686284",
  2785. "security-coverage": {
  2786. "status": "covered",
  2787. "message": "Covered by Drupal's security advisory policy"
  2788. }
  2789. }
  2790. },
  2791. "notification-url": "https://packages.drupal.org/8/downloads",
  2792. "license": [
  2793. "GPL-2.0+"
  2794. ],
  2795. "authors": [
  2796. {
  2797. "name": "Sam152",
  2798. "homepage": "https://www.drupal.org/user/1485048"
  2799. },
  2800. {
  2801. "name": "jec006",
  2802. "homepage": "https://www.drupal.org/user/855980"
  2803. },
  2804. {
  2805. "name": "plopesc",
  2806. "homepage": "https://www.drupal.org/user/282415"
  2807. }
  2808. ],
  2809. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  2810. "homepage": "https://www.drupal.org/project/video_embed_field",
  2811. "support": {
  2812. "source": "https://git.drupalcode.org/project/video_embed_field"
  2813. }
  2814. },
  2815. {
  2816. "name": "drush/drush",
  2817. "version": "10.2.2",
  2818. "source": {
  2819. "type": "git",
  2820. "url": "https://github.com/drush-ops/drush.git",
  2821. "reference": "8307a4e7dae9c63a279d8b59b9dca6c1973576c2"
  2822. },
  2823. "dist": {
  2824. "type": "zip",
  2825. "url": "https://api.github.com/repos/drush-ops/drush/zipball/8307a4e7dae9c63a279d8b59b9dca6c1973576c2",
  2826. "reference": "8307a4e7dae9c63a279d8b59b9dca6c1973576c2",
  2827. "shasum": ""
  2828. },
  2829. "require": {
  2830. "chi-teck/drupal-code-generator": "^1.30.5",
  2831. "composer/semver": "^1.4",
  2832. "consolidation/config": "^1.2",
  2833. "consolidation/filter-via-dot-access-data": "^1",
  2834. "consolidation/robo": "^1 || ^2",
  2835. "consolidation/site-alias": "^3.0.0@stable",
  2836. "consolidation/site-process": "^2.1 || ^4",
  2837. "ext-dom": "*",
  2838. "grasmash/yaml-expander": "^1.1.1",
  2839. "league/container": "~2",
  2840. "php": ">=7.1.3",
  2841. "psr/log": "~1.0",
  2842. "psy/psysh": "~0.6",
  2843. "symfony/event-dispatcher": "^3.4 || ^4.0",
  2844. "symfony/finder": "^3.4 || ^4.0",
  2845. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  2846. "symfony/yaml": "^3.4 || ^4.0",
  2847. "webflo/drupal-finder": "^1.2",
  2848. "webmozart/path-util": "^2.1.0"
  2849. },
  2850. "require-dev": {
  2851. "composer/installers": "^1.7",
  2852. "cweagans/composer-patches": "~1.0",
  2853. "drupal/alinks": "1.0.0",
  2854. "drupal/core-recommended": "^8.8",
  2855. "g1a/composer-test-scenarios": "^3",
  2856. "lox/xhprof": "dev-master",
  2857. "phpunit/phpunit": "^4.8.36 || ^6.1",
  2858. "squizlabs/php_codesniffer": "^2.7 || ^3",
  2859. "vlucas/phpdotenv": "^2.4"
  2860. },
  2861. "bin": [
  2862. "drush"
  2863. ],
  2864. "type": "library",
  2865. "extra": {
  2866. "installer-paths": {
  2867. "sut/core": [
  2868. "type:drupal-core"
  2869. ],
  2870. "sut/libraries/{$name}": [
  2871. "type:drupal-library"
  2872. ],
  2873. "sut/modules/unish/{$name}": [
  2874. "drupal/devel"
  2875. ],
  2876. "sut/themes/unish/{$name}": [
  2877. "drupal/empty_theme"
  2878. ],
  2879. "sut/modules/contrib/{$name}": [
  2880. "type:drupal-module"
  2881. ],
  2882. "sut/profiles/contrib/{$name}": [
  2883. "type:drupal-profile"
  2884. ],
  2885. "sut/themes/contrib/{$name}": [
  2886. "type:drupal-theme"
  2887. ],
  2888. "sut/drush/contrib/{$name}": [
  2889. "type:drupal-drush"
  2890. ]
  2891. },
  2892. "branch-alias": {
  2893. "dev-master": "10.x-dev"
  2894. }
  2895. },
  2896. "autoload": {
  2897. "psr-4": {
  2898. "Drush\\": "src/",
  2899. "Drush\\Internal\\": "src/internal-forks"
  2900. }
  2901. },
  2902. "notification-url": "https://packagist.org/downloads/",
  2903. "license": [
  2904. "GPL-2.0-or-later"
  2905. ],
  2906. "authors": [
  2907. {
  2908. "name": "Moshe Weitzman",
  2909. "email": "weitzman@tejasa.com"
  2910. },
  2911. {
  2912. "name": "Owen Barton",
  2913. "email": "drupal@owenbarton.com"
  2914. },
  2915. {
  2916. "name": "Greg Anderson",
  2917. "email": "greg.1.anderson@greenknowe.org"
  2918. },
  2919. {
  2920. "name": "Jonathan Araña Cruz",
  2921. "email": "jonhattan@faita.net"
  2922. },
  2923. {
  2924. "name": "Jonathan Hedstrom",
  2925. "email": "jhedstrom@gmail.com"
  2926. },
  2927. {
  2928. "name": "Christopher Gervais",
  2929. "email": "chris@ergonlogic.com"
  2930. },
  2931. {
  2932. "name": "Dave Reid",
  2933. "email": "dave@davereid.net"
  2934. },
  2935. {
  2936. "name": "Damian Lee",
  2937. "email": "damiankloip@googlemail.com"
  2938. }
  2939. ],
  2940. "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.",
  2941. "homepage": "http://www.drush.org",
  2942. "time": "2020-02-26T21:07:53+00:00"
  2943. },
  2944. {
  2945. "name": "easyrdf/easyrdf",
  2946. "version": "0.9.1",
  2947. "source": {
  2948. "type": "git",
  2949. "url": "https://github.com/easyrdf/easyrdf.git",
  2950. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  2951. },
  2952. "dist": {
  2953. "type": "zip",
  2954. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  2955. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  2956. "shasum": ""
  2957. },
  2958. "require": {
  2959. "ext-mbstring": "*",
  2960. "ext-pcre": "*",
  2961. "php": ">=5.2.8"
  2962. },
  2963. "require-dev": {
  2964. "phpunit/phpunit": "~3.5",
  2965. "sami/sami": "~1.4",
  2966. "squizlabs/php_codesniffer": "~1.4.3"
  2967. },
  2968. "suggest": {
  2969. "ml/json-ld": "~1.0"
  2970. },
  2971. "type": "library",
  2972. "autoload": {
  2973. "psr-0": {
  2974. "EasyRdf_": "lib/"
  2975. }
  2976. },
  2977. "notification-url": "https://packagist.org/downloads/",
  2978. "license": [
  2979. "BSD-3-Clause"
  2980. ],
  2981. "authors": [
  2982. {
  2983. "name": "Nicholas Humfrey",
  2984. "email": "njh@aelius.com",
  2985. "homepage": "http://www.aelius.com/njh/",
  2986. "role": "Developer"
  2987. },
  2988. {
  2989. "name": "Alexey Zakhlestin",
  2990. "email": "indeyets@gmail.com",
  2991. "role": "Developer"
  2992. }
  2993. ],
  2994. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  2995. "homepage": "http://www.easyrdf.org/",
  2996. "keywords": [
  2997. "Linked Data",
  2998. "RDF",
  2999. "Semantic Web",
  3000. "Turtle",
  3001. "rdfa",
  3002. "sparql"
  3003. ],
  3004. "time": "2015-02-27T09:45:49+00:00"
  3005. },
  3006. {
  3007. "name": "egulias/email-validator",
  3008. "version": "2.1.17",
  3009. "source": {
  3010. "type": "git",
  3011. "url": "https://github.com/egulias/EmailValidator.git",
  3012. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  3013. },
  3014. "dist": {
  3015. "type": "zip",
  3016. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  3017. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  3018. "shasum": ""
  3019. },
  3020. "require": {
  3021. "doctrine/lexer": "^1.0.1",
  3022. "php": ">=5.5",
  3023. "symfony/polyfill-intl-idn": "^1.10"
  3024. },
  3025. "require-dev": {
  3026. "dominicsayers/isemail": "^3.0.7",
  3027. "phpunit/phpunit": "^4.8.36|^7.5.15",
  3028. "satooshi/php-coveralls": "^1.0.1"
  3029. },
  3030. "suggest": {
  3031. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  3032. },
  3033. "type": "library",
  3034. "extra": {
  3035. "branch-alias": {
  3036. "dev-master": "2.1.x-dev"
  3037. }
  3038. },
  3039. "autoload": {
  3040. "psr-4": {
  3041. "Egulias\\EmailValidator\\": "EmailValidator"
  3042. }
  3043. },
  3044. "notification-url": "https://packagist.org/downloads/",
  3045. "license": [
  3046. "MIT"
  3047. ],
  3048. "authors": [
  3049. {
  3050. "name": "Eduardo Gulias Davis"
  3051. }
  3052. ],
  3053. "description": "A library for validating emails against several RFCs",
  3054. "homepage": "https://github.com/egulias/EmailValidator",
  3055. "keywords": [
  3056. "email",
  3057. "emailvalidation",
  3058. "emailvalidator",
  3059. "validation",
  3060. "validator"
  3061. ],
  3062. "time": "2020-02-13T22:36:52+00:00"
  3063. },
  3064. {
  3065. "name": "grasmash/expander",
  3066. "version": "1.0.0",
  3067. "source": {
  3068. "type": "git",
  3069. "url": "https://github.com/grasmash/expander.git",
  3070. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  3071. },
  3072. "dist": {
  3073. "type": "zip",
  3074. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  3075. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  3076. "shasum": ""
  3077. },
  3078. "require": {
  3079. "dflydev/dot-access-data": "^1.1.0",
  3080. "php": ">=5.4"
  3081. },
  3082. "require-dev": {
  3083. "greg-1-anderson/composer-test-scenarios": "^1",
  3084. "phpunit/phpunit": "^4|^5.5.4",
  3085. "satooshi/php-coveralls": "^1.0.2|dev-master",
  3086. "squizlabs/php_codesniffer": "^2.7"
  3087. },
  3088. "type": "library",
  3089. "extra": {
  3090. "branch-alias": {
  3091. "dev-master": "1.x-dev"
  3092. }
  3093. },
  3094. "autoload": {
  3095. "psr-4": {
  3096. "Grasmash\\Expander\\": "src/"
  3097. }
  3098. },
  3099. "notification-url": "https://packagist.org/downloads/",
  3100. "license": [
  3101. "MIT"
  3102. ],
  3103. "authors": [
  3104. {
  3105. "name": "Matthew Grasmick"
  3106. }
  3107. ],
  3108. "description": "Expands internal property references in PHP arrays file.",
  3109. "time": "2017-12-21T22:14:55+00:00"
  3110. },
  3111. {
  3112. "name": "grasmash/yaml-expander",
  3113. "version": "1.4.0",
  3114. "source": {
  3115. "type": "git",
  3116. "url": "https://github.com/grasmash/yaml-expander.git",
  3117. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  3118. },
  3119. "dist": {
  3120. "type": "zip",
  3121. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  3122. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  3123. "shasum": ""
  3124. },
  3125. "require": {
  3126. "dflydev/dot-access-data": "^1.1.0",
  3127. "php": ">=5.4",
  3128. "symfony/yaml": "^2.8.11|^3|^4"
  3129. },
  3130. "require-dev": {
  3131. "greg-1-anderson/composer-test-scenarios": "^1",
  3132. "phpunit/phpunit": "^4.8|^5.5.4",
  3133. "satooshi/php-coveralls": "^1.0.2|dev-master",
  3134. "squizlabs/php_codesniffer": "^2.7"
  3135. },
  3136. "type": "library",
  3137. "extra": {
  3138. "branch-alias": {
  3139. "dev-master": "1.x-dev"
  3140. }
  3141. },
  3142. "autoload": {
  3143. "psr-4": {
  3144. "Grasmash\\YamlExpander\\": "src/"
  3145. }
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "MIT"
  3150. ],
  3151. "authors": [
  3152. {
  3153. "name": "Matthew Grasmick"
  3154. }
  3155. ],
  3156. "description": "Expands internal property references in a yaml file.",
  3157. "time": "2017-12-16T16:06:03+00:00"
  3158. },
  3159. {
  3160. "name": "guzzlehttp/guzzle",
  3161. "version": "6.5.4",
  3162. "source": {
  3163. "type": "git",
  3164. "url": "https://github.com/guzzle/guzzle.git",
  3165. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  3166. },
  3167. "dist": {
  3168. "type": "zip",
  3169. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  3170. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  3171. "shasum": ""
  3172. },
  3173. "require": {
  3174. "ext-json": "*",
  3175. "guzzlehttp/promises": "^1.0",
  3176. "guzzlehttp/psr7": "^1.6.1",
  3177. "php": ">=5.5",
  3178. "symfony/polyfill-intl-idn": "1.17.0"
  3179. },
  3180. "require-dev": {
  3181. "ext-curl": "*",
  3182. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  3183. "psr/log": "^1.1"
  3184. },
  3185. "suggest": {
  3186. "psr/log": "Required for using the Log middleware"
  3187. },
  3188. "type": "library",
  3189. "extra": {
  3190. "branch-alias": {
  3191. "dev-master": "6.5-dev"
  3192. }
  3193. },
  3194. "autoload": {
  3195. "psr-4": {
  3196. "GuzzleHttp\\": "src/"
  3197. },
  3198. "files": [
  3199. "src/functions_include.php"
  3200. ]
  3201. },
  3202. "notification-url": "https://packagist.org/downloads/",
  3203. "license": [
  3204. "MIT"
  3205. ],
  3206. "authors": [
  3207. {
  3208. "name": "Michael Dowling",
  3209. "email": "mtdowling@gmail.com",
  3210. "homepage": "https://github.com/mtdowling"
  3211. }
  3212. ],
  3213. "description": "Guzzle is a PHP HTTP client library",
  3214. "homepage": "http://guzzlephp.org/",
  3215. "keywords": [
  3216. "client",
  3217. "curl",
  3218. "framework",
  3219. "http",
  3220. "http client",
  3221. "rest",
  3222. "web service"
  3223. ],
  3224. "time": "2020-05-25T19:35:05+00:00"
  3225. },
  3226. {
  3227. "name": "guzzlehttp/promises",
  3228. "version": "v1.3.1",
  3229. "source": {
  3230. "type": "git",
  3231. "url": "https://github.com/guzzle/promises.git",
  3232. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  3233. },
  3234. "dist": {
  3235. "type": "zip",
  3236. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  3237. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  3238. "shasum": ""
  3239. },
  3240. "require": {
  3241. "php": ">=5.5.0"
  3242. },
  3243. "require-dev": {
  3244. "phpunit/phpunit": "^4.0"
  3245. },
  3246. "type": "library",
  3247. "extra": {
  3248. "branch-alias": {
  3249. "dev-master": "1.4-dev"
  3250. }
  3251. },
  3252. "autoload": {
  3253. "psr-4": {
  3254. "GuzzleHttp\\Promise\\": "src/"
  3255. },
  3256. "files": [
  3257. "src/functions_include.php"
  3258. ]
  3259. },
  3260. "notification-url": "https://packagist.org/downloads/",
  3261. "license": [
  3262. "MIT"
  3263. ],
  3264. "authors": [
  3265. {
  3266. "name": "Michael Dowling",
  3267. "email": "mtdowling@gmail.com",
  3268. "homepage": "https://github.com/mtdowling"
  3269. }
  3270. ],
  3271. "description": "Guzzle promises library",
  3272. "keywords": [
  3273. "promise"
  3274. ],
  3275. "time": "2016-12-20T10:07:11+00:00"
  3276. },
  3277. {
  3278. "name": "guzzlehttp/psr7",
  3279. "version": "1.6.1",
  3280. "source": {
  3281. "type": "git",
  3282. "url": "https://github.com/guzzle/psr7.git",
  3283. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  3284. },
  3285. "dist": {
  3286. "type": "zip",
  3287. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  3288. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  3289. "shasum": ""
  3290. },
  3291. "require": {
  3292. "php": ">=5.4.0",
  3293. "psr/http-message": "~1.0",
  3294. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  3295. },
  3296. "provide": {
  3297. "psr/http-message-implementation": "1.0"
  3298. },
  3299. "require-dev": {
  3300. "ext-zlib": "*",
  3301. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  3302. },
  3303. "suggest": {
  3304. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  3305. },
  3306. "type": "library",
  3307. "extra": {
  3308. "branch-alias": {
  3309. "dev-master": "1.6-dev"
  3310. }
  3311. },
  3312. "autoload": {
  3313. "psr-4": {
  3314. "GuzzleHttp\\Psr7\\": "src/"
  3315. },
  3316. "files": [
  3317. "src/functions_include.php"
  3318. ]
  3319. },
  3320. "notification-url": "https://packagist.org/downloads/",
  3321. "license": [
  3322. "MIT"
  3323. ],
  3324. "authors": [
  3325. {
  3326. "name": "Michael Dowling",
  3327. "email": "mtdowling@gmail.com",
  3328. "homepage": "https://github.com/mtdowling"
  3329. },
  3330. {
  3331. "name": "Tobias Schultze",
  3332. "homepage": "https://github.com/Tobion"
  3333. }
  3334. ],
  3335. "description": "PSR-7 message implementation that also provides common utility methods",
  3336. "keywords": [
  3337. "http",
  3338. "message",
  3339. "psr-7",
  3340. "request",
  3341. "response",
  3342. "stream",
  3343. "uri",
  3344. "url"
  3345. ],
  3346. "time": "2019-07-01T23:21:34+00:00"
  3347. },
  3348. {
  3349. "name": "laminas/laminas-diactoros",
  3350. "version": "1.8.7p2",
  3351. "source": {
  3352. "type": "git",
  3353. "url": "https://github.com/laminas/laminas-diactoros.git",
  3354. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  3355. },
  3356. "dist": {
  3357. "type": "zip",
  3358. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  3359. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  3360. "shasum": ""
  3361. },
  3362. "require": {
  3363. "laminas/laminas-zendframework-bridge": "^1.0",
  3364. "php": "^5.6 || ^7.0",
  3365. "psr/http-message": "^1.0"
  3366. },
  3367. "provide": {
  3368. "psr/http-message-implementation": "1.0"
  3369. },
  3370. "replace": {
  3371. "zendframework/zend-diactoros": "~1.8.7.0"
  3372. },
  3373. "require-dev": {
  3374. "ext-dom": "*",
  3375. "ext-libxml": "*",
  3376. "laminas/laminas-coding-standard": "~1.0",
  3377. "php-http/psr7-integration-tests": "dev-master",
  3378. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  3379. },
  3380. "type": "library",
  3381. "extra": {
  3382. "branch-alias": {
  3383. "dev-release-1.8": "1.8.x-dev"
  3384. }
  3385. },
  3386. "autoload": {
  3387. "files": [
  3388. "src/functions/create_uploaded_file.php",
  3389. "src/functions/marshal_headers_from_sapi.php",
  3390. "src/functions/marshal_method_from_sapi.php",
  3391. "src/functions/marshal_protocol_version_from_sapi.php",
  3392. "src/functions/marshal_uri_from_sapi.php",
  3393. "src/functions/normalize_server.php",
  3394. "src/functions/normalize_uploaded_files.php",
  3395. "src/functions/parse_cookie_header.php",
  3396. "src/functions/create_uploaded_file.legacy.php",
  3397. "src/functions/marshal_headers_from_sapi.legacy.php",
  3398. "src/functions/marshal_method_from_sapi.legacy.php",
  3399. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  3400. "src/functions/marshal_uri_from_sapi.legacy.php",
  3401. "src/functions/normalize_server.legacy.php",
  3402. "src/functions/normalize_uploaded_files.legacy.php",
  3403. "src/functions/parse_cookie_header.legacy.php"
  3404. ],
  3405. "psr-4": {
  3406. "Laminas\\Diactoros\\": "src/"
  3407. }
  3408. },
  3409. "notification-url": "https://packagist.org/downloads/",
  3410. "license": [
  3411. "BSD-3-Clause"
  3412. ],
  3413. "description": "PSR HTTP Message implementations",
  3414. "homepage": "https://laminas.dev",
  3415. "keywords": [
  3416. "http",
  3417. "laminas",
  3418. "psr",
  3419. "psr-7"
  3420. ],
  3421. "time": "2020-03-23T15:28:28+00:00"
  3422. },
  3423. {
  3424. "name": "laminas/laminas-escaper",
  3425. "version": "2.6.1",
  3426. "source": {
  3427. "type": "git",
  3428. "url": "https://github.com/laminas/laminas-escaper.git",
  3429. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  3430. },
  3431. "dist": {
  3432. "type": "zip",
  3433. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  3434. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  3435. "shasum": ""
  3436. },
  3437. "require": {
  3438. "laminas/laminas-zendframework-bridge": "^1.0",
  3439. "php": "^5.6 || ^7.0"
  3440. },
  3441. "replace": {
  3442. "zendframework/zend-escaper": "self.version"
  3443. },
  3444. "require-dev": {
  3445. "laminas/laminas-coding-standard": "~1.0.0",
  3446. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  3447. },
  3448. "type": "library",
  3449. "extra": {
  3450. "branch-alias": {
  3451. "dev-master": "2.6.x-dev",
  3452. "dev-develop": "2.7.x-dev"
  3453. }
  3454. },
  3455. "autoload": {
  3456. "psr-4": {
  3457. "Laminas\\Escaper\\": "src/"
  3458. }
  3459. },
  3460. "notification-url": "https://packagist.org/downloads/",
  3461. "license": [
  3462. "BSD-3-Clause"
  3463. ],
  3464. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  3465. "homepage": "https://laminas.dev",
  3466. "keywords": [
  3467. "escaper",
  3468. "laminas"
  3469. ],
  3470. "time": "2019-12-31T16:43:30+00:00"
  3471. },
  3472. {
  3473. "name": "laminas/laminas-feed",
  3474. "version": "2.12.2",
  3475. "source": {
  3476. "type": "git",
  3477. "url": "https://github.com/laminas/laminas-feed.git",
  3478. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  3479. },
  3480. "dist": {
  3481. "type": "zip",
  3482. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  3483. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  3484. "shasum": ""
  3485. },
  3486. "require": {
  3487. "ext-dom": "*",
  3488. "ext-libxml": "*",
  3489. "laminas/laminas-escaper": "^2.5.2",
  3490. "laminas/laminas-stdlib": "^3.2.1",
  3491. "laminas/laminas-zendframework-bridge": "^1.0",
  3492. "php": "^5.6 || ^7.0"
  3493. },
  3494. "replace": {
  3495. "zendframework/zend-feed": "^2.12.0"
  3496. },
  3497. "require-dev": {
  3498. "laminas/laminas-cache": "^2.7.2",
  3499. "laminas/laminas-coding-standard": "~1.0.0",
  3500. "laminas/laminas-db": "^2.8.2",
  3501. "laminas/laminas-http": "^2.7",
  3502. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  3503. "laminas/laminas-validator": "^2.10.1",
  3504. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  3505. "psr/http-message": "^1.0.1"
  3506. },
  3507. "suggest": {
  3508. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  3509. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  3510. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  3511. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  3512. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  3513. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  3514. },
  3515. "type": "library",
  3516. "extra": {
  3517. "branch-alias": {
  3518. "dev-master": "2.12.x-dev",
  3519. "dev-develop": "2.13.x-dev"
  3520. }
  3521. },
  3522. "autoload": {
  3523. "psr-4": {
  3524. "Laminas\\Feed\\": "src/"
  3525. }
  3526. },
  3527. "notification-url": "https://packagist.org/downloads/",
  3528. "license": [
  3529. "BSD-3-Clause"
  3530. ],
  3531. "description": "provides functionality for consuming RSS and Atom feeds",
  3532. "homepage": "https://laminas.dev",
  3533. "keywords": [
  3534. "feed",
  3535. "laminas"
  3536. ],
  3537. "time": "2020-03-29T12:36:29+00:00"
  3538. },
  3539. {
  3540. "name": "laminas/laminas-stdlib",
  3541. "version": "3.2.1",
  3542. "source": {
  3543. "type": "git",
  3544. "url": "https://github.com/laminas/laminas-stdlib.git",
  3545. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  3546. },
  3547. "dist": {
  3548. "type": "zip",
  3549. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  3550. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  3551. "shasum": ""
  3552. },
  3553. "require": {
  3554. "laminas/laminas-zendframework-bridge": "^1.0",
  3555. "php": "^5.6 || ^7.0"
  3556. },
  3557. "replace": {
  3558. "zendframework/zend-stdlib": "self.version"
  3559. },
  3560. "require-dev": {
  3561. "laminas/laminas-coding-standard": "~1.0.0",
  3562. "phpbench/phpbench": "^0.13",
  3563. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  3564. },
  3565. "type": "library",
  3566. "extra": {
  3567. "branch-alias": {
  3568. "dev-master": "3.2.x-dev",
  3569. "dev-develop": "3.3.x-dev"
  3570. }
  3571. },
  3572. "autoload": {
  3573. "psr-4": {
  3574. "Laminas\\Stdlib\\": "src/"
  3575. }
  3576. },
  3577. "notification-url": "https://packagist.org/downloads/",
  3578. "license": [
  3579. "BSD-3-Clause"
  3580. ],
  3581. "description": "SPL extensions, array utilities, error handlers, and more",
  3582. "homepage": "https://laminas.dev",
  3583. "keywords": [
  3584. "laminas",
  3585. "stdlib"
  3586. ],
  3587. "time": "2019-12-31T17:51:15+00:00"
  3588. },
  3589. {
  3590. "name": "laminas/laminas-zendframework-bridge",
  3591. "version": "1.0.4",
  3592. "source": {
  3593. "type": "git",
  3594. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  3595. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  3596. },
  3597. "dist": {
  3598. "type": "zip",
  3599. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  3600. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  3601. "shasum": ""
  3602. },
  3603. "require": {
  3604. "php": "^5.6 || ^7.0"
  3605. },
  3606. "require-dev": {
  3607. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  3608. "squizlabs/php_codesniffer": "^3.5"
  3609. },
  3610. "type": "library",
  3611. "extra": {
  3612. "branch-alias": {
  3613. "dev-master": "1.0.x-dev",
  3614. "dev-develop": "1.1.x-dev"
  3615. },
  3616. "laminas": {
  3617. "module": "Laminas\\ZendFrameworkBridge"
  3618. }
  3619. },
  3620. "autoload": {
  3621. "files": [
  3622. "src/autoload.php"
  3623. ],
  3624. "psr-4": {
  3625. "Laminas\\ZendFrameworkBridge\\": "src//"
  3626. }
  3627. },
  3628. "notification-url": "https://packagist.org/downloads/",
  3629. "license": [
  3630. "BSD-3-Clause"
  3631. ],
  3632. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  3633. "keywords": [
  3634. "ZendFramework",
  3635. "autoloading",
  3636. "laminas",
  3637. "zf"
  3638. ],
  3639. "funding": [
  3640. {
  3641. "url": "https://funding.communitybridge.org/projects/laminas-project",
  3642. "type": "community_bridge"
  3643. }
  3644. ],
  3645. "time": "2020-05-20T16:45:56+00:00"
  3646. },
  3647. {
  3648. "name": "league/container",
  3649. "version": "2.4.1",
  3650. "source": {
  3651. "type": "git",
  3652. "url": "https://github.com/thephpleague/container.git",
  3653. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  3654. },
  3655. "dist": {
  3656. "type": "zip",
  3657. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  3658. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  3659. "shasum": ""
  3660. },
  3661. "require": {
  3662. "container-interop/container-interop": "^1.2",
  3663. "php": "^5.4.0 || ^7.0"
  3664. },
  3665. "provide": {
  3666. "container-interop/container-interop-implementation": "^1.2",
  3667. "psr/container-implementation": "^1.0"
  3668. },
  3669. "replace": {
  3670. "orno/di": "~2.0"
  3671. },
  3672. "require-dev": {
  3673. "phpunit/phpunit": "4.*"
  3674. },
  3675. "type": "library",
  3676. "extra": {
  3677. "branch-alias": {
  3678. "dev-2.x": "2.x-dev",
  3679. "dev-1.x": "1.x-dev"
  3680. }
  3681. },
  3682. "autoload": {
  3683. "psr-4": {
  3684. "League\\Container\\": "src"
  3685. }
  3686. },
  3687. "notification-url": "https://packagist.org/downloads/",
  3688. "license": [
  3689. "MIT"
  3690. ],
  3691. "authors": [
  3692. {
  3693. "name": "Phil Bennett",
  3694. "email": "philipobenito@gmail.com",
  3695. "homepage": "http://www.philipobenito.com",
  3696. "role": "Developer"
  3697. }
  3698. ],
  3699. "description": "A fast and intuitive dependency injection container.",
  3700. "homepage": "https://github.com/thephpleague/container",
  3701. "keywords": [
  3702. "container",
  3703. "dependency",
  3704. "di",
  3705. "injection",
  3706. "league",
  3707. "provider",
  3708. "service"
  3709. ],
  3710. "time": "2017-05-10T09:20:27+00:00"
  3711. },
  3712. {
  3713. "name": "masterminds/html5",
  3714. "version": "2.3.0",
  3715. "source": {
  3716. "type": "git",
  3717. "url": "https://github.com/Masterminds/html5-php.git",
  3718. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  3719. },
  3720. "dist": {
  3721. "type": "zip",
  3722. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  3723. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  3724. "shasum": ""
  3725. },
  3726. "require": {
  3727. "ext-libxml": "*",
  3728. "php": ">=5.3.0"
  3729. },
  3730. "require-dev": {
  3731. "phpunit/phpunit": "4.*",
  3732. "sami/sami": "~2.0",
  3733. "satooshi/php-coveralls": "1.0.*"
  3734. },
  3735. "type": "library",
  3736. "extra": {
  3737. "branch-alias": {
  3738. "dev-master": "2.2-dev"
  3739. }
  3740. },
  3741. "autoload": {
  3742. "psr-4": {
  3743. "Masterminds\\": "src"
  3744. }
  3745. },
  3746. "notification-url": "https://packagist.org/downloads/",
  3747. "license": [
  3748. "MIT"
  3749. ],
  3750. "authors": [
  3751. {
  3752. "name": "Matt Butcher",
  3753. "email": "technosophos@gmail.com"
  3754. },
  3755. {
  3756. "name": "Asmir Mustafic",
  3757. "email": "goetas@gmail.com"
  3758. },
  3759. {
  3760. "name": "Matt Farina",
  3761. "email": "matt@mattfarina.com"
  3762. }
  3763. ],
  3764. "description": "An HTML5 parser and serializer.",
  3765. "homepage": "http://masterminds.github.io/html5-php",
  3766. "keywords": [
  3767. "HTML5",
  3768. "dom",
  3769. "html",
  3770. "parser",
  3771. "querypath",
  3772. "serializer",
  3773. "xml"
  3774. ],
  3775. "time": "2017-09-04T12:26:28+00:00"
  3776. },
  3777. {
  3778. "name": "nikic/php-parser",
  3779. "version": "v4.5.0",
  3780. "source": {
  3781. "type": "git",
  3782. "url": "https://github.com/nikic/PHP-Parser.git",
  3783. "reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463"
  3784. },
  3785. "dist": {
  3786. "type": "zip",
  3787. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/53c2753d756f5adb586dca79c2ec0e2654dd9463",
  3788. "reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463",
  3789. "shasum": ""
  3790. },
  3791. "require": {
  3792. "ext-tokenizer": "*",
  3793. "php": ">=7.0"
  3794. },
  3795. "require-dev": {
  3796. "ircmaxell/php-yacc": "0.0.5",
  3797. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  3798. },
  3799. "bin": [
  3800. "bin/php-parse"
  3801. ],
  3802. "type": "library",
  3803. "extra": {
  3804. "branch-alias": {
  3805. "dev-master": "4.3-dev"
  3806. }
  3807. },
  3808. "autoload": {
  3809. "psr-4": {
  3810. "PhpParser\\": "lib/PhpParser"
  3811. }
  3812. },
  3813. "notification-url": "https://packagist.org/downloads/",
  3814. "license": [
  3815. "BSD-3-Clause"
  3816. ],
  3817. "authors": [
  3818. {
  3819. "name": "Nikita Popov"
  3820. }
  3821. ],
  3822. "description": "A PHP parser written in PHP",
  3823. "keywords": [
  3824. "parser",
  3825. "php"
  3826. ],
  3827. "time": "2020-06-03T07:24:19+00:00"
  3828. },
  3829. {
  3830. "name": "paragonie/random_compat",
  3831. "version": "v9.99.99",
  3832. "source": {
  3833. "type": "git",
  3834. "url": "https://github.com/paragonie/random_compat.git",
  3835. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  3836. },
  3837. "dist": {
  3838. "type": "zip",
  3839. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  3840. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  3841. "shasum": ""
  3842. },
  3843. "require": {
  3844. "php": "^7"
  3845. },
  3846. "require-dev": {
  3847. "phpunit/phpunit": "4.*|5.*",
  3848. "vimeo/psalm": "^1"
  3849. },
  3850. "suggest": {
  3851. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3852. },
  3853. "type": "library",
  3854. "notification-url": "https://packagist.org/downloads/",
  3855. "license": [
  3856. "MIT"
  3857. ],
  3858. "authors": [
  3859. {
  3860. "name": "Paragon Initiative Enterprises",
  3861. "email": "security@paragonie.com",
  3862. "homepage": "https://paragonie.com"
  3863. }
  3864. ],
  3865. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3866. "keywords": [
  3867. "csprng",
  3868. "polyfill",
  3869. "pseudorandom",
  3870. "random"
  3871. ],
  3872. "time": "2018-07-02T15:55:56+00:00"
  3873. },
  3874. {
  3875. "name": "pear/archive_tar",
  3876. "version": "1.4.9",
  3877. "source": {
  3878. "type": "git",
  3879. "url": "https://github.com/pear/Archive_Tar.git",
  3880. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0"
  3881. },
  3882. "dist": {
  3883. "type": "zip",
  3884. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/c5b00053770e1d72128252c62c2c1a12c26639f0",
  3885. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0",
  3886. "shasum": ""
  3887. },
  3888. "require": {
  3889. "pear/pear-core-minimal": "^1.10.0alpha2",
  3890. "php": ">=5.2.0"
  3891. },
  3892. "require-dev": {
  3893. "phpunit/phpunit": "*"
  3894. },
  3895. "suggest": {
  3896. "ext-bz2": "Bz2 compression support.",
  3897. "ext-xz": "Lzma2 compression support.",
  3898. "ext-zlib": "Gzip compression support."
  3899. },
  3900. "type": "library",
  3901. "extra": {
  3902. "branch-alias": {
  3903. "dev-master": "1.4.x-dev"
  3904. }
  3905. },
  3906. "autoload": {
  3907. "psr-0": {
  3908. "Archive_Tar": ""
  3909. }
  3910. },
  3911. "notification-url": "https://packagist.org/downloads/",
  3912. "include-path": [
  3913. "./"
  3914. ],
  3915. "license": [
  3916. "BSD-3-Clause"
  3917. ],
  3918. "authors": [
  3919. {
  3920. "name": "Vincent Blavet",
  3921. "email": "vincent@phpconcept.net"
  3922. },
  3923. {
  3924. "name": "Greg Beaver",
  3925. "email": "greg@chiaraquartet.net"
  3926. },
  3927. {
  3928. "name": "Michiel Rook",
  3929. "email": "mrook@php.net"
  3930. }
  3931. ],
  3932. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  3933. "homepage": "https://github.com/pear/Archive_Tar",
  3934. "keywords": [
  3935. "archive",
  3936. "tar"
  3937. ],
  3938. "time": "2019-12-04T10:17:28+00:00"
  3939. },
  3940. {
  3941. "name": "pear/console_getopt",
  3942. "version": "v1.4.3",
  3943. "source": {
  3944. "type": "git",
  3945. "url": "https://github.com/pear/Console_Getopt.git",
  3946. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  3947. },
  3948. "dist": {
  3949. "type": "zip",
  3950. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  3951. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  3952. "shasum": ""
  3953. },
  3954. "type": "library",
  3955. "autoload": {
  3956. "psr-0": {
  3957. "Console": "./"
  3958. }
  3959. },
  3960. "notification-url": "https://packagist.org/downloads/",
  3961. "include-path": [
  3962. "./"
  3963. ],
  3964. "license": [
  3965. "BSD-2-Clause"
  3966. ],
  3967. "authors": [
  3968. {
  3969. "name": "Andrei Zmievski",
  3970. "email": "andrei@php.net",
  3971. "role": "Lead"
  3972. },
  3973. {
  3974. "name": "Stig Bakken",
  3975. "email": "stig@php.net",
  3976. "role": "Developer"
  3977. },
  3978. {
  3979. "name": "Greg Beaver",
  3980. "email": "cellog@php.net",
  3981. "role": "Helper"
  3982. }
  3983. ],
  3984. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  3985. "time": "2019-11-20T18:27:48+00:00"
  3986. },
  3987. {
  3988. "name": "pear/pear-core-minimal",
  3989. "version": "v1.10.10",
  3990. "source": {
  3991. "type": "git",
  3992. "url": "https://github.com/pear/pear-core-minimal.git",
  3993. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  3994. },
  3995. "dist": {
  3996. "type": "zip",
  3997. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  3998. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  3999. "shasum": ""
  4000. },
  4001. "require": {
  4002. "pear/console_getopt": "~1.4",
  4003. "pear/pear_exception": "~1.0"
  4004. },
  4005. "replace": {
  4006. "rsky/pear-core-min": "self.version"
  4007. },
  4008. "type": "library",
  4009. "autoload": {
  4010. "psr-0": {
  4011. "": "src/"
  4012. }
  4013. },
  4014. "notification-url": "https://packagist.org/downloads/",
  4015. "include-path": [
  4016. "src/"
  4017. ],
  4018. "license": [
  4019. "BSD-3-Clause"
  4020. ],
  4021. "authors": [
  4022. {
  4023. "name": "Christian Weiske",
  4024. "email": "cweiske@php.net",
  4025. "role": "Lead"
  4026. }
  4027. ],
  4028. "description": "Minimal set of PEAR core files to be used as composer dependency",
  4029. "time": "2019-11-19T19:00:24+00:00"
  4030. },
  4031. {
  4032. "name": "pear/pear_exception",
  4033. "version": "v1.0.1",
  4034. "source": {
  4035. "type": "git",
  4036. "url": "https://github.com/pear/PEAR_Exception.git",
  4037. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  4038. },
  4039. "dist": {
  4040. "type": "zip",
  4041. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  4042. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  4043. "shasum": ""
  4044. },
  4045. "require": {
  4046. "php": ">=4.4.0"
  4047. },
  4048. "require-dev": {
  4049. "phpunit/phpunit": "*"
  4050. },
  4051. "type": "class",
  4052. "extra": {
  4053. "branch-alias": {
  4054. "dev-master": "1.0.x-dev"
  4055. }
  4056. },
  4057. "autoload": {
  4058. "classmap": [
  4059. "PEAR/"
  4060. ]
  4061. },
  4062. "notification-url": "https://packagist.org/downloads/",
  4063. "include-path": [
  4064. "."
  4065. ],
  4066. "license": [
  4067. "BSD-2-Clause"
  4068. ],
  4069. "authors": [
  4070. {
  4071. "name": "Helgi Thormar",
  4072. "email": "dufuz@php.net"
  4073. },
  4074. {
  4075. "name": "Greg Beaver",
  4076. "email": "cellog@php.net"
  4077. }
  4078. ],
  4079. "description": "The PEAR Exception base class.",
  4080. "homepage": "https://github.com/pear/PEAR_Exception",
  4081. "keywords": [
  4082. "exception"
  4083. ],
  4084. "time": "2019-12-10T10:24:42+00:00"
  4085. },
  4086. {
  4087. "name": "psr/container",
  4088. "version": "1.0.0",
  4089. "source": {
  4090. "type": "git",
  4091. "url": "https://github.com/php-fig/container.git",
  4092. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  4093. },
  4094. "dist": {
  4095. "type": "zip",
  4096. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  4097. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  4098. "shasum": ""
  4099. },
  4100. "require": {
  4101. "php": ">=5.3.0"
  4102. },
  4103. "type": "library",
  4104. "extra": {
  4105. "branch-alias": {
  4106. "dev-master": "1.0.x-dev"
  4107. }
  4108. },
  4109. "autoload": {
  4110. "psr-4": {
  4111. "Psr\\Container\\": "src/"
  4112. }
  4113. },
  4114. "notification-url": "https://packagist.org/downloads/",
  4115. "license": [
  4116. "MIT"
  4117. ],
  4118. "authors": [
  4119. {
  4120. "name": "PHP-FIG",
  4121. "homepage": "http://www.php-fig.org/"
  4122. }
  4123. ],
  4124. "description": "Common Container Interface (PHP FIG PSR-11)",
  4125. "homepage": "https://github.com/php-fig/container",
  4126. "keywords": [
  4127. "PSR-11",
  4128. "container",
  4129. "container-interface",
  4130. "container-interop",
  4131. "psr"
  4132. ],
  4133. "time": "2017-02-14T16:28:37+00:00"
  4134. },
  4135. {
  4136. "name": "psr/http-message",
  4137. "version": "1.0.1",
  4138. "source": {
  4139. "type": "git",
  4140. "url": "https://github.com/php-fig/http-message.git",
  4141. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4142. },
  4143. "dist": {
  4144. "type": "zip",
  4145. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4146. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4147. "shasum": ""
  4148. },
  4149. "require": {
  4150. "php": ">=5.3.0"
  4151. },
  4152. "type": "library",
  4153. "extra": {
  4154. "branch-alias": {
  4155. "dev-master": "1.0.x-dev"
  4156. }
  4157. },
  4158. "autoload": {
  4159. "psr-4": {
  4160. "Psr\\Http\\Message\\": "src/"
  4161. }
  4162. },
  4163. "notification-url": "https://packagist.org/downloads/",
  4164. "license": [
  4165. "MIT"
  4166. ],
  4167. "authors": [
  4168. {
  4169. "name": "PHP-FIG",
  4170. "homepage": "http://www.php-fig.org/"
  4171. }
  4172. ],
  4173. "description": "Common interface for HTTP messages",
  4174. "homepage": "https://github.com/php-fig/http-message",
  4175. "keywords": [
  4176. "http",
  4177. "http-message",
  4178. "psr",
  4179. "psr-7",
  4180. "request",
  4181. "response"
  4182. ],
  4183. "time": "2016-08-06T14:39:51+00:00"
  4184. },
  4185. {
  4186. "name": "psr/log",
  4187. "version": "1.1.3",
  4188. "source": {
  4189. "type": "git",
  4190. "url": "https://github.com/php-fig/log.git",
  4191. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  4192. },
  4193. "dist": {
  4194. "type": "zip",
  4195. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  4196. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  4197. "shasum": ""
  4198. },
  4199. "require": {
  4200. "php": ">=5.3.0"
  4201. },
  4202. "type": "library",
  4203. "extra": {
  4204. "branch-alias": {
  4205. "dev-master": "1.1.x-dev"
  4206. }
  4207. },
  4208. "autoload": {
  4209. "psr-4": {
  4210. "Psr\\Log\\": "Psr/Log/"
  4211. }
  4212. },
  4213. "notification-url": "https://packagist.org/downloads/",
  4214. "license": [
  4215. "MIT"
  4216. ],
  4217. "authors": [
  4218. {
  4219. "name": "PHP-FIG",
  4220. "homepage": "http://www.php-fig.org/"
  4221. }
  4222. ],
  4223. "description": "Common interface for logging libraries",
  4224. "homepage": "https://github.com/php-fig/log",
  4225. "keywords": [
  4226. "log",
  4227. "psr",
  4228. "psr-3"
  4229. ],
  4230. "time": "2020-03-23T09:12:05+00:00"
  4231. },
  4232. {
  4233. "name": "psy/psysh",
  4234. "version": "v0.10.4",
  4235. "source": {
  4236. "type": "git",
  4237. "url": "https://github.com/bobthecow/psysh.git",
  4238. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  4239. },
  4240. "dist": {
  4241. "type": "zip",
  4242. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  4243. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  4244. "shasum": ""
  4245. },
  4246. "require": {
  4247. "dnoegel/php-xdg-base-dir": "0.1.*",
  4248. "ext-json": "*",
  4249. "ext-tokenizer": "*",
  4250. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4251. "php": "^8.0 || ^7.0 || ^5.5.9",
  4252. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4253. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4254. },
  4255. "require-dev": {
  4256. "bamarni/composer-bin-plugin": "^1.2",
  4257. "hoa/console": "3.17.*"
  4258. },
  4259. "suggest": {
  4260. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4261. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4262. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4263. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4264. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4265. },
  4266. "bin": [
  4267. "bin/psysh"
  4268. ],
  4269. "type": "library",
  4270. "extra": {
  4271. "branch-alias": {
  4272. "dev-master": "0.10.x-dev"
  4273. }
  4274. },
  4275. "autoload": {
  4276. "files": [
  4277. "src/functions.php"
  4278. ],
  4279. "psr-4": {
  4280. "Psy\\": "src/"
  4281. }
  4282. },
  4283. "notification-url": "https://packagist.org/downloads/",
  4284. "license": [
  4285. "MIT"
  4286. ],
  4287. "authors": [
  4288. {
  4289. "name": "Justin Hileman",
  4290. "email": "justin@justinhileman.info",
  4291. "homepage": "http://justinhileman.com"
  4292. }
  4293. ],
  4294. "description": "An interactive shell for modern PHP.",
  4295. "homepage": "http://psysh.org",
  4296. "keywords": [
  4297. "REPL",
  4298. "console",
  4299. "interactive",
  4300. "shell"
  4301. ],
  4302. "time": "2020-05-03T19:32:03+00:00"
  4303. },
  4304. {
  4305. "name": "ralouphie/getallheaders",
  4306. "version": "3.0.3",
  4307. "source": {
  4308. "type": "git",
  4309. "url": "https://github.com/ralouphie/getallheaders.git",
  4310. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4311. },
  4312. "dist": {
  4313. "type": "zip",
  4314. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4315. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4316. "shasum": ""
  4317. },
  4318. "require": {
  4319. "php": ">=5.6"
  4320. },
  4321. "require-dev": {
  4322. "php-coveralls/php-coveralls": "^2.1",
  4323. "phpunit/phpunit": "^5 || ^6.5"
  4324. },
  4325. "type": "library",
  4326. "autoload": {
  4327. "files": [
  4328. "src/getallheaders.php"
  4329. ]
  4330. },
  4331. "notification-url": "https://packagist.org/downloads/",
  4332. "license": [
  4333. "MIT"
  4334. ],
  4335. "authors": [
  4336. {
  4337. "name": "Ralph Khattar",
  4338. "email": "ralph.khattar@gmail.com"
  4339. }
  4340. ],
  4341. "description": "A polyfill for getallheaders.",
  4342. "time": "2019-03-08T08:55:37+00:00"
  4343. },
  4344. {
  4345. "name": "stack/builder",
  4346. "version": "v1.0.5",
  4347. "source": {
  4348. "type": "git",
  4349. "url": "https://github.com/stackphp/builder.git",
  4350. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  4351. },
  4352. "dist": {
  4353. "type": "zip",
  4354. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  4355. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  4356. "shasum": ""
  4357. },
  4358. "require": {
  4359. "php": ">=5.3.0",
  4360. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  4361. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  4362. },
  4363. "require-dev": {
  4364. "silex/silex": "~1.0"
  4365. },
  4366. "type": "library",
  4367. "extra": {
  4368. "branch-alias": {
  4369. "dev-master": "1.0-dev"
  4370. }
  4371. },
  4372. "autoload": {
  4373. "psr-0": {
  4374. "Stack": "src"
  4375. }
  4376. },
  4377. "notification-url": "https://packagist.org/downloads/",
  4378. "license": [
  4379. "MIT"
  4380. ],
  4381. "authors": [
  4382. {
  4383. "name": "Igor Wiedler",
  4384. "email": "igor@wiedler.ch"
  4385. }
  4386. ],
  4387. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  4388. "keywords": [
  4389. "stack"
  4390. ],
  4391. "time": "2017-11-18T14:57:29+00:00"
  4392. },
  4393. {
  4394. "name": "symfony-cmf/routing",
  4395. "version": "1.4.1",
  4396. "source": {
  4397. "type": "git",
  4398. "url": "https://github.com/symfony-cmf/routing.git",
  4399. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  4400. },
  4401. "dist": {
  4402. "type": "zip",
  4403. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  4404. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  4405. "shasum": ""
  4406. },
  4407. "require": {
  4408. "php": "^5.3.9|^7.0",
  4409. "psr/log": "1.*",
  4410. "symfony/http-kernel": "^2.2|3.*",
  4411. "symfony/routing": "^2.2|3.*"
  4412. },
  4413. "require-dev": {
  4414. "friendsofsymfony/jsrouting-bundle": "^1.1",
  4415. "symfony-cmf/testing": "^1.3",
  4416. "symfony/config": "^2.2|3.*",
  4417. "symfony/dependency-injection": "^2.0.5|3.*",
  4418. "symfony/event-dispatcher": "^2.1|3.*"
  4419. },
  4420. "suggest": {
  4421. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  4422. },
  4423. "type": "library",
  4424. "extra": {
  4425. "branch-alias": {
  4426. "dev-master": "1.4-dev"
  4427. }
  4428. },
  4429. "autoload": {
  4430. "psr-4": {
  4431. "Symfony\\Cmf\\Component\\Routing\\": ""
  4432. }
  4433. },
  4434. "notification-url": "https://packagist.org/downloads/",
  4435. "license": [
  4436. "MIT"
  4437. ],
  4438. "authors": [
  4439. {
  4440. "name": "Symfony CMF Community",
  4441. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  4442. }
  4443. ],
  4444. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  4445. "homepage": "http://cmf.symfony.com",
  4446. "keywords": [
  4447. "database",
  4448. "routing"
  4449. ],
  4450. "time": "2017-05-09T08:10:41+00:00"
  4451. },
  4452. {
  4453. "name": "symfony/class-loader",
  4454. "version": "v3.4.41",
  4455. "source": {
  4456. "type": "git",
  4457. "url": "https://github.com/symfony/class-loader.git",
  4458. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  4459. },
  4460. "dist": {
  4461. "type": "zip",
  4462. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  4463. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  4464. "shasum": ""
  4465. },
  4466. "require": {
  4467. "php": "^5.5.9|>=7.0.8"
  4468. },
  4469. "require-dev": {
  4470. "symfony/finder": "~2.8|~3.0|~4.0",
  4471. "symfony/polyfill-apcu": "~1.1"
  4472. },
  4473. "suggest": {
  4474. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  4475. },
  4476. "type": "library",
  4477. "extra": {
  4478. "branch-alias": {
  4479. "dev-master": "3.4-dev"
  4480. }
  4481. },
  4482. "autoload": {
  4483. "psr-4": {
  4484. "Symfony\\Component\\ClassLoader\\": ""
  4485. },
  4486. "exclude-from-classmap": [
  4487. "/Tests/"
  4488. ]
  4489. },
  4490. "notification-url": "https://packagist.org/downloads/",
  4491. "license": [
  4492. "MIT"
  4493. ],
  4494. "authors": [
  4495. {
  4496. "name": "Fabien Potencier",
  4497. "email": "fabien@symfony.com"
  4498. },
  4499. {
  4500. "name": "Symfony Community",
  4501. "homepage": "https://symfony.com/contributors"
  4502. }
  4503. ],
  4504. "description": "Symfony ClassLoader Component",
  4505. "homepage": "https://symfony.com",
  4506. "funding": [
  4507. {
  4508. "url": "https://symfony.com/sponsor",
  4509. "type": "custom"
  4510. },
  4511. {
  4512. "url": "https://github.com/fabpot",
  4513. "type": "github"
  4514. },
  4515. {
  4516. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4517. "type": "tidelift"
  4518. }
  4519. ],
  4520. "time": "2020-03-15T09:38:08+00:00"
  4521. },
  4522. {
  4523. "name": "symfony/console",
  4524. "version": "v3.4.41",
  4525. "source": {
  4526. "type": "git",
  4527. "url": "https://github.com/symfony/console.git",
  4528. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  4529. },
  4530. "dist": {
  4531. "type": "zip",
  4532. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  4533. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  4534. "shasum": ""
  4535. },
  4536. "require": {
  4537. "php": "^5.5.9|>=7.0.8",
  4538. "symfony/debug": "~2.8|~3.0|~4.0",
  4539. "symfony/polyfill-mbstring": "~1.0"
  4540. },
  4541. "conflict": {
  4542. "symfony/dependency-injection": "<3.4",
  4543. "symfony/process": "<3.3"
  4544. },
  4545. "provide": {
  4546. "psr/log-implementation": "1.0"
  4547. },
  4548. "require-dev": {
  4549. "psr/log": "~1.0",
  4550. "symfony/config": "~3.3|~4.0",
  4551. "symfony/dependency-injection": "~3.4|~4.0",
  4552. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  4553. "symfony/lock": "~3.4|~4.0",
  4554. "symfony/process": "~3.3|~4.0"
  4555. },
  4556. "suggest": {
  4557. "psr/log": "For using the console logger",
  4558. "symfony/event-dispatcher": "",
  4559. "symfony/lock": "",
  4560. "symfony/process": ""
  4561. },
  4562. "type": "library",
  4563. "extra": {
  4564. "branch-alias": {
  4565. "dev-master": "3.4-dev"
  4566. }
  4567. },
  4568. "autoload": {
  4569. "psr-4": {
  4570. "Symfony\\Component\\Console\\": ""
  4571. },
  4572. "exclude-from-classmap": [
  4573. "/Tests/"
  4574. ]
  4575. },
  4576. "notification-url": "https://packagist.org/downloads/",
  4577. "license": [
  4578. "MIT"
  4579. ],
  4580. "authors": [
  4581. {
  4582. "name": "Fabien Potencier",
  4583. "email": "fabien@symfony.com"
  4584. },
  4585. {
  4586. "name": "Symfony Community",
  4587. "homepage": "https://symfony.com/contributors"
  4588. }
  4589. ],
  4590. "description": "Symfony Console Component",
  4591. "homepage": "https://symfony.com",
  4592. "funding": [
  4593. {
  4594. "url": "https://symfony.com/sponsor",
  4595. "type": "custom"
  4596. },
  4597. {
  4598. "url": "https://github.com/fabpot",
  4599. "type": "github"
  4600. },
  4601. {
  4602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4603. "type": "tidelift"
  4604. }
  4605. ],
  4606. "time": "2020-05-30T18:58:05+00:00"
  4607. },
  4608. {
  4609. "name": "symfony/debug",
  4610. "version": "v3.4.41",
  4611. "source": {
  4612. "type": "git",
  4613. "url": "https://github.com/symfony/debug.git",
  4614. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  4615. },
  4616. "dist": {
  4617. "type": "zip",
  4618. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  4619. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  4620. "shasum": ""
  4621. },
  4622. "require": {
  4623. "php": "^5.5.9|>=7.0.8",
  4624. "psr/log": "~1.0"
  4625. },
  4626. "conflict": {
  4627. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  4628. },
  4629. "require-dev": {
  4630. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  4631. },
  4632. "type": "library",
  4633. "extra": {
  4634. "branch-alias": {
  4635. "dev-master": "3.4-dev"
  4636. }
  4637. },
  4638. "autoload": {
  4639. "psr-4": {
  4640. "Symfony\\Component\\Debug\\": ""
  4641. },
  4642. "exclude-from-classmap": [
  4643. "/Tests/"
  4644. ]
  4645. },
  4646. "notification-url": "https://packagist.org/downloads/",
  4647. "license": [
  4648. "MIT"
  4649. ],
  4650. "authors": [
  4651. {
  4652. "name": "Fabien Potencier",
  4653. "email": "fabien@symfony.com"
  4654. },
  4655. {
  4656. "name": "Symfony Community",
  4657. "homepage": "https://symfony.com/contributors"
  4658. }
  4659. ],
  4660. "description": "Symfony Debug Component",
  4661. "homepage": "https://symfony.com",
  4662. "funding": [
  4663. {
  4664. "url": "https://symfony.com/sponsor",
  4665. "type": "custom"
  4666. },
  4667. {
  4668. "url": "https://github.com/fabpot",
  4669. "type": "github"
  4670. },
  4671. {
  4672. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4673. "type": "tidelift"
  4674. }
  4675. ],
  4676. "time": "2020-05-22T18:25:20+00:00"
  4677. },
  4678. {
  4679. "name": "symfony/dependency-injection",
  4680. "version": "v3.4.41",
  4681. "source": {
  4682. "type": "git",
  4683. "url": "https://github.com/symfony/dependency-injection.git",
  4684. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  4685. },
  4686. "dist": {
  4687. "type": "zip",
  4688. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  4689. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  4690. "shasum": ""
  4691. },
  4692. "require": {
  4693. "php": "^5.5.9|>=7.0.8",
  4694. "psr/container": "^1.0"
  4695. },
  4696. "conflict": {
  4697. "symfony/config": "<3.3.7",
  4698. "symfony/finder": "<3.3",
  4699. "symfony/proxy-manager-bridge": "<3.4",
  4700. "symfony/yaml": "<3.4"
  4701. },
  4702. "provide": {
  4703. "psr/container-implementation": "1.0"
  4704. },
  4705. "require-dev": {
  4706. "symfony/config": "~3.3|~4.0",
  4707. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4708. "symfony/yaml": "~3.4|~4.0"
  4709. },
  4710. "suggest": {
  4711. "symfony/config": "",
  4712. "symfony/expression-language": "For using expressions in service container configuration",
  4713. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  4714. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  4715. "symfony/yaml": ""
  4716. },
  4717. "type": "library",
  4718. "extra": {
  4719. "branch-alias": {
  4720. "dev-master": "3.4-dev"
  4721. }
  4722. },
  4723. "autoload": {
  4724. "psr-4": {
  4725. "Symfony\\Component\\DependencyInjection\\": ""
  4726. },
  4727. "exclude-from-classmap": [
  4728. "/Tests/"
  4729. ]
  4730. },
  4731. "notification-url": "https://packagist.org/downloads/",
  4732. "license": [
  4733. "MIT"
  4734. ],
  4735. "authors": [
  4736. {
  4737. "name": "Fabien Potencier",
  4738. "email": "fabien@symfony.com"
  4739. },
  4740. {
  4741. "name": "Symfony Community",
  4742. "homepage": "https://symfony.com/contributors"
  4743. }
  4744. ],
  4745. "description": "Symfony DependencyInjection Component",
  4746. "homepage": "https://symfony.com",
  4747. "funding": [
  4748. {
  4749. "url": "https://symfony.com/sponsor",
  4750. "type": "custom"
  4751. },
  4752. {
  4753. "url": "https://github.com/fabpot",
  4754. "type": "github"
  4755. },
  4756. {
  4757. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4758. "type": "tidelift"
  4759. }
  4760. ],
  4761. "time": "2020-05-30T21:06:01+00:00"
  4762. },
  4763. {
  4764. "name": "symfony/event-dispatcher",
  4765. "version": "v3.4.41",
  4766. "source": {
  4767. "type": "git",
  4768. "url": "https://github.com/symfony/event-dispatcher.git",
  4769. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  4770. },
  4771. "dist": {
  4772. "type": "zip",
  4773. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  4774. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  4775. "shasum": ""
  4776. },
  4777. "require": {
  4778. "php": "^5.5.9|>=7.0.8"
  4779. },
  4780. "conflict": {
  4781. "symfony/dependency-injection": "<3.3"
  4782. },
  4783. "require-dev": {
  4784. "psr/log": "~1.0",
  4785. "symfony/config": "~2.8|~3.0|~4.0",
  4786. "symfony/dependency-injection": "~3.3|~4.0",
  4787. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4788. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  4789. },
  4790. "suggest": {
  4791. "symfony/dependency-injection": "",
  4792. "symfony/http-kernel": ""
  4793. },
  4794. "type": "library",
  4795. "extra": {
  4796. "branch-alias": {
  4797. "dev-master": "3.4-dev"
  4798. }
  4799. },
  4800. "autoload": {
  4801. "psr-4": {
  4802. "Symfony\\Component\\EventDispatcher\\": ""
  4803. },
  4804. "exclude-from-classmap": [
  4805. "/Tests/"
  4806. ]
  4807. },
  4808. "notification-url": "https://packagist.org/downloads/",
  4809. "license": [
  4810. "MIT"
  4811. ],
  4812. "authors": [
  4813. {
  4814. "name": "Fabien Potencier",
  4815. "email": "fabien@symfony.com"
  4816. },
  4817. {
  4818. "name": "Symfony Community",
  4819. "homepage": "https://symfony.com/contributors"
  4820. }
  4821. ],
  4822. "description": "Symfony EventDispatcher Component",
  4823. "homepage": "https://symfony.com",
  4824. "funding": [
  4825. {
  4826. "url": "https://symfony.com/sponsor",
  4827. "type": "custom"
  4828. },
  4829. {
  4830. "url": "https://github.com/fabpot",
  4831. "type": "github"
  4832. },
  4833. {
  4834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4835. "type": "tidelift"
  4836. }
  4837. ],
  4838. "time": "2020-05-05T15:06:23+00:00"
  4839. },
  4840. {
  4841. "name": "symfony/filesystem",
  4842. "version": "v4.4.9",
  4843. "source": {
  4844. "type": "git",
  4845. "url": "https://github.com/symfony/filesystem.git",
  4846. "reference": "b27f491309db5757816db672b256ea2e03677d30"
  4847. },
  4848. "dist": {
  4849. "type": "zip",
  4850. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30",
  4851. "reference": "b27f491309db5757816db672b256ea2e03677d30",
  4852. "shasum": ""
  4853. },
  4854. "require": {
  4855. "php": ">=7.1.3",
  4856. "symfony/polyfill-ctype": "~1.8"
  4857. },
  4858. "type": "library",
  4859. "extra": {
  4860. "branch-alias": {
  4861. "dev-master": "4.4-dev"
  4862. }
  4863. },
  4864. "autoload": {
  4865. "psr-4": {
  4866. "Symfony\\Component\\Filesystem\\": ""
  4867. },
  4868. "exclude-from-classmap": [
  4869. "/Tests/"
  4870. ]
  4871. },
  4872. "notification-url": "https://packagist.org/downloads/",
  4873. "license": [
  4874. "MIT"
  4875. ],
  4876. "authors": [
  4877. {
  4878. "name": "Fabien Potencier",
  4879. "email": "fabien@symfony.com"
  4880. },
  4881. {
  4882. "name": "Symfony Community",
  4883. "homepage": "https://symfony.com/contributors"
  4884. }
  4885. ],
  4886. "description": "Symfony Filesystem Component",
  4887. "homepage": "https://symfony.com",
  4888. "funding": [
  4889. {
  4890. "url": "https://symfony.com/sponsor",
  4891. "type": "custom"
  4892. },
  4893. {
  4894. "url": "https://github.com/fabpot",
  4895. "type": "github"
  4896. },
  4897. {
  4898. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4899. "type": "tidelift"
  4900. }
  4901. ],
  4902. "time": "2020-05-30T18:50:54+00:00"
  4903. },
  4904. {
  4905. "name": "symfony/finder",
  4906. "version": "v4.4.9",
  4907. "source": {
  4908. "type": "git",
  4909. "url": "https://github.com/symfony/finder.git",
  4910. "reference": "5729f943f9854c5781984ed4907bbb817735776b"
  4911. },
  4912. "dist": {
  4913. "type": "zip",
  4914. "url": "https://api.github.com/repos/symfony/finder/zipball/5729f943f9854c5781984ed4907bbb817735776b",
  4915. "reference": "5729f943f9854c5781984ed4907bbb817735776b",
  4916. "shasum": ""
  4917. },
  4918. "require": {
  4919. "php": "^7.1.3"
  4920. },
  4921. "type": "library",
  4922. "extra": {
  4923. "branch-alias": {
  4924. "dev-master": "4.4-dev"
  4925. }
  4926. },
  4927. "autoload": {
  4928. "psr-4": {
  4929. "Symfony\\Component\\Finder\\": ""
  4930. },
  4931. "exclude-from-classmap": [
  4932. "/Tests/"
  4933. ]
  4934. },
  4935. "notification-url": "https://packagist.org/downloads/",
  4936. "license": [
  4937. "MIT"
  4938. ],
  4939. "authors": [
  4940. {
  4941. "name": "Fabien Potencier",
  4942. "email": "fabien@symfony.com"
  4943. },
  4944. {
  4945. "name": "Symfony Community",
  4946. "homepage": "https://symfony.com/contributors"
  4947. }
  4948. ],
  4949. "description": "Symfony Finder Component",
  4950. "homepage": "https://symfony.com",
  4951. "funding": [
  4952. {
  4953. "url": "https://symfony.com/sponsor",
  4954. "type": "custom"
  4955. },
  4956. {
  4957. "url": "https://github.com/fabpot",
  4958. "type": "github"
  4959. },
  4960. {
  4961. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4962. "type": "tidelift"
  4963. }
  4964. ],
  4965. "time": "2020-03-27T16:54:36+00:00"
  4966. },
  4967. {
  4968. "name": "symfony/http-foundation",
  4969. "version": "v3.4.41",
  4970. "source": {
  4971. "type": "git",
  4972. "url": "https://github.com/symfony/http-foundation.git",
  4973. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  4974. },
  4975. "dist": {
  4976. "type": "zip",
  4977. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  4978. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  4979. "shasum": ""
  4980. },
  4981. "require": {
  4982. "php": "^5.5.9|>=7.0.8",
  4983. "symfony/polyfill-mbstring": "~1.1",
  4984. "symfony/polyfill-php70": "~1.6"
  4985. },
  4986. "require-dev": {
  4987. "symfony/expression-language": "~2.8|~3.0|~4.0"
  4988. },
  4989. "type": "library",
  4990. "extra": {
  4991. "branch-alias": {
  4992. "dev-master": "3.4-dev"
  4993. }
  4994. },
  4995. "autoload": {
  4996. "psr-4": {
  4997. "Symfony\\Component\\HttpFoundation\\": ""
  4998. },
  4999. "exclude-from-classmap": [
  5000. "/Tests/"
  5001. ]
  5002. },
  5003. "notification-url": "https://packagist.org/downloads/",
  5004. "license": [
  5005. "MIT"
  5006. ],
  5007. "authors": [
  5008. {
  5009. "name": "Fabien Potencier",
  5010. "email": "fabien@symfony.com"
  5011. },
  5012. {
  5013. "name": "Symfony Community",
  5014. "homepage": "https://symfony.com/contributors"
  5015. }
  5016. ],
  5017. "description": "Symfony HttpFoundation Component",
  5018. "homepage": "https://symfony.com",
  5019. "funding": [
  5020. {
  5021. "url": "https://symfony.com/sponsor",
  5022. "type": "custom"
  5023. },
  5024. {
  5025. "url": "https://github.com/fabpot",
  5026. "type": "github"
  5027. },
  5028. {
  5029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5030. "type": "tidelift"
  5031. }
  5032. ],
  5033. "time": "2020-05-16T13:15:54+00:00"
  5034. },
  5035. {
  5036. "name": "symfony/http-kernel",
  5037. "version": "v3.4.41",
  5038. "source": {
  5039. "type": "git",
  5040. "url": "https://github.com/symfony/http-kernel.git",
  5041. "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df"
  5042. },
  5043. "dist": {
  5044. "type": "zip",
  5045. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e4e4ed6c008c983645b4eee6b67d8f258cde54df",
  5046. "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df",
  5047. "shasum": ""
  5048. },
  5049. "require": {
  5050. "php": "^5.5.9|>=7.0.8",
  5051. "psr/log": "~1.0",
  5052. "symfony/debug": "^3.3.3|~4.0",
  5053. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  5054. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  5055. "symfony/polyfill-ctype": "~1.8",
  5056. "symfony/polyfill-php56": "~1.8"
  5057. },
  5058. "conflict": {
  5059. "symfony/config": "<2.8",
  5060. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  5061. "symfony/var-dumper": "<3.3",
  5062. "twig/twig": "<1.34|<2.4,>=2"
  5063. },
  5064. "provide": {
  5065. "psr/log-implementation": "1.0"
  5066. },
  5067. "require-dev": {
  5068. "psr/cache": "~1.0",
  5069. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  5070. "symfony/class-loader": "~2.8|~3.0",
  5071. "symfony/config": "~2.8|~3.0|~4.0",
  5072. "symfony/console": "~2.8|~3.0|~4.0",
  5073. "symfony/css-selector": "~2.8|~3.0|~4.0",
  5074. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  5075. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  5076. "symfony/expression-language": "~2.8|~3.0|~4.0",
  5077. "symfony/finder": "~2.8|~3.0|~4.0",
  5078. "symfony/process": "~2.8|~3.0|~4.0",
  5079. "symfony/routing": "~3.4|~4.0",
  5080. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  5081. "symfony/templating": "~2.8|~3.0|~4.0",
  5082. "symfony/translation": "~2.8|~3.0|~4.0",
  5083. "symfony/var-dumper": "~3.3|~4.0"
  5084. },
  5085. "suggest": {
  5086. "symfony/browser-kit": "",
  5087. "symfony/config": "",
  5088. "symfony/console": "",
  5089. "symfony/dependency-injection": "",
  5090. "symfony/finder": "",
  5091. "symfony/var-dumper": ""
  5092. },
  5093. "type": "library",
  5094. "extra": {
  5095. "branch-alias": {
  5096. "dev-master": "3.4-dev"
  5097. }
  5098. },
  5099. "autoload": {
  5100. "psr-4": {
  5101. "Symfony\\Component\\HttpKernel\\": ""
  5102. },
  5103. "exclude-from-classmap": [
  5104. "/Tests/"
  5105. ]
  5106. },
  5107. "notification-url": "https://packagist.org/downloads/",
  5108. "license": [
  5109. "MIT"
  5110. ],
  5111. "authors": [
  5112. {
  5113. "name": "Fabien Potencier",
  5114. "email": "fabien@symfony.com"
  5115. },
  5116. {
  5117. "name": "Symfony Community",
  5118. "homepage": "https://symfony.com/contributors"
  5119. }
  5120. ],
  5121. "description": "Symfony HttpKernel Component",
  5122. "homepage": "https://symfony.com",
  5123. "funding": [
  5124. {
  5125. "url": "https://symfony.com/sponsor",
  5126. "type": "custom"
  5127. },
  5128. {
  5129. "url": "https://github.com/fabpot",
  5130. "type": "github"
  5131. },
  5132. {
  5133. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5134. "type": "tidelift"
  5135. }
  5136. ],
  5137. "time": "2020-05-31T05:14:17+00:00"
  5138. },
  5139. {
  5140. "name": "symfony/polyfill-ctype",
  5141. "version": "v1.17.0",
  5142. "source": {
  5143. "type": "git",
  5144. "url": "https://github.com/symfony/polyfill-ctype.git",
  5145. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  5146. },
  5147. "dist": {
  5148. "type": "zip",
  5149. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  5150. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  5151. "shasum": ""
  5152. },
  5153. "require": {
  5154. "php": ">=5.3.3"
  5155. },
  5156. "suggest": {
  5157. "ext-ctype": "For best performance"
  5158. },
  5159. "type": "library",
  5160. "extra": {
  5161. "branch-alias": {
  5162. "dev-master": "1.17-dev"
  5163. }
  5164. },
  5165. "autoload": {
  5166. "psr-4": {
  5167. "Symfony\\Polyfill\\Ctype\\": ""
  5168. },
  5169. "files": [
  5170. "bootstrap.php"
  5171. ]
  5172. },
  5173. "notification-url": "https://packagist.org/downloads/",
  5174. "license": [
  5175. "MIT"
  5176. ],
  5177. "authors": [
  5178. {
  5179. "name": "Gert de Pagter",
  5180. "email": "BackEndTea@gmail.com"
  5181. },
  5182. {
  5183. "name": "Symfony Community",
  5184. "homepage": "https://symfony.com/contributors"
  5185. }
  5186. ],
  5187. "description": "Symfony polyfill for ctype functions",
  5188. "homepage": "https://symfony.com",
  5189. "keywords": [
  5190. "compatibility",
  5191. "ctype",
  5192. "polyfill",
  5193. "portable"
  5194. ],
  5195. "funding": [
  5196. {
  5197. "url": "https://symfony.com/sponsor",
  5198. "type": "custom"
  5199. },
  5200. {
  5201. "url": "https://github.com/fabpot",
  5202. "type": "github"
  5203. },
  5204. {
  5205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5206. "type": "tidelift"
  5207. }
  5208. ],
  5209. "time": "2020-05-12T16:14:59+00:00"
  5210. },
  5211. {
  5212. "name": "symfony/polyfill-iconv",
  5213. "version": "v1.17.0",
  5214. "source": {
  5215. "type": "git",
  5216. "url": "https://github.com/symfony/polyfill-iconv.git",
  5217. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  5218. },
  5219. "dist": {
  5220. "type": "zip",
  5221. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  5222. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  5223. "shasum": ""
  5224. },
  5225. "require": {
  5226. "php": ">=5.3.3"
  5227. },
  5228. "suggest": {
  5229. "ext-iconv": "For best performance"
  5230. },
  5231. "type": "library",
  5232. "extra": {
  5233. "branch-alias": {
  5234. "dev-master": "1.17-dev"
  5235. }
  5236. },
  5237. "autoload": {
  5238. "psr-4": {
  5239. "Symfony\\Polyfill\\Iconv\\": ""
  5240. },
  5241. "files": [
  5242. "bootstrap.php"
  5243. ]
  5244. },
  5245. "notification-url": "https://packagist.org/downloads/",
  5246. "license": [
  5247. "MIT"
  5248. ],
  5249. "authors": [
  5250. {
  5251. "name": "Nicolas Grekas",
  5252. "email": "p@tchwork.com"
  5253. },
  5254. {
  5255. "name": "Symfony Community",
  5256. "homepage": "https://symfony.com/contributors"
  5257. }
  5258. ],
  5259. "description": "Symfony polyfill for the Iconv extension",
  5260. "homepage": "https://symfony.com",
  5261. "keywords": [
  5262. "compatibility",
  5263. "iconv",
  5264. "polyfill",
  5265. "portable",
  5266. "shim"
  5267. ],
  5268. "funding": [
  5269. {
  5270. "url": "https://symfony.com/sponsor",
  5271. "type": "custom"
  5272. },
  5273. {
  5274. "url": "https://github.com/fabpot",
  5275. "type": "github"
  5276. },
  5277. {
  5278. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5279. "type": "tidelift"
  5280. }
  5281. ],
  5282. "time": "2020-05-12T16:47:27+00:00"
  5283. },
  5284. {
  5285. "name": "symfony/polyfill-intl-idn",
  5286. "version": "v1.17.0",
  5287. "source": {
  5288. "type": "git",
  5289. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5290. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  5291. },
  5292. "dist": {
  5293. "type": "zip",
  5294. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  5295. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  5296. "shasum": ""
  5297. },
  5298. "require": {
  5299. "php": ">=5.3.3",
  5300. "symfony/polyfill-mbstring": "^1.3",
  5301. "symfony/polyfill-php72": "^1.10"
  5302. },
  5303. "suggest": {
  5304. "ext-intl": "For best performance"
  5305. },
  5306. "type": "library",
  5307. "extra": {
  5308. "branch-alias": {
  5309. "dev-master": "1.17-dev"
  5310. }
  5311. },
  5312. "autoload": {
  5313. "psr-4": {
  5314. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5315. },
  5316. "files": [
  5317. "bootstrap.php"
  5318. ]
  5319. },
  5320. "notification-url": "https://packagist.org/downloads/",
  5321. "license": [
  5322. "MIT"
  5323. ],
  5324. "authors": [
  5325. {
  5326. "name": "Laurent Bassin",
  5327. "email": "laurent@bassin.info"
  5328. },
  5329. {
  5330. "name": "Symfony Community",
  5331. "homepage": "https://symfony.com/contributors"
  5332. }
  5333. ],
  5334. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5335. "homepage": "https://symfony.com",
  5336. "keywords": [
  5337. "compatibility",
  5338. "idn",
  5339. "intl",
  5340. "polyfill",
  5341. "portable",
  5342. "shim"
  5343. ],
  5344. "funding": [
  5345. {
  5346. "url": "https://symfony.com/sponsor",
  5347. "type": "custom"
  5348. },
  5349. {
  5350. "url": "https://github.com/fabpot",
  5351. "type": "github"
  5352. },
  5353. {
  5354. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5355. "type": "tidelift"
  5356. }
  5357. ],
  5358. "time": "2020-05-12T16:47:27+00:00"
  5359. },
  5360. {
  5361. "name": "symfony/polyfill-mbstring",
  5362. "version": "v1.17.0",
  5363. "source": {
  5364. "type": "git",
  5365. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5366. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  5367. },
  5368. "dist": {
  5369. "type": "zip",
  5370. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  5371. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  5372. "shasum": ""
  5373. },
  5374. "require": {
  5375. "php": ">=5.3.3"
  5376. },
  5377. "suggest": {
  5378. "ext-mbstring": "For best performance"
  5379. },
  5380. "type": "library",
  5381. "extra": {
  5382. "branch-alias": {
  5383. "dev-master": "1.17-dev"
  5384. }
  5385. },
  5386. "autoload": {
  5387. "psr-4": {
  5388. "Symfony\\Polyfill\\Mbstring\\": ""
  5389. },
  5390. "files": [
  5391. "bootstrap.php"
  5392. ]
  5393. },
  5394. "notification-url": "https://packagist.org/downloads/",
  5395. "license": [
  5396. "MIT"
  5397. ],
  5398. "authors": [
  5399. {
  5400. "name": "Nicolas Grekas",
  5401. "email": "p@tchwork.com"
  5402. },
  5403. {
  5404. "name": "Symfony Community",
  5405. "homepage": "https://symfony.com/contributors"
  5406. }
  5407. ],
  5408. "description": "Symfony polyfill for the Mbstring extension",
  5409. "homepage": "https://symfony.com",
  5410. "keywords": [
  5411. "compatibility",
  5412. "mbstring",
  5413. "polyfill",
  5414. "portable",
  5415. "shim"
  5416. ],
  5417. "funding": [
  5418. {
  5419. "url": "https://symfony.com/sponsor",
  5420. "type": "custom"
  5421. },
  5422. {
  5423. "url": "https://github.com/fabpot",
  5424. "type": "github"
  5425. },
  5426. {
  5427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5428. "type": "tidelift"
  5429. }
  5430. ],
  5431. "time": "2020-05-12T16:47:27+00:00"
  5432. },
  5433. {
  5434. "name": "symfony/polyfill-php56",
  5435. "version": "v1.17.0",
  5436. "source": {
  5437. "type": "git",
  5438. "url": "https://github.com/symfony/polyfill-php56.git",
  5439. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  5440. },
  5441. "dist": {
  5442. "type": "zip",
  5443. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  5444. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  5445. "shasum": ""
  5446. },
  5447. "require": {
  5448. "php": ">=5.3.3",
  5449. "symfony/polyfill-util": "~1.0"
  5450. },
  5451. "type": "library",
  5452. "extra": {
  5453. "branch-alias": {
  5454. "dev-master": "1.17-dev"
  5455. }
  5456. },
  5457. "autoload": {
  5458. "psr-4": {
  5459. "Symfony\\Polyfill\\Php56\\": ""
  5460. },
  5461. "files": [
  5462. "bootstrap.php"
  5463. ]
  5464. },
  5465. "notification-url": "https://packagist.org/downloads/",
  5466. "license": [
  5467. "MIT"
  5468. ],
  5469. "authors": [
  5470. {
  5471. "name": "Nicolas Grekas",
  5472. "email": "p@tchwork.com"
  5473. },
  5474. {
  5475. "name": "Symfony Community",
  5476. "homepage": "https://symfony.com/contributors"
  5477. }
  5478. ],
  5479. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  5480. "homepage": "https://symfony.com",
  5481. "keywords": [
  5482. "compatibility",
  5483. "polyfill",
  5484. "portable",
  5485. "shim"
  5486. ],
  5487. "funding": [
  5488. {
  5489. "url": "https://symfony.com/sponsor",
  5490. "type": "custom"
  5491. },
  5492. {
  5493. "url": "https://github.com/fabpot",
  5494. "type": "github"
  5495. },
  5496. {
  5497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5498. "type": "tidelift"
  5499. }
  5500. ],
  5501. "time": "2020-05-12T16:47:27+00:00"
  5502. },
  5503. {
  5504. "name": "symfony/polyfill-php70",
  5505. "version": "v1.17.0",
  5506. "source": {
  5507. "type": "git",
  5508. "url": "https://github.com/symfony/polyfill-php70.git",
  5509. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  5510. },
  5511. "dist": {
  5512. "type": "zip",
  5513. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  5514. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  5515. "shasum": ""
  5516. },
  5517. "require": {
  5518. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  5519. "php": ">=5.3.3"
  5520. },
  5521. "type": "library",
  5522. "extra": {
  5523. "branch-alias": {
  5524. "dev-master": "1.17-dev"
  5525. }
  5526. },
  5527. "autoload": {
  5528. "psr-4": {
  5529. "Symfony\\Polyfill\\Php70\\": ""
  5530. },
  5531. "files": [
  5532. "bootstrap.php"
  5533. ],
  5534. "classmap": [
  5535. "Resources/stubs"
  5536. ]
  5537. },
  5538. "notification-url": "https://packagist.org/downloads/",
  5539. "license": [
  5540. "MIT"
  5541. ],
  5542. "authors": [
  5543. {
  5544. "name": "Nicolas Grekas",
  5545. "email": "p@tchwork.com"
  5546. },
  5547. {
  5548. "name": "Symfony Community",
  5549. "homepage": "https://symfony.com/contributors"
  5550. }
  5551. ],
  5552. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  5553. "homepage": "https://symfony.com",
  5554. "keywords": [
  5555. "compatibility",
  5556. "polyfill",
  5557. "portable",
  5558. "shim"
  5559. ],
  5560. "funding": [
  5561. {
  5562. "url": "https://symfony.com/sponsor",
  5563. "type": "custom"
  5564. },
  5565. {
  5566. "url": "https://github.com/fabpot",
  5567. "type": "github"
  5568. },
  5569. {
  5570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5571. "type": "tidelift"
  5572. }
  5573. ],
  5574. "time": "2020-05-12T16:47:27+00:00"
  5575. },
  5576. {
  5577. "name": "symfony/polyfill-php72",
  5578. "version": "v1.17.0",
  5579. "source": {
  5580. "type": "git",
  5581. "url": "https://github.com/symfony/polyfill-php72.git",
  5582. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  5583. },
  5584. "dist": {
  5585. "type": "zip",
  5586. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  5587. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  5588. "shasum": ""
  5589. },
  5590. "require": {
  5591. "php": ">=5.3.3"
  5592. },
  5593. "type": "library",
  5594. "extra": {
  5595. "branch-alias": {
  5596. "dev-master": "1.17-dev"
  5597. }
  5598. },
  5599. "autoload": {
  5600. "psr-4": {
  5601. "Symfony\\Polyfill\\Php72\\": ""
  5602. },
  5603. "files": [
  5604. "bootstrap.php"
  5605. ]
  5606. },
  5607. "notification-url": "https://packagist.org/downloads/",
  5608. "license": [
  5609. "MIT"
  5610. ],
  5611. "authors": [
  5612. {
  5613. "name": "Nicolas Grekas",
  5614. "email": "p@tchwork.com"
  5615. },
  5616. {
  5617. "name": "Symfony Community",
  5618. "homepage": "https://symfony.com/contributors"
  5619. }
  5620. ],
  5621. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5622. "homepage": "https://symfony.com",
  5623. "keywords": [
  5624. "compatibility",
  5625. "polyfill",
  5626. "portable",
  5627. "shim"
  5628. ],
  5629. "funding": [
  5630. {
  5631. "url": "https://symfony.com/sponsor",
  5632. "type": "custom"
  5633. },
  5634. {
  5635. "url": "https://github.com/fabpot",
  5636. "type": "github"
  5637. },
  5638. {
  5639. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5640. "type": "tidelift"
  5641. }
  5642. ],
  5643. "time": "2020-05-12T16:47:27+00:00"
  5644. },
  5645. {
  5646. "name": "symfony/polyfill-php80",
  5647. "version": "v1.17.0",
  5648. "source": {
  5649. "type": "git",
  5650. "url": "https://github.com/symfony/polyfill-php80.git",
  5651. "reference": "5e30b2799bc1ad68f7feb62b60a73743589438dd"
  5652. },
  5653. "dist": {
  5654. "type": "zip",
  5655. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/5e30b2799bc1ad68f7feb62b60a73743589438dd",
  5656. "reference": "5e30b2799bc1ad68f7feb62b60a73743589438dd",
  5657. "shasum": ""
  5658. },
  5659. "require": {
  5660. "php": ">=7.0.8"
  5661. },
  5662. "type": "library",
  5663. "extra": {
  5664. "branch-alias": {
  5665. "dev-master": "1.17-dev"
  5666. }
  5667. },
  5668. "autoload": {
  5669. "psr-4": {
  5670. "Symfony\\Polyfill\\Php80\\": ""
  5671. },
  5672. "files": [
  5673. "bootstrap.php"
  5674. ],
  5675. "classmap": [
  5676. "Resources/stubs"
  5677. ]
  5678. },
  5679. "notification-url": "https://packagist.org/downloads/",
  5680. "license": [
  5681. "MIT"
  5682. ],
  5683. "authors": [
  5684. {
  5685. "name": "Ion Bazan",
  5686. "email": "ion.bazan@gmail.com"
  5687. },
  5688. {
  5689. "name": "Nicolas Grekas",
  5690. "email": "p@tchwork.com"
  5691. },
  5692. {
  5693. "name": "Symfony Community",
  5694. "homepage": "https://symfony.com/contributors"
  5695. }
  5696. ],
  5697. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5698. "homepage": "https://symfony.com",
  5699. "keywords": [
  5700. "compatibility",
  5701. "polyfill",
  5702. "portable",
  5703. "shim"
  5704. ],
  5705. "funding": [
  5706. {
  5707. "url": "https://symfony.com/sponsor",
  5708. "type": "custom"
  5709. },
  5710. {
  5711. "url": "https://github.com/fabpot",
  5712. "type": "github"
  5713. },
  5714. {
  5715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5716. "type": "tidelift"
  5717. }
  5718. ],
  5719. "time": "2020-05-12T16:47:27+00:00"
  5720. },
  5721. {
  5722. "name": "symfony/polyfill-util",
  5723. "version": "v1.17.0",
  5724. "source": {
  5725. "type": "git",
  5726. "url": "https://github.com/symfony/polyfill-util.git",
  5727. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  5728. },
  5729. "dist": {
  5730. "type": "zip",
  5731. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  5732. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  5733. "shasum": ""
  5734. },
  5735. "require": {
  5736. "php": ">=5.3.3"
  5737. },
  5738. "type": "library",
  5739. "extra": {
  5740. "branch-alias": {
  5741. "dev-master": "1.17-dev"
  5742. }
  5743. },
  5744. "autoload": {
  5745. "psr-4": {
  5746. "Symfony\\Polyfill\\Util\\": ""
  5747. }
  5748. },
  5749. "notification-url": "https://packagist.org/downloads/",
  5750. "license": [
  5751. "MIT"
  5752. ],
  5753. "authors": [
  5754. {
  5755. "name": "Nicolas Grekas",
  5756. "email": "p@tchwork.com"
  5757. },
  5758. {
  5759. "name": "Symfony Community",
  5760. "homepage": "https://symfony.com/contributors"
  5761. }
  5762. ],
  5763. "description": "Symfony utilities for portability of PHP codes",
  5764. "homepage": "https://symfony.com",
  5765. "keywords": [
  5766. "compat",
  5767. "compatibility",
  5768. "polyfill",
  5769. "shim"
  5770. ],
  5771. "funding": [
  5772. {
  5773. "url": "https://symfony.com/sponsor",
  5774. "type": "custom"
  5775. },
  5776. {
  5777. "url": "https://github.com/fabpot",
  5778. "type": "github"
  5779. },
  5780. {
  5781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5782. "type": "tidelift"
  5783. }
  5784. ],
  5785. "time": "2020-05-12T16:14:59+00:00"
  5786. },
  5787. {
  5788. "name": "symfony/process",
  5789. "version": "v3.4.41",
  5790. "source": {
  5791. "type": "git",
  5792. "url": "https://github.com/symfony/process.git",
  5793. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  5794. },
  5795. "dist": {
  5796. "type": "zip",
  5797. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  5798. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  5799. "shasum": ""
  5800. },
  5801. "require": {
  5802. "php": "^5.5.9|>=7.0.8"
  5803. },
  5804. "type": "library",
  5805. "extra": {
  5806. "branch-alias": {
  5807. "dev-master": "3.4-dev"
  5808. }
  5809. },
  5810. "autoload": {
  5811. "psr-4": {
  5812. "Symfony\\Component\\Process\\": ""
  5813. },
  5814. "exclude-from-classmap": [
  5815. "/Tests/"
  5816. ]
  5817. },
  5818. "notification-url": "https://packagist.org/downloads/",
  5819. "license": [
  5820. "MIT"
  5821. ],
  5822. "authors": [
  5823. {
  5824. "name": "Fabien Potencier",
  5825. "email": "fabien@symfony.com"
  5826. },
  5827. {
  5828. "name": "Symfony Community",
  5829. "homepage": "https://symfony.com/contributors"
  5830. }
  5831. ],
  5832. "description": "Symfony Process Component",
  5833. "homepage": "https://symfony.com",
  5834. "funding": [
  5835. {
  5836. "url": "https://symfony.com/sponsor",
  5837. "type": "custom"
  5838. },
  5839. {
  5840. "url": "https://github.com/fabpot",
  5841. "type": "github"
  5842. },
  5843. {
  5844. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5845. "type": "tidelift"
  5846. }
  5847. ],
  5848. "time": "2020-05-23T17:05:51+00:00"
  5849. },
  5850. {
  5851. "name": "symfony/psr-http-message-bridge",
  5852. "version": "v1.1.2",
  5853. "source": {
  5854. "type": "git",
  5855. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  5856. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  5857. },
  5858. "dist": {
  5859. "type": "zip",
  5860. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  5861. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  5862. "shasum": ""
  5863. },
  5864. "require": {
  5865. "php": "^5.3.3 || ^7.0",
  5866. "psr/http-message": "^1.0",
  5867. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  5868. },
  5869. "require-dev": {
  5870. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  5871. },
  5872. "suggest": {
  5873. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  5874. },
  5875. "type": "symfony-bridge",
  5876. "extra": {
  5877. "branch-alias": {
  5878. "dev-master": "1.1-dev"
  5879. }
  5880. },
  5881. "autoload": {
  5882. "psr-4": {
  5883. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  5884. },
  5885. "exclude-from-classmap": [
  5886. "/Tests/"
  5887. ]
  5888. },
  5889. "notification-url": "https://packagist.org/downloads/",
  5890. "license": [
  5891. "MIT"
  5892. ],
  5893. "authors": [
  5894. {
  5895. "name": "Symfony Community",
  5896. "homepage": "http://symfony.com/contributors"
  5897. },
  5898. {
  5899. "name": "Fabien Potencier",
  5900. "email": "fabien@symfony.com"
  5901. }
  5902. ],
  5903. "description": "PSR HTTP message bridge",
  5904. "homepage": "http://symfony.com",
  5905. "keywords": [
  5906. "http",
  5907. "http-message",
  5908. "psr-17",
  5909. "psr-7"
  5910. ],
  5911. "time": "2019-04-03T17:09:40+00:00"
  5912. },
  5913. {
  5914. "name": "symfony/routing",
  5915. "version": "v3.4.41",
  5916. "source": {
  5917. "type": "git",
  5918. "url": "https://github.com/symfony/routing.git",
  5919. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  5920. },
  5921. "dist": {
  5922. "type": "zip",
  5923. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  5924. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  5925. "shasum": ""
  5926. },
  5927. "require": {
  5928. "php": "^5.5.9|>=7.0.8"
  5929. },
  5930. "conflict": {
  5931. "symfony/config": "<3.3.1",
  5932. "symfony/dependency-injection": "<3.3",
  5933. "symfony/yaml": "<3.4"
  5934. },
  5935. "require-dev": {
  5936. "doctrine/annotations": "~1.0",
  5937. "psr/log": "~1.0",
  5938. "symfony/config": "^3.3.1|~4.0",
  5939. "symfony/dependency-injection": "~3.3|~4.0",
  5940. "symfony/expression-language": "~2.8|~3.0|~4.0",
  5941. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  5942. "symfony/yaml": "~3.4|~4.0"
  5943. },
  5944. "suggest": {
  5945. "doctrine/annotations": "For using the annotation loader",
  5946. "symfony/config": "For using the all-in-one router or any loader",
  5947. "symfony/expression-language": "For using expression matching",
  5948. "symfony/http-foundation": "For using a Symfony Request object",
  5949. "symfony/yaml": "For using the YAML loader"
  5950. },
  5951. "type": "library",
  5952. "extra": {
  5953. "branch-alias": {
  5954. "dev-master": "3.4-dev"
  5955. }
  5956. },
  5957. "autoload": {
  5958. "psr-4": {
  5959. "Symfony\\Component\\Routing\\": ""
  5960. },
  5961. "exclude-from-classmap": [
  5962. "/Tests/"
  5963. ]
  5964. },
  5965. "notification-url": "https://packagist.org/downloads/",
  5966. "license": [
  5967. "MIT"
  5968. ],
  5969. "authors": [
  5970. {
  5971. "name": "Fabien Potencier",
  5972. "email": "fabien@symfony.com"
  5973. },
  5974. {
  5975. "name": "Symfony Community",
  5976. "homepage": "https://symfony.com/contributors"
  5977. }
  5978. ],
  5979. "description": "Symfony Routing Component",
  5980. "homepage": "https://symfony.com",
  5981. "keywords": [
  5982. "router",
  5983. "routing",
  5984. "uri",
  5985. "url"
  5986. ],
  5987. "funding": [
  5988. {
  5989. "url": "https://symfony.com/sponsor",
  5990. "type": "custom"
  5991. },
  5992. {
  5993. "url": "https://github.com/fabpot",
  5994. "type": "github"
  5995. },
  5996. {
  5997. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5998. "type": "tidelift"
  5999. }
  6000. ],
  6001. "time": "2020-05-30T19:50:06+00:00"
  6002. },
  6003. {
  6004. "name": "symfony/serializer",
  6005. "version": "v3.4.41",
  6006. "source": {
  6007. "type": "git",
  6008. "url": "https://github.com/symfony/serializer.git",
  6009. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  6010. },
  6011. "dist": {
  6012. "type": "zip",
  6013. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  6014. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  6015. "shasum": ""
  6016. },
  6017. "require": {
  6018. "php": "^5.5.9|>=7.0.8",
  6019. "symfony/polyfill-ctype": "~1.8"
  6020. },
  6021. "conflict": {
  6022. "phpdocumentor/type-resolver": "<0.2.1",
  6023. "symfony/dependency-injection": "<3.2",
  6024. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  6025. "symfony/property-info": "<3.1",
  6026. "symfony/yaml": "<3.4"
  6027. },
  6028. "require-dev": {
  6029. "doctrine/annotations": "~1.0",
  6030. "doctrine/cache": "~1.0",
  6031. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  6032. "symfony/cache": "~3.1|~4.0",
  6033. "symfony/config": "~2.8|~3.0|~4.0",
  6034. "symfony/dependency-injection": "~3.2|~4.0",
  6035. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  6036. "symfony/property-access": "~2.8|~3.0|~4.0",
  6037. "symfony/property-info": "^3.4.13|~4.0",
  6038. "symfony/yaml": "~3.4|~4.0"
  6039. },
  6040. "suggest": {
  6041. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  6042. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  6043. "psr/cache-implementation": "For using the metadata cache.",
  6044. "symfony/config": "For using the XML mapping loader.",
  6045. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  6046. "symfony/property-access": "For using the ObjectNormalizer.",
  6047. "symfony/property-info": "To deserialize relations.",
  6048. "symfony/yaml": "For using the default YAML mapping loader."
  6049. },
  6050. "type": "library",
  6051. "extra": {
  6052. "branch-alias": {
  6053. "dev-master": "3.4-dev"
  6054. }
  6055. },
  6056. "autoload": {
  6057. "psr-4": {
  6058. "Symfony\\Component\\Serializer\\": ""
  6059. },
  6060. "exclude-from-classmap": [
  6061. "/Tests/"
  6062. ]
  6063. },
  6064. "notification-url": "https://packagist.org/downloads/",
  6065. "license": [
  6066. "MIT"
  6067. ],
  6068. "authors": [
  6069. {
  6070. "name": "Fabien Potencier",
  6071. "email": "fabien@symfony.com"
  6072. },
  6073. {
  6074. "name": "Symfony Community",
  6075. "homepage": "https://symfony.com/contributors"
  6076. }
  6077. ],
  6078. "description": "Symfony Serializer Component",
  6079. "homepage": "https://symfony.com",
  6080. "funding": [
  6081. {
  6082. "url": "https://symfony.com/sponsor",
  6083. "type": "custom"
  6084. },
  6085. {
  6086. "url": "https://github.com/fabpot",
  6087. "type": "github"
  6088. },
  6089. {
  6090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6091. "type": "tidelift"
  6092. }
  6093. ],
  6094. "time": "2020-05-30T18:58:05+00:00"
  6095. },
  6096. {
  6097. "name": "symfony/translation",
  6098. "version": "v3.4.41",
  6099. "source": {
  6100. "type": "git",
  6101. "url": "https://github.com/symfony/translation.git",
  6102. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  6103. },
  6104. "dist": {
  6105. "type": "zip",
  6106. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  6107. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  6108. "shasum": ""
  6109. },
  6110. "require": {
  6111. "php": "^5.5.9|>=7.0.8",
  6112. "symfony/polyfill-mbstring": "~1.0"
  6113. },
  6114. "conflict": {
  6115. "symfony/config": "<2.8",
  6116. "symfony/dependency-injection": "<3.4",
  6117. "symfony/yaml": "<3.4"
  6118. },
  6119. "require-dev": {
  6120. "psr/log": "~1.0",
  6121. "symfony/config": "~2.8|~3.0|~4.0",
  6122. "symfony/dependency-injection": "~3.4|~4.0",
  6123. "symfony/finder": "~2.8|~3.0|~4.0",
  6124. "symfony/http-kernel": "~3.4|~4.0",
  6125. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  6126. "symfony/var-dumper": "~3.4|~4.0",
  6127. "symfony/yaml": "~3.4|~4.0"
  6128. },
  6129. "suggest": {
  6130. "psr/log-implementation": "To use logging capability in translator",
  6131. "symfony/config": "",
  6132. "symfony/yaml": ""
  6133. },
  6134. "type": "library",
  6135. "extra": {
  6136. "branch-alias": {
  6137. "dev-master": "3.4-dev"
  6138. }
  6139. },
  6140. "autoload": {
  6141. "psr-4": {
  6142. "Symfony\\Component\\Translation\\": ""
  6143. },
  6144. "exclude-from-classmap": [
  6145. "/Tests/"
  6146. ]
  6147. },
  6148. "notification-url": "https://packagist.org/downloads/",
  6149. "license": [
  6150. "MIT"
  6151. ],
  6152. "authors": [
  6153. {
  6154. "name": "Fabien Potencier",
  6155. "email": "fabien@symfony.com"
  6156. },
  6157. {
  6158. "name": "Symfony Community",
  6159. "homepage": "https://symfony.com/contributors"
  6160. }
  6161. ],
  6162. "description": "Symfony Translation Component",
  6163. "homepage": "https://symfony.com",
  6164. "funding": [
  6165. {
  6166. "url": "https://symfony.com/sponsor",
  6167. "type": "custom"
  6168. },
  6169. {
  6170. "url": "https://github.com/fabpot",
  6171. "type": "github"
  6172. },
  6173. {
  6174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6175. "type": "tidelift"
  6176. }
  6177. ],
  6178. "time": "2020-05-30T18:58:05+00:00"
  6179. },
  6180. {
  6181. "name": "symfony/validator",
  6182. "version": "v3.4.41",
  6183. "source": {
  6184. "type": "git",
  6185. "url": "https://github.com/symfony/validator.git",
  6186. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  6187. },
  6188. "dist": {
  6189. "type": "zip",
  6190. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  6191. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  6192. "shasum": ""
  6193. },
  6194. "require": {
  6195. "php": "^5.5.9|>=7.0.8",
  6196. "symfony/polyfill-ctype": "~1.8",
  6197. "symfony/polyfill-mbstring": "~1.0",
  6198. "symfony/translation": "~2.8|~3.0|~4.0"
  6199. },
  6200. "conflict": {
  6201. "doctrine/lexer": "<1.0.2",
  6202. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  6203. "symfony/dependency-injection": "<3.3",
  6204. "symfony/http-kernel": "<3.3.5",
  6205. "symfony/yaml": "<3.4"
  6206. },
  6207. "require-dev": {
  6208. "doctrine/annotations": "~1.7",
  6209. "doctrine/cache": "~1.0",
  6210. "egulias/email-validator": "^2.1.10",
  6211. "symfony/cache": "~3.1|~4.0",
  6212. "symfony/config": "~2.8|~3.0|~4.0",
  6213. "symfony/dependency-injection": "~3.3|~4.0",
  6214. "symfony/expression-language": "~2.8|~3.0|~4.0",
  6215. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  6216. "symfony/http-kernel": "^3.3.5|~4.0",
  6217. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  6218. "symfony/property-access": "~2.8|~3.0|~4.0",
  6219. "symfony/var-dumper": "~3.3|~4.0",
  6220. "symfony/yaml": "~3.4|~4.0"
  6221. },
  6222. "suggest": {
  6223. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  6224. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  6225. "egulias/email-validator": "Strict (RFC compliant) email validation",
  6226. "psr/cache-implementation": "For using the metadata cache.",
  6227. "symfony/config": "",
  6228. "symfony/expression-language": "For using the Expression validator",
  6229. "symfony/http-foundation": "",
  6230. "symfony/intl": "",
  6231. "symfony/property-access": "For accessing properties within comparison constraints",
  6232. "symfony/yaml": ""
  6233. },
  6234. "type": "library",
  6235. "extra": {
  6236. "branch-alias": {
  6237. "dev-master": "3.4-dev"
  6238. }
  6239. },
  6240. "autoload": {
  6241. "psr-4": {
  6242. "Symfony\\Component\\Validator\\": ""
  6243. },
  6244. "exclude-from-classmap": [
  6245. "/Tests/"
  6246. ]
  6247. },
  6248. "notification-url": "https://packagist.org/downloads/",
  6249. "license": [
  6250. "MIT"
  6251. ],
  6252. "authors": [
  6253. {
  6254. "name": "Fabien Potencier",
  6255. "email": "fabien@symfony.com"
  6256. },
  6257. {
  6258. "name": "Symfony Community",
  6259. "homepage": "https://symfony.com/contributors"
  6260. }
  6261. ],
  6262. "description": "Symfony Validator Component",
  6263. "homepage": "https://symfony.com",
  6264. "funding": [
  6265. {
  6266. "url": "https://symfony.com/sponsor",
  6267. "type": "custom"
  6268. },
  6269. {
  6270. "url": "https://github.com/fabpot",
  6271. "type": "github"
  6272. },
  6273. {
  6274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6275. "type": "tidelift"
  6276. }
  6277. ],
  6278. "time": "2020-05-30T18:43:38+00:00"
  6279. },
  6280. {
  6281. "name": "symfony/var-dumper",
  6282. "version": "v4.4.9",
  6283. "source": {
  6284. "type": "git",
  6285. "url": "https://github.com/symfony/var-dumper.git",
  6286. "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac"
  6287. },
  6288. "dist": {
  6289. "type": "zip",
  6290. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/56b3aa5eab0ac6720dcd559fd1d590ce301594ac",
  6291. "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac",
  6292. "shasum": ""
  6293. },
  6294. "require": {
  6295. "php": ">=7.1.3",
  6296. "symfony/polyfill-mbstring": "~1.0",
  6297. "symfony/polyfill-php72": "~1.5",
  6298. "symfony/polyfill-php80": "^1.15"
  6299. },
  6300. "conflict": {
  6301. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  6302. "symfony/console": "<3.4"
  6303. },
  6304. "require-dev": {
  6305. "ext-iconv": "*",
  6306. "symfony/console": "^3.4|^4.0|^5.0",
  6307. "symfony/process": "^4.4|^5.0",
  6308. "twig/twig": "^1.34|^2.4|^3.0"
  6309. },
  6310. "suggest": {
  6311. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6312. "ext-intl": "To show region name in time zone dump",
  6313. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6314. },
  6315. "bin": [
  6316. "Resources/bin/var-dump-server"
  6317. ],
  6318. "type": "library",
  6319. "extra": {
  6320. "branch-alias": {
  6321. "dev-master": "4.4-dev"
  6322. }
  6323. },
  6324. "autoload": {
  6325. "files": [
  6326. "Resources/functions/dump.php"
  6327. ],
  6328. "psr-4": {
  6329. "Symfony\\Component\\VarDumper\\": ""
  6330. },
  6331. "exclude-from-classmap": [
  6332. "/Tests/"
  6333. ]
  6334. },
  6335. "notification-url": "https://packagist.org/downloads/",
  6336. "license": [
  6337. "MIT"
  6338. ],
  6339. "authors": [
  6340. {
  6341. "name": "Nicolas Grekas",
  6342. "email": "p@tchwork.com"
  6343. },
  6344. {
  6345. "name": "Symfony Community",
  6346. "homepage": "https://symfony.com/contributors"
  6347. }
  6348. ],
  6349. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6350. "homepage": "https://symfony.com",
  6351. "keywords": [
  6352. "debug",
  6353. "dump"
  6354. ],
  6355. "funding": [
  6356. {
  6357. "url": "https://symfony.com/sponsor",
  6358. "type": "custom"
  6359. },
  6360. {
  6361. "url": "https://github.com/fabpot",
  6362. "type": "github"
  6363. },
  6364. {
  6365. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6366. "type": "tidelift"
  6367. }
  6368. ],
  6369. "time": "2020-05-30T20:06:45+00:00"
  6370. },
  6371. {
  6372. "name": "symfony/yaml",
  6373. "version": "v3.4.41",
  6374. "source": {
  6375. "type": "git",
  6376. "url": "https://github.com/symfony/yaml.git",
  6377. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  6378. },
  6379. "dist": {
  6380. "type": "zip",
  6381. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  6382. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  6383. "shasum": ""
  6384. },
  6385. "require": {
  6386. "php": "^5.5.9|>=7.0.8",
  6387. "symfony/polyfill-ctype": "~1.8"
  6388. },
  6389. "conflict": {
  6390. "symfony/console": "<3.4"
  6391. },
  6392. "require-dev": {
  6393. "symfony/console": "~3.4|~4.0"
  6394. },
  6395. "suggest": {
  6396. "symfony/console": "For validating YAML files using the lint command"
  6397. },
  6398. "type": "library",
  6399. "extra": {
  6400. "branch-alias": {
  6401. "dev-master": "3.4-dev"
  6402. }
  6403. },
  6404. "autoload": {
  6405. "psr-4": {
  6406. "Symfony\\Component\\Yaml\\": ""
  6407. },
  6408. "exclude-from-classmap": [
  6409. "/Tests/"
  6410. ]
  6411. },
  6412. "notification-url": "https://packagist.org/downloads/",
  6413. "license": [
  6414. "MIT"
  6415. ],
  6416. "authors": [
  6417. {
  6418. "name": "Fabien Potencier",
  6419. "email": "fabien@symfony.com"
  6420. },
  6421. {
  6422. "name": "Symfony Community",
  6423. "homepage": "https://symfony.com/contributors"
  6424. }
  6425. ],
  6426. "description": "Symfony Yaml Component",
  6427. "homepage": "https://symfony.com",
  6428. "funding": [
  6429. {
  6430. "url": "https://symfony.com/sponsor",
  6431. "type": "custom"
  6432. },
  6433. {
  6434. "url": "https://github.com/fabpot",
  6435. "type": "github"
  6436. },
  6437. {
  6438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6439. "type": "tidelift"
  6440. }
  6441. ],
  6442. "time": "2020-05-11T07:51:54+00:00"
  6443. },
  6444. {
  6445. "name": "twig/twig",
  6446. "version": "v1.42.5",
  6447. "source": {
  6448. "type": "git",
  6449. "url": "https://github.com/twigphp/Twig.git",
  6450. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  6451. },
  6452. "dist": {
  6453. "type": "zip",
  6454. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  6455. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  6456. "shasum": ""
  6457. },
  6458. "require": {
  6459. "php": ">=5.5.0",
  6460. "symfony/polyfill-ctype": "^1.8"
  6461. },
  6462. "require-dev": {
  6463. "psr/container": "^1.0",
  6464. "symfony/phpunit-bridge": "^4.4|^5.0"
  6465. },
  6466. "type": "library",
  6467. "extra": {
  6468. "branch-alias": {
  6469. "dev-master": "1.42-dev"
  6470. }
  6471. },
  6472. "autoload": {
  6473. "psr-0": {
  6474. "Twig_": "lib/"
  6475. },
  6476. "psr-4": {
  6477. "Twig\\": "src/"
  6478. }
  6479. },
  6480. "notification-url": "https://packagist.org/downloads/",
  6481. "license": [
  6482. "BSD-3-Clause"
  6483. ],
  6484. "authors": [
  6485. {
  6486. "name": "Fabien Potencier",
  6487. "email": "fabien@symfony.com",
  6488. "homepage": "http://fabien.potencier.org",
  6489. "role": "Lead Developer"
  6490. },
  6491. {
  6492. "name": "Twig Team",
  6493. "role": "Contributors"
  6494. },
  6495. {
  6496. "name": "Armin Ronacher",
  6497. "email": "armin.ronacher@active-4.com",
  6498. "role": "Project Founder"
  6499. }
  6500. ],
  6501. "description": "Twig, the flexible, fast, and secure template language for PHP",
  6502. "homepage": "https://twig.symfony.com",
  6503. "keywords": [
  6504. "templating"
  6505. ],
  6506. "time": "2020-02-11T05:59:23+00:00"
  6507. },
  6508. {
  6509. "name": "typo3/phar-stream-wrapper",
  6510. "version": "v3.1.4",
  6511. "source": {
  6512. "type": "git",
  6513. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  6514. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  6515. },
  6516. "dist": {
  6517. "type": "zip",
  6518. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  6519. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  6520. "shasum": ""
  6521. },
  6522. "require": {
  6523. "ext-json": "*",
  6524. "php": "^7.0"
  6525. },
  6526. "require-dev": {
  6527. "ext-xdebug": "*",
  6528. "phpunit/phpunit": "^6.5"
  6529. },
  6530. "suggest": {
  6531. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  6532. },
  6533. "type": "library",
  6534. "extra": {
  6535. "branch-alias": {
  6536. "dev-master": "v3.x-dev"
  6537. }
  6538. },
  6539. "autoload": {
  6540. "psr-4": {
  6541. "TYPO3\\PharStreamWrapper\\": "src/"
  6542. }
  6543. },
  6544. "notification-url": "https://packagist.org/downloads/",
  6545. "license": [
  6546. "MIT"
  6547. ],
  6548. "description": "Interceptors for PHP's native phar:// stream handling",
  6549. "homepage": "https://typo3.org/",
  6550. "keywords": [
  6551. "phar",
  6552. "php",
  6553. "security",
  6554. "stream-wrapper"
  6555. ],
  6556. "time": "2019-12-10T11:53:27+00:00"
  6557. },
  6558. {
  6559. "name": "webflo/drupal-finder",
  6560. "version": "1.2.0",
  6561. "source": {
  6562. "type": "git",
  6563. "url": "https://github.com/webflo/drupal-finder.git",
  6564. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  6565. },
  6566. "dist": {
  6567. "type": "zip",
  6568. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  6569. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  6570. "shasum": ""
  6571. },
  6572. "require": {
  6573. "ext-json": "*"
  6574. },
  6575. "require-dev": {
  6576. "mikey179/vfsstream": "^1.6",
  6577. "phpunit/phpunit": "^4.8"
  6578. },
  6579. "type": "library",
  6580. "autoload": {
  6581. "classmap": [
  6582. "src/DrupalFinder.php"
  6583. ]
  6584. },
  6585. "notification-url": "https://packagist.org/downloads/",
  6586. "license": [
  6587. "GPL-2.0+"
  6588. ],
  6589. "authors": [
  6590. {
  6591. "name": "Florian Weber",
  6592. "email": "florian@webflo.org"
  6593. }
  6594. ],
  6595. "description": "Helper class to locate a Drupal installation from a given path.",
  6596. "time": "2019-08-02T08:06:18+00:00"
  6597. },
  6598. {
  6599. "name": "webmozart/assert",
  6600. "version": "1.8.0",
  6601. "source": {
  6602. "type": "git",
  6603. "url": "https://github.com/webmozart/assert.git",
  6604. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
  6605. },
  6606. "dist": {
  6607. "type": "zip",
  6608. "url": "https://api.github.com/repos/webmozart/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  6609. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  6610. "shasum": ""
  6611. },
  6612. "require": {
  6613. "php": "^5.3.3 || ^7.0",
  6614. "symfony/polyfill-ctype": "^1.8"
  6615. },
  6616. "conflict": {
  6617. "vimeo/psalm": "<3.9.1"
  6618. },
  6619. "require-dev": {
  6620. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  6621. },
  6622. "type": "library",
  6623. "autoload": {
  6624. "psr-4": {
  6625. "Webmozart\\Assert\\": "src/"
  6626. }
  6627. },
  6628. "notification-url": "https://packagist.org/downloads/",
  6629. "license": [
  6630. "MIT"
  6631. ],
  6632. "authors": [
  6633. {
  6634. "name": "Bernhard Schussek",
  6635. "email": "bschussek@gmail.com"
  6636. }
  6637. ],
  6638. "description": "Assertions to validate method input/output with nice error messages.",
  6639. "keywords": [
  6640. "assert",
  6641. "check",
  6642. "validate"
  6643. ],
  6644. "time": "2020-04-18T12:12:48+00:00"
  6645. },
  6646. {
  6647. "name": "webmozart/path-util",
  6648. "version": "2.3.0",
  6649. "source": {
  6650. "type": "git",
  6651. "url": "https://github.com/webmozart/path-util.git",
  6652. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  6653. },
  6654. "dist": {
  6655. "type": "zip",
  6656. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  6657. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  6658. "shasum": ""
  6659. },
  6660. "require": {
  6661. "php": ">=5.3.3",
  6662. "webmozart/assert": "~1.0"
  6663. },
  6664. "require-dev": {
  6665. "phpunit/phpunit": "^4.6",
  6666. "sebastian/version": "^1.0.1"
  6667. },
  6668. "type": "library",
  6669. "extra": {
  6670. "branch-alias": {
  6671. "dev-master": "2.3-dev"
  6672. }
  6673. },
  6674. "autoload": {
  6675. "psr-4": {
  6676. "Webmozart\\PathUtil\\": "src/"
  6677. }
  6678. },
  6679. "notification-url": "https://packagist.org/downloads/",
  6680. "license": [
  6681. "MIT"
  6682. ],
  6683. "authors": [
  6684. {
  6685. "name": "Bernhard Schussek",
  6686. "email": "bschussek@gmail.com"
  6687. }
  6688. ],
  6689. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  6690. "time": "2015-12-17T08:42:14+00:00"
  6691. }
  6692. ],
  6693. "packages-dev": [],
  6694. "aliases": [],
  6695. "minimum-stability": "dev",
  6696. "stability-flags": [],
  6697. "prefer-stable": true,
  6698. "prefer-lowest": false,
  6699. "platform": [],
  6700. "platform-dev": [],
  6701. "plugin-api-version": "1.1.0"
  6702. }