composer.lock 249 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948
  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": "d330160d73756a7a964f55d654df05cc",
  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/field_token_value",
  2328. "version": "1.0.0",
  2329. "source": {
  2330. "type": "git",
  2331. "url": "https://git.drupalcode.org/project/field_token_value.git",
  2332. "reference": "8.x-1.0"
  2333. },
  2334. "dist": {
  2335. "type": "zip",
  2336. "url": "https://ftp.drupal.org/files/projects/field_token_value-8.x-1.0.zip",
  2337. "reference": "8.x-1.0",
  2338. "shasum": "ba0c70108ca09589b9fa2ecce4c7a7194cdca897"
  2339. },
  2340. "require": {
  2341. "drupal/core": "~8.0",
  2342. "drupal/token": "*"
  2343. },
  2344. "type": "drupal-module",
  2345. "extra": {
  2346. "branch-alias": {
  2347. "dev-1.x": "1.x-dev"
  2348. },
  2349. "drupal": {
  2350. "version": "8.x-1.0",
  2351. "datestamp": "1503548344",
  2352. "security-coverage": {
  2353. "status": "covered",
  2354. "message": "Covered by Drupal's security advisory policy"
  2355. }
  2356. }
  2357. },
  2358. "notification-url": "https://packages.drupal.org/8/downloads",
  2359. "license": [
  2360. "GPL-2.0-or-later"
  2361. ],
  2362. "authors": [
  2363. {
  2364. "name": "haydent",
  2365. "homepage": "https://www.drupal.org/user/2763191"
  2366. }
  2367. ],
  2368. "description": "Provides a field allowing the value to be set using a string containing tokens.",
  2369. "homepage": "https://www.drupal.org/project/field_token_value",
  2370. "support": {
  2371. "source": "https://git.drupalcode.org/project/field_token_value"
  2372. }
  2373. },
  2374. {
  2375. "name": "drupal/linkit",
  2376. "version": "4.3.0",
  2377. "source": {
  2378. "type": "git",
  2379. "url": "https://git.drupalcode.org/project/linkit.git",
  2380. "reference": "8.x-4.3"
  2381. },
  2382. "dist": {
  2383. "type": "zip",
  2384. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.3.zip",
  2385. "reference": "8.x-4.3",
  2386. "shasum": "e624ea2f18a6100b76a8337e24f7c08df6e2235e"
  2387. },
  2388. "require": {
  2389. "drupal/core": "~8.0"
  2390. },
  2391. "type": "drupal-module",
  2392. "extra": {
  2393. "drupal": {
  2394. "version": "8.x-4.3",
  2395. "datestamp": "1490205830",
  2396. "security-coverage": {
  2397. "status": "covered",
  2398. "message": "Covered by Drupal's security advisory policy"
  2399. }
  2400. }
  2401. },
  2402. "notification-url": "https://packages.drupal.org/8/downloads",
  2403. "license": [
  2404. "GPL-2.0+"
  2405. ],
  2406. "authors": [
  2407. {
  2408. "name": "Emil Stjerneman",
  2409. "homepage": "https://stjerneman.com",
  2410. "email": "emil@stjerneman.com",
  2411. "role": "Maintainer"
  2412. }
  2413. ],
  2414. "description": "Linkit - Enriched linking experience",
  2415. "homepage": "http://drupal.org/project/linkit",
  2416. "support": {
  2417. "source": "http://cgit.drupalcode.org/linkit",
  2418. "issues": "http://drupal.org/project/linkit"
  2419. }
  2420. },
  2421. {
  2422. "name": "drupal/mediteran",
  2423. "version": "1.10.0",
  2424. "source": {
  2425. "type": "git",
  2426. "url": "https://git.drupalcode.org/project/mediteran.git",
  2427. "reference": "8.x-1.10"
  2428. },
  2429. "dist": {
  2430. "type": "zip",
  2431. "url": "https://ftp.drupal.org/files/projects/mediteran-8.x-1.10.zip",
  2432. "reference": "8.x-1.10",
  2433. "shasum": "da1b7389a7e33189ebdb9106d162c07aa68ced5d"
  2434. },
  2435. "require": {
  2436. "drupal/core": "^8 || ^9"
  2437. },
  2438. "type": "drupal-theme",
  2439. "extra": {
  2440. "drupal": {
  2441. "version": "8.x-1.10",
  2442. "datestamp": "1590662208",
  2443. "security-coverage": {
  2444. "status": "covered",
  2445. "message": "Covered by Drupal's security advisory policy"
  2446. }
  2447. }
  2448. },
  2449. "notification-url": "https://packages.drupal.org/8/downloads",
  2450. "license": [
  2451. "GPL-2.0-or-later"
  2452. ],
  2453. "authors": [
  2454. {
  2455. "name": "bataboza",
  2456. "homepage": "https://www.drupal.org/user/3581173"
  2457. },
  2458. {
  2459. "name": "diqidoq",
  2460. "homepage": "https://www.drupal.org/user/1001934"
  2461. },
  2462. {
  2463. "name": "doxigo",
  2464. "homepage": "https://www.drupal.org/user/1331334"
  2465. }
  2466. ],
  2467. "description": "Mediteran administrator is responsive theme for Drupal 8 with clean and modern design.",
  2468. "homepage": "https://www.drupal.org/project/mediteran",
  2469. "support": {
  2470. "source": "https://git.drupalcode.org/project/mediteran"
  2471. }
  2472. },
  2473. {
  2474. "name": "drupal/metatag",
  2475. "version": "1.13.0",
  2476. "source": {
  2477. "type": "git",
  2478. "url": "https://git.drupalcode.org/project/metatag.git",
  2479. "reference": "8.x-1.13"
  2480. },
  2481. "dist": {
  2482. "type": "zip",
  2483. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.13.zip",
  2484. "reference": "8.x-1.13",
  2485. "shasum": "c471d9982a6540fd7baccc94572947923634fb6b"
  2486. },
  2487. "require": {
  2488. "drupal/core": "^8 || ^9",
  2489. "drupal/token": "^1.0"
  2490. },
  2491. "require-dev": {
  2492. "drupal/metatag_dc": "*",
  2493. "drupal/metatag_open_graph": "*",
  2494. "drupal/page_manager": "4.x-dev",
  2495. "drupal/redirect": "1.x-dev"
  2496. },
  2497. "type": "drupal-module",
  2498. "extra": {
  2499. "drupal": {
  2500. "version": "8.x-1.13",
  2501. "datestamp": "1587478404",
  2502. "security-coverage": {
  2503. "status": "covered",
  2504. "message": "Covered by Drupal's security advisory policy"
  2505. }
  2506. }
  2507. },
  2508. "notification-url": "https://packages.drupal.org/8/downloads",
  2509. "license": [
  2510. "GPL-2.0+"
  2511. ],
  2512. "authors": [
  2513. {
  2514. "name": "See contributors",
  2515. "homepage": "https://www.drupal.org/node/640498/committers",
  2516. "role": "Developer"
  2517. },
  2518. {
  2519. "name": "Dave Reid",
  2520. "homepage": "https://www.drupal.org/user/53892"
  2521. }
  2522. ],
  2523. "description": "Manage meta tags for all entities.",
  2524. "homepage": "https://www.drupal.org/project/metatag",
  2525. "keywords": [
  2526. "Drupal",
  2527. "seo"
  2528. ],
  2529. "support": {
  2530. "source": "https://git.drupalcode.org/project/metatag",
  2531. "issues": "https://www.drupal.org/project/issues/metatag",
  2532. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  2533. }
  2534. },
  2535. {
  2536. "name": "drupal/paragraphs",
  2537. "version": "1.12.0",
  2538. "source": {
  2539. "type": "git",
  2540. "url": "https://git.drupalcode.org/project/paragraphs.git",
  2541. "reference": "8.x-1.12"
  2542. },
  2543. "dist": {
  2544. "type": "zip",
  2545. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.12.zip",
  2546. "reference": "8.x-1.12",
  2547. "shasum": "3b67d8af1160af42d93a4610be1e02869e428965"
  2548. },
  2549. "require": {
  2550. "drupal/core": "^8.8 || ^9",
  2551. "drupal/entity_reference_revisions": "~1.3"
  2552. },
  2553. "require-dev": {
  2554. "drupal/block_field": "~1.0",
  2555. "drupal/ctools": "3.x-dev",
  2556. "drupal/diff": "~1.0",
  2557. "drupal/entity_browser": "2.x-dev",
  2558. "drupal/entity_usage": "2.x-dev",
  2559. "drupal/field_group": "3.x-dev",
  2560. "drupal/inline_entity_form": "~1.0",
  2561. "drupal/paragraphs-paragraphs_library": "*",
  2562. "drupal/replicate": "~1.0",
  2563. "drupal/search_api": "~1.0",
  2564. "drupal/search_api_db": "*"
  2565. },
  2566. "suggest": {
  2567. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  2568. },
  2569. "type": "drupal-module",
  2570. "extra": {
  2571. "drupal": {
  2572. "version": "8.x-1.12",
  2573. "datestamp": "1590140081",
  2574. "security-coverage": {
  2575. "status": "covered",
  2576. "message": "Covered by Drupal's security advisory policy"
  2577. }
  2578. }
  2579. },
  2580. "notification-url": "https://packages.drupal.org/8/downloads",
  2581. "license": [
  2582. "GPL-2.0-or-later"
  2583. ],
  2584. "authors": [
  2585. {
  2586. "name": "Berdir",
  2587. "homepage": "https://www.drupal.org/user/214652"
  2588. },
  2589. {
  2590. "name": "Frans",
  2591. "homepage": "https://www.drupal.org/user/514222"
  2592. },
  2593. {
  2594. "name": "Primsi",
  2595. "homepage": "https://www.drupal.org/user/282629"
  2596. },
  2597. {
  2598. "name": "jeroen.b",
  2599. "homepage": "https://www.drupal.org/user/1853532"
  2600. },
  2601. {
  2602. "name": "jstoller",
  2603. "homepage": "https://www.drupal.org/user/99012"
  2604. },
  2605. {
  2606. "name": "miro_dietiker",
  2607. "homepage": "https://www.drupal.org/user/227761"
  2608. }
  2609. ],
  2610. "description": "Enables the creation of Paragraphs entities.",
  2611. "homepage": "https://www.drupal.org/project/paragraphs",
  2612. "support": {
  2613. "source": "https://git.drupalcode.org/project/paragraphs"
  2614. }
  2615. },
  2616. {
  2617. "name": "drupal/pathauto",
  2618. "version": "1.8.0",
  2619. "source": {
  2620. "type": "git",
  2621. "url": "https://git.drupalcode.org/project/pathauto.git",
  2622. "reference": "8.x-1.8"
  2623. },
  2624. "dist": {
  2625. "type": "zip",
  2626. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  2627. "reference": "8.x-1.8",
  2628. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  2629. },
  2630. "require": {
  2631. "drupal/core": "^8.8 || ^9",
  2632. "drupal/ctools": "*",
  2633. "drupal/token": "*"
  2634. },
  2635. "suggest": {
  2636. "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."
  2637. },
  2638. "type": "drupal-module",
  2639. "extra": {
  2640. "drupal": {
  2641. "version": "8.x-1.8",
  2642. "datestamp": "1588103046",
  2643. "security-coverage": {
  2644. "status": "covered",
  2645. "message": "Covered by Drupal's security advisory policy"
  2646. }
  2647. },
  2648. "drush": {
  2649. "services": {
  2650. "drush.services.yml": "^9 || ^10"
  2651. }
  2652. }
  2653. },
  2654. "notification-url": "https://packages.drupal.org/8/downloads",
  2655. "license": [
  2656. "GPL-2.0-or-later"
  2657. ],
  2658. "authors": [
  2659. {
  2660. "name": "Berdir",
  2661. "homepage": "https://www.drupal.org/user/214652"
  2662. },
  2663. {
  2664. "name": "Dave Reid",
  2665. "homepage": "https://www.drupal.org/user/53892"
  2666. },
  2667. {
  2668. "name": "Freso",
  2669. "homepage": "https://www.drupal.org/user/27504"
  2670. },
  2671. {
  2672. "name": "greggles",
  2673. "homepage": "https://www.drupal.org/user/36762"
  2674. }
  2675. ],
  2676. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  2677. "homepage": "https://www.drupal.org/project/pathauto",
  2678. "support": {
  2679. "source": "https://cgit.drupalcode.org/pathauto",
  2680. "issues": "https://www.drupal.org/project/issues/pathauto",
  2681. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  2682. }
  2683. },
  2684. {
  2685. "name": "drupal/schema_metatag",
  2686. "version": "1.5.0",
  2687. "source": {
  2688. "type": "git",
  2689. "url": "https://git.drupalcode.org/project/schema_metatag.git",
  2690. "reference": "8.x-1.5"
  2691. },
  2692. "dist": {
  2693. "type": "zip",
  2694. "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-1.5.zip",
  2695. "reference": "8.x-1.5",
  2696. "shasum": "06334fadc2c6b80312319cbce11b1c3621b2e918"
  2697. },
  2698. "require": {
  2699. "drupal/core": "^8 || ^9",
  2700. "drupal/metatag": "*"
  2701. },
  2702. "require-dev": {
  2703. "drupal/metatag_views": "*",
  2704. "drupal/schema_article": "*",
  2705. "drupal/schema_organization": "*"
  2706. },
  2707. "type": "drupal-module",
  2708. "extra": {
  2709. "drupal": {
  2710. "version": "8.x-1.5",
  2711. "datestamp": "1590323806",
  2712. "security-coverage": {
  2713. "status": "covered",
  2714. "message": "Covered by Drupal's security advisory policy"
  2715. }
  2716. }
  2717. },
  2718. "notification-url": "https://packages.drupal.org/8/downloads",
  2719. "license": [
  2720. "GPL-2.0+"
  2721. ],
  2722. "authors": [
  2723. {
  2724. "name": "KarenS",
  2725. "homepage": "https://www.drupal.org/user/45874"
  2726. }
  2727. ],
  2728. "description": "Metatag implementation of Schema.org structured data (JSON-LD)",
  2729. "homepage": "https://www.drupal.org/project/schema_metatag",
  2730. "keywords": [
  2731. "Drupal"
  2732. ],
  2733. "support": {
  2734. "source": "http://cgit.drupalcode.org/schema_metatag",
  2735. "issues": "https://www.drupal.org/project/issues/schema_metatag"
  2736. }
  2737. },
  2738. {
  2739. "name": "drupal/subpathauto",
  2740. "version": "1.1.0",
  2741. "source": {
  2742. "type": "git",
  2743. "url": "https://git.drupalcode.org/project/subpathauto.git",
  2744. "reference": "8.x-1.1"
  2745. },
  2746. "dist": {
  2747. "type": "zip",
  2748. "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.1.zip",
  2749. "reference": "8.x-1.1",
  2750. "shasum": "1d027be84e82705c65669f5717b148562be3e766"
  2751. },
  2752. "require": {
  2753. "drupal/core": "^8.8 || ^9"
  2754. },
  2755. "type": "drupal-module",
  2756. "extra": {
  2757. "drupal": {
  2758. "version": "8.x-1.1",
  2759. "datestamp": "1590076268",
  2760. "security-coverage": {
  2761. "status": "covered",
  2762. "message": "Covered by Drupal's security advisory policy"
  2763. }
  2764. }
  2765. },
  2766. "notification-url": "https://packages.drupal.org/8/downloads",
  2767. "license": [
  2768. "GPL-2.0-or-later"
  2769. ],
  2770. "authors": [
  2771. {
  2772. "name": "Dave Reid",
  2773. "homepage": "https://www.drupal.org/user/53892"
  2774. },
  2775. {
  2776. "name": "lauriii",
  2777. "homepage": "https://www.drupal.org/user/1078742"
  2778. }
  2779. ],
  2780. "description": "Provides support for extending sub-paths of URL aliases.",
  2781. "homepage": "https://www.drupal.org/project/subpathauto",
  2782. "support": {
  2783. "source": "https://git.drupalcode.org/project/subpathauto"
  2784. }
  2785. },
  2786. {
  2787. "name": "drupal/time_range",
  2788. "version": "8.1.3",
  2789. "source": {
  2790. "type": "git",
  2791. "url": "https://git.drupalcode.org/project/time_range.git",
  2792. "reference": "8.1.3"
  2793. },
  2794. "dist": {
  2795. "type": "zip",
  2796. "url": "https://ftp.drupal.org/files/projects/time_range-8.1.3.zip",
  2797. "reference": "8.1.3",
  2798. "shasum": "404597e00e2e972c32647e8c1963efb0d7566d90"
  2799. },
  2800. "require": {
  2801. "drupal/core": "^8 || ^9"
  2802. },
  2803. "type": "drupal-module",
  2804. "extra": {
  2805. "drupal": {
  2806. "version": "8.1.3",
  2807. "datestamp": "1591497359",
  2808. "security-coverage": {
  2809. "status": "covered",
  2810. "message": "Covered by Drupal's security advisory policy"
  2811. }
  2812. }
  2813. },
  2814. "notification-url": "https://packages.drupal.org/8/downloads",
  2815. "license": [
  2816. "GPL-2.0+"
  2817. ],
  2818. "authors": [
  2819. {
  2820. "name": "dravenk",
  2821. "homepage": "https://www.drupal.org/user/3452417"
  2822. }
  2823. ],
  2824. "description": "Provides the form widget to fill in time range.",
  2825. "homepage": "https://github.com/DravenK/time-range.git",
  2826. "support": {
  2827. "source": "https://github.com/DravenK/time-range.git",
  2828. "issues": "https://github.com/DravenK/time-range/issues"
  2829. }
  2830. },
  2831. {
  2832. "name": "drupal/token",
  2833. "version": "1.7.0",
  2834. "source": {
  2835. "type": "git",
  2836. "url": "https://git.drupalcode.org/project/token.git",
  2837. "reference": "8.x-1.7"
  2838. },
  2839. "dist": {
  2840. "type": "zip",
  2841. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip",
  2842. "reference": "8.x-1.7",
  2843. "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853"
  2844. },
  2845. "require": {
  2846. "drupal/core": "^8.8 || ^9"
  2847. },
  2848. "type": "drupal-module",
  2849. "extra": {
  2850. "drupal": {
  2851. "version": "8.x-1.7",
  2852. "datestamp": "1589314266",
  2853. "security-coverage": {
  2854. "status": "covered",
  2855. "message": "Covered by Drupal's security advisory policy"
  2856. }
  2857. },
  2858. "drush": {
  2859. "services": {
  2860. "drush.services.yml": "^9 || ^10"
  2861. }
  2862. }
  2863. },
  2864. "notification-url": "https://packages.drupal.org/8/downloads",
  2865. "license": [
  2866. "GPL-2.0+"
  2867. ],
  2868. "authors": [
  2869. {
  2870. "name": "Berdir",
  2871. "homepage": "https://www.drupal.org/user/214652"
  2872. },
  2873. {
  2874. "name": "Dave Reid",
  2875. "homepage": "https://www.drupal.org/user/53892"
  2876. },
  2877. {
  2878. "name": "eaton",
  2879. "homepage": "https://www.drupal.org/user/16496"
  2880. },
  2881. {
  2882. "name": "fago",
  2883. "homepage": "https://www.drupal.org/user/16747"
  2884. },
  2885. {
  2886. "name": "greggles",
  2887. "homepage": "https://www.drupal.org/user/36762"
  2888. },
  2889. {
  2890. "name": "mikeryan",
  2891. "homepage": "https://www.drupal.org/user/4420"
  2892. }
  2893. ],
  2894. "description": "Provides a user interface for the Token API, some missing core tokens.",
  2895. "homepage": "https://www.drupal.org/project/token",
  2896. "support": {
  2897. "source": "https://git.drupalcode.org/project/token"
  2898. }
  2899. },
  2900. {
  2901. "name": "drupal/video_embed_field",
  2902. "version": "2.4.0",
  2903. "source": {
  2904. "type": "git",
  2905. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  2906. "reference": "8.x-2.4"
  2907. },
  2908. "dist": {
  2909. "type": "zip",
  2910. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  2911. "reference": "8.x-2.4",
  2912. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  2913. },
  2914. "require": {
  2915. "drupal/core": "^8.8 || ^9"
  2916. },
  2917. "require-dev": {
  2918. "drupal/colorbox": "^1.0",
  2919. "drupal/video_embed_media": "*"
  2920. },
  2921. "type": "drupal-module",
  2922. "extra": {
  2923. "drupal": {
  2924. "version": "8.x-2.4",
  2925. "datestamp": "1587686284",
  2926. "security-coverage": {
  2927. "status": "covered",
  2928. "message": "Covered by Drupal's security advisory policy"
  2929. }
  2930. }
  2931. },
  2932. "notification-url": "https://packages.drupal.org/8/downloads",
  2933. "license": [
  2934. "GPL-2.0+"
  2935. ],
  2936. "authors": [
  2937. {
  2938. "name": "Sam152",
  2939. "homepage": "https://www.drupal.org/user/1485048"
  2940. },
  2941. {
  2942. "name": "jec006",
  2943. "homepage": "https://www.drupal.org/user/855980"
  2944. },
  2945. {
  2946. "name": "plopesc",
  2947. "homepage": "https://www.drupal.org/user/282415"
  2948. }
  2949. ],
  2950. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  2951. "homepage": "https://www.drupal.org/project/video_embed_field",
  2952. "support": {
  2953. "source": "https://git.drupalcode.org/project/video_embed_field"
  2954. }
  2955. },
  2956. {
  2957. "name": "drupal/views_url_path_arguments",
  2958. "version": "1.1.0",
  2959. "source": {
  2960. "type": "git",
  2961. "url": "https://git.drupalcode.org/project/views_url_path_arguments.git",
  2962. "reference": "8.x-1.1"
  2963. },
  2964. "dist": {
  2965. "type": "zip",
  2966. "url": "https://ftp.drupal.org/files/projects/views_url_path_arguments-8.x-1.1.zip",
  2967. "reference": "8.x-1.1",
  2968. "shasum": "55f38957395ae8f35bcdbc44a0f12822e844c73e"
  2969. },
  2970. "require": {
  2971. "drupal/core": "^8 || ^9"
  2972. },
  2973. "type": "drupal-module",
  2974. "extra": {
  2975. "drupal": {
  2976. "version": "8.x-1.1",
  2977. "datestamp": "1586279325",
  2978. "security-coverage": {
  2979. "status": "covered",
  2980. "message": "Covered by Drupal's security advisory policy"
  2981. }
  2982. }
  2983. },
  2984. "notification-url": "https://packages.drupal.org/8/downloads",
  2985. "license": [
  2986. "GPL-2.0+"
  2987. ],
  2988. "authors": [
  2989. {
  2990. "name": "heddn",
  2991. "homepage": "https://www.drupal.org/user/1463982"
  2992. }
  2993. ],
  2994. "description": "Simple module to convert a view argument's entity id into its url path.",
  2995. "homepage": "https://www.drupal.org/project/views_url_path_arguments",
  2996. "keywords": [
  2997. "Drupal"
  2998. ],
  2999. "support": {
  3000. "source": "http://cgit.drupalcode.org/views_url_path_arguments",
  3001. "issues": "https://www.drupal.org/project/issues/views_url_path_arguments"
  3002. }
  3003. },
  3004. {
  3005. "name": "drush/drush",
  3006. "version": "10.2.2",
  3007. "source": {
  3008. "type": "git",
  3009. "url": "https://github.com/drush-ops/drush.git",
  3010. "reference": "8307a4e7dae9c63a279d8b59b9dca6c1973576c2"
  3011. },
  3012. "dist": {
  3013. "type": "zip",
  3014. "url": "https://api.github.com/repos/drush-ops/drush/zipball/8307a4e7dae9c63a279d8b59b9dca6c1973576c2",
  3015. "reference": "8307a4e7dae9c63a279d8b59b9dca6c1973576c2",
  3016. "shasum": ""
  3017. },
  3018. "require": {
  3019. "chi-teck/drupal-code-generator": "^1.30.5",
  3020. "composer/semver": "^1.4",
  3021. "consolidation/config": "^1.2",
  3022. "consolidation/filter-via-dot-access-data": "^1",
  3023. "consolidation/robo": "^1 || ^2",
  3024. "consolidation/site-alias": "^3.0.0@stable",
  3025. "consolidation/site-process": "^2.1 || ^4",
  3026. "ext-dom": "*",
  3027. "grasmash/yaml-expander": "^1.1.1",
  3028. "league/container": "~2",
  3029. "php": ">=7.1.3",
  3030. "psr/log": "~1.0",
  3031. "psy/psysh": "~0.6",
  3032. "symfony/event-dispatcher": "^3.4 || ^4.0",
  3033. "symfony/finder": "^3.4 || ^4.0",
  3034. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  3035. "symfony/yaml": "^3.4 || ^4.0",
  3036. "webflo/drupal-finder": "^1.2",
  3037. "webmozart/path-util": "^2.1.0"
  3038. },
  3039. "require-dev": {
  3040. "composer/installers": "^1.7",
  3041. "cweagans/composer-patches": "~1.0",
  3042. "drupal/alinks": "1.0.0",
  3043. "drupal/core-recommended": "^8.8",
  3044. "g1a/composer-test-scenarios": "^3",
  3045. "lox/xhprof": "dev-master",
  3046. "phpunit/phpunit": "^4.8.36 || ^6.1",
  3047. "squizlabs/php_codesniffer": "^2.7 || ^3",
  3048. "vlucas/phpdotenv": "^2.4"
  3049. },
  3050. "bin": [
  3051. "drush"
  3052. ],
  3053. "type": "library",
  3054. "extra": {
  3055. "installer-paths": {
  3056. "sut/core": [
  3057. "type:drupal-core"
  3058. ],
  3059. "sut/libraries/{$name}": [
  3060. "type:drupal-library"
  3061. ],
  3062. "sut/modules/unish/{$name}": [
  3063. "drupal/devel"
  3064. ],
  3065. "sut/themes/unish/{$name}": [
  3066. "drupal/empty_theme"
  3067. ],
  3068. "sut/modules/contrib/{$name}": [
  3069. "type:drupal-module"
  3070. ],
  3071. "sut/profiles/contrib/{$name}": [
  3072. "type:drupal-profile"
  3073. ],
  3074. "sut/themes/contrib/{$name}": [
  3075. "type:drupal-theme"
  3076. ],
  3077. "sut/drush/contrib/{$name}": [
  3078. "type:drupal-drush"
  3079. ]
  3080. },
  3081. "branch-alias": {
  3082. "dev-master": "10.x-dev"
  3083. }
  3084. },
  3085. "autoload": {
  3086. "psr-4": {
  3087. "Drush\\": "src/",
  3088. "Drush\\Internal\\": "src/internal-forks"
  3089. }
  3090. },
  3091. "notification-url": "https://packagist.org/downloads/",
  3092. "license": [
  3093. "GPL-2.0-or-later"
  3094. ],
  3095. "authors": [
  3096. {
  3097. "name": "Moshe Weitzman",
  3098. "email": "weitzman@tejasa.com"
  3099. },
  3100. {
  3101. "name": "Owen Barton",
  3102. "email": "drupal@owenbarton.com"
  3103. },
  3104. {
  3105. "name": "Greg Anderson",
  3106. "email": "greg.1.anderson@greenknowe.org"
  3107. },
  3108. {
  3109. "name": "Jonathan Araña Cruz",
  3110. "email": "jonhattan@faita.net"
  3111. },
  3112. {
  3113. "name": "Jonathan Hedstrom",
  3114. "email": "jhedstrom@gmail.com"
  3115. },
  3116. {
  3117. "name": "Christopher Gervais",
  3118. "email": "chris@ergonlogic.com"
  3119. },
  3120. {
  3121. "name": "Dave Reid",
  3122. "email": "dave@davereid.net"
  3123. },
  3124. {
  3125. "name": "Damian Lee",
  3126. "email": "damiankloip@googlemail.com"
  3127. }
  3128. ],
  3129. "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.",
  3130. "homepage": "http://www.drush.org",
  3131. "time": "2020-02-26T21:07:53+00:00"
  3132. },
  3133. {
  3134. "name": "easyrdf/easyrdf",
  3135. "version": "0.9.1",
  3136. "source": {
  3137. "type": "git",
  3138. "url": "https://github.com/easyrdf/easyrdf.git",
  3139. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  3140. },
  3141. "dist": {
  3142. "type": "zip",
  3143. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  3144. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  3145. "shasum": ""
  3146. },
  3147. "require": {
  3148. "ext-mbstring": "*",
  3149. "ext-pcre": "*",
  3150. "php": ">=5.2.8"
  3151. },
  3152. "require-dev": {
  3153. "phpunit/phpunit": "~3.5",
  3154. "sami/sami": "~1.4",
  3155. "squizlabs/php_codesniffer": "~1.4.3"
  3156. },
  3157. "suggest": {
  3158. "ml/json-ld": "~1.0"
  3159. },
  3160. "type": "library",
  3161. "autoload": {
  3162. "psr-0": {
  3163. "EasyRdf_": "lib/"
  3164. }
  3165. },
  3166. "notification-url": "https://packagist.org/downloads/",
  3167. "license": [
  3168. "BSD-3-Clause"
  3169. ],
  3170. "authors": [
  3171. {
  3172. "name": "Nicholas Humfrey",
  3173. "email": "njh@aelius.com",
  3174. "homepage": "http://www.aelius.com/njh/",
  3175. "role": "Developer"
  3176. },
  3177. {
  3178. "name": "Alexey Zakhlestin",
  3179. "email": "indeyets@gmail.com",
  3180. "role": "Developer"
  3181. }
  3182. ],
  3183. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  3184. "homepage": "http://www.easyrdf.org/",
  3185. "keywords": [
  3186. "Linked Data",
  3187. "RDF",
  3188. "Semantic Web",
  3189. "Turtle",
  3190. "rdfa",
  3191. "sparql"
  3192. ],
  3193. "time": "2015-02-27T09:45:49+00:00"
  3194. },
  3195. {
  3196. "name": "egulias/email-validator",
  3197. "version": "2.1.17",
  3198. "source": {
  3199. "type": "git",
  3200. "url": "https://github.com/egulias/EmailValidator.git",
  3201. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  3202. },
  3203. "dist": {
  3204. "type": "zip",
  3205. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  3206. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  3207. "shasum": ""
  3208. },
  3209. "require": {
  3210. "doctrine/lexer": "^1.0.1",
  3211. "php": ">=5.5",
  3212. "symfony/polyfill-intl-idn": "^1.10"
  3213. },
  3214. "require-dev": {
  3215. "dominicsayers/isemail": "^3.0.7",
  3216. "phpunit/phpunit": "^4.8.36|^7.5.15",
  3217. "satooshi/php-coveralls": "^1.0.1"
  3218. },
  3219. "suggest": {
  3220. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  3221. },
  3222. "type": "library",
  3223. "extra": {
  3224. "branch-alias": {
  3225. "dev-master": "2.1.x-dev"
  3226. }
  3227. },
  3228. "autoload": {
  3229. "psr-4": {
  3230. "Egulias\\EmailValidator\\": "EmailValidator"
  3231. }
  3232. },
  3233. "notification-url": "https://packagist.org/downloads/",
  3234. "license": [
  3235. "MIT"
  3236. ],
  3237. "authors": [
  3238. {
  3239. "name": "Eduardo Gulias Davis"
  3240. }
  3241. ],
  3242. "description": "A library for validating emails against several RFCs",
  3243. "homepage": "https://github.com/egulias/EmailValidator",
  3244. "keywords": [
  3245. "email",
  3246. "emailvalidation",
  3247. "emailvalidator",
  3248. "validation",
  3249. "validator"
  3250. ],
  3251. "time": "2020-02-13T22:36:52+00:00"
  3252. },
  3253. {
  3254. "name": "grasmash/expander",
  3255. "version": "1.0.0",
  3256. "source": {
  3257. "type": "git",
  3258. "url": "https://github.com/grasmash/expander.git",
  3259. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  3260. },
  3261. "dist": {
  3262. "type": "zip",
  3263. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  3264. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  3265. "shasum": ""
  3266. },
  3267. "require": {
  3268. "dflydev/dot-access-data": "^1.1.0",
  3269. "php": ">=5.4"
  3270. },
  3271. "require-dev": {
  3272. "greg-1-anderson/composer-test-scenarios": "^1",
  3273. "phpunit/phpunit": "^4|^5.5.4",
  3274. "satooshi/php-coveralls": "^1.0.2|dev-master",
  3275. "squizlabs/php_codesniffer": "^2.7"
  3276. },
  3277. "type": "library",
  3278. "extra": {
  3279. "branch-alias": {
  3280. "dev-master": "1.x-dev"
  3281. }
  3282. },
  3283. "autoload": {
  3284. "psr-4": {
  3285. "Grasmash\\Expander\\": "src/"
  3286. }
  3287. },
  3288. "notification-url": "https://packagist.org/downloads/",
  3289. "license": [
  3290. "MIT"
  3291. ],
  3292. "authors": [
  3293. {
  3294. "name": "Matthew Grasmick"
  3295. }
  3296. ],
  3297. "description": "Expands internal property references in PHP arrays file.",
  3298. "time": "2017-12-21T22:14:55+00:00"
  3299. },
  3300. {
  3301. "name": "grasmash/yaml-expander",
  3302. "version": "1.4.0",
  3303. "source": {
  3304. "type": "git",
  3305. "url": "https://github.com/grasmash/yaml-expander.git",
  3306. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  3307. },
  3308. "dist": {
  3309. "type": "zip",
  3310. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  3311. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  3312. "shasum": ""
  3313. },
  3314. "require": {
  3315. "dflydev/dot-access-data": "^1.1.0",
  3316. "php": ">=5.4",
  3317. "symfony/yaml": "^2.8.11|^3|^4"
  3318. },
  3319. "require-dev": {
  3320. "greg-1-anderson/composer-test-scenarios": "^1",
  3321. "phpunit/phpunit": "^4.8|^5.5.4",
  3322. "satooshi/php-coveralls": "^1.0.2|dev-master",
  3323. "squizlabs/php_codesniffer": "^2.7"
  3324. },
  3325. "type": "library",
  3326. "extra": {
  3327. "branch-alias": {
  3328. "dev-master": "1.x-dev"
  3329. }
  3330. },
  3331. "autoload": {
  3332. "psr-4": {
  3333. "Grasmash\\YamlExpander\\": "src/"
  3334. }
  3335. },
  3336. "notification-url": "https://packagist.org/downloads/",
  3337. "license": [
  3338. "MIT"
  3339. ],
  3340. "authors": [
  3341. {
  3342. "name": "Matthew Grasmick"
  3343. }
  3344. ],
  3345. "description": "Expands internal property references in a yaml file.",
  3346. "time": "2017-12-16T16:06:03+00:00"
  3347. },
  3348. {
  3349. "name": "guzzlehttp/guzzle",
  3350. "version": "6.5.4",
  3351. "source": {
  3352. "type": "git",
  3353. "url": "https://github.com/guzzle/guzzle.git",
  3354. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  3355. },
  3356. "dist": {
  3357. "type": "zip",
  3358. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  3359. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  3360. "shasum": ""
  3361. },
  3362. "require": {
  3363. "ext-json": "*",
  3364. "guzzlehttp/promises": "^1.0",
  3365. "guzzlehttp/psr7": "^1.6.1",
  3366. "php": ">=5.5",
  3367. "symfony/polyfill-intl-idn": "1.17.0"
  3368. },
  3369. "require-dev": {
  3370. "ext-curl": "*",
  3371. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  3372. "psr/log": "^1.1"
  3373. },
  3374. "suggest": {
  3375. "psr/log": "Required for using the Log middleware"
  3376. },
  3377. "type": "library",
  3378. "extra": {
  3379. "branch-alias": {
  3380. "dev-master": "6.5-dev"
  3381. }
  3382. },
  3383. "autoload": {
  3384. "psr-4": {
  3385. "GuzzleHttp\\": "src/"
  3386. },
  3387. "files": [
  3388. "src/functions_include.php"
  3389. ]
  3390. },
  3391. "notification-url": "https://packagist.org/downloads/",
  3392. "license": [
  3393. "MIT"
  3394. ],
  3395. "authors": [
  3396. {
  3397. "name": "Michael Dowling",
  3398. "email": "mtdowling@gmail.com",
  3399. "homepage": "https://github.com/mtdowling"
  3400. }
  3401. ],
  3402. "description": "Guzzle is a PHP HTTP client library",
  3403. "homepage": "http://guzzlephp.org/",
  3404. "keywords": [
  3405. "client",
  3406. "curl",
  3407. "framework",
  3408. "http",
  3409. "http client",
  3410. "rest",
  3411. "web service"
  3412. ],
  3413. "time": "2020-05-25T19:35:05+00:00"
  3414. },
  3415. {
  3416. "name": "guzzlehttp/promises",
  3417. "version": "v1.3.1",
  3418. "source": {
  3419. "type": "git",
  3420. "url": "https://github.com/guzzle/promises.git",
  3421. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  3422. },
  3423. "dist": {
  3424. "type": "zip",
  3425. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  3426. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  3427. "shasum": ""
  3428. },
  3429. "require": {
  3430. "php": ">=5.5.0"
  3431. },
  3432. "require-dev": {
  3433. "phpunit/phpunit": "^4.0"
  3434. },
  3435. "type": "library",
  3436. "extra": {
  3437. "branch-alias": {
  3438. "dev-master": "1.4-dev"
  3439. }
  3440. },
  3441. "autoload": {
  3442. "psr-4": {
  3443. "GuzzleHttp\\Promise\\": "src/"
  3444. },
  3445. "files": [
  3446. "src/functions_include.php"
  3447. ]
  3448. },
  3449. "notification-url": "https://packagist.org/downloads/",
  3450. "license": [
  3451. "MIT"
  3452. ],
  3453. "authors": [
  3454. {
  3455. "name": "Michael Dowling",
  3456. "email": "mtdowling@gmail.com",
  3457. "homepage": "https://github.com/mtdowling"
  3458. }
  3459. ],
  3460. "description": "Guzzle promises library",
  3461. "keywords": [
  3462. "promise"
  3463. ],
  3464. "time": "2016-12-20T10:07:11+00:00"
  3465. },
  3466. {
  3467. "name": "guzzlehttp/psr7",
  3468. "version": "1.6.1",
  3469. "source": {
  3470. "type": "git",
  3471. "url": "https://github.com/guzzle/psr7.git",
  3472. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  3473. },
  3474. "dist": {
  3475. "type": "zip",
  3476. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  3477. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  3478. "shasum": ""
  3479. },
  3480. "require": {
  3481. "php": ">=5.4.0",
  3482. "psr/http-message": "~1.0",
  3483. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  3484. },
  3485. "provide": {
  3486. "psr/http-message-implementation": "1.0"
  3487. },
  3488. "require-dev": {
  3489. "ext-zlib": "*",
  3490. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  3491. },
  3492. "suggest": {
  3493. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  3494. },
  3495. "type": "library",
  3496. "extra": {
  3497. "branch-alias": {
  3498. "dev-master": "1.6-dev"
  3499. }
  3500. },
  3501. "autoload": {
  3502. "psr-4": {
  3503. "GuzzleHttp\\Psr7\\": "src/"
  3504. },
  3505. "files": [
  3506. "src/functions_include.php"
  3507. ]
  3508. },
  3509. "notification-url": "https://packagist.org/downloads/",
  3510. "license": [
  3511. "MIT"
  3512. ],
  3513. "authors": [
  3514. {
  3515. "name": "Michael Dowling",
  3516. "email": "mtdowling@gmail.com",
  3517. "homepage": "https://github.com/mtdowling"
  3518. },
  3519. {
  3520. "name": "Tobias Schultze",
  3521. "homepage": "https://github.com/Tobion"
  3522. }
  3523. ],
  3524. "description": "PSR-7 message implementation that also provides common utility methods",
  3525. "keywords": [
  3526. "http",
  3527. "message",
  3528. "psr-7",
  3529. "request",
  3530. "response",
  3531. "stream",
  3532. "uri",
  3533. "url"
  3534. ],
  3535. "time": "2019-07-01T23:21:34+00:00"
  3536. },
  3537. {
  3538. "name": "laminas/laminas-diactoros",
  3539. "version": "1.8.7p2",
  3540. "source": {
  3541. "type": "git",
  3542. "url": "https://github.com/laminas/laminas-diactoros.git",
  3543. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  3544. },
  3545. "dist": {
  3546. "type": "zip",
  3547. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  3548. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  3549. "shasum": ""
  3550. },
  3551. "require": {
  3552. "laminas/laminas-zendframework-bridge": "^1.0",
  3553. "php": "^5.6 || ^7.0",
  3554. "psr/http-message": "^1.0"
  3555. },
  3556. "provide": {
  3557. "psr/http-message-implementation": "1.0"
  3558. },
  3559. "replace": {
  3560. "zendframework/zend-diactoros": "~1.8.7.0"
  3561. },
  3562. "require-dev": {
  3563. "ext-dom": "*",
  3564. "ext-libxml": "*",
  3565. "laminas/laminas-coding-standard": "~1.0",
  3566. "php-http/psr7-integration-tests": "dev-master",
  3567. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  3568. },
  3569. "type": "library",
  3570. "extra": {
  3571. "branch-alias": {
  3572. "dev-release-1.8": "1.8.x-dev"
  3573. }
  3574. },
  3575. "autoload": {
  3576. "files": [
  3577. "src/functions/create_uploaded_file.php",
  3578. "src/functions/marshal_headers_from_sapi.php",
  3579. "src/functions/marshal_method_from_sapi.php",
  3580. "src/functions/marshal_protocol_version_from_sapi.php",
  3581. "src/functions/marshal_uri_from_sapi.php",
  3582. "src/functions/normalize_server.php",
  3583. "src/functions/normalize_uploaded_files.php",
  3584. "src/functions/parse_cookie_header.php",
  3585. "src/functions/create_uploaded_file.legacy.php",
  3586. "src/functions/marshal_headers_from_sapi.legacy.php",
  3587. "src/functions/marshal_method_from_sapi.legacy.php",
  3588. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  3589. "src/functions/marshal_uri_from_sapi.legacy.php",
  3590. "src/functions/normalize_server.legacy.php",
  3591. "src/functions/normalize_uploaded_files.legacy.php",
  3592. "src/functions/parse_cookie_header.legacy.php"
  3593. ],
  3594. "psr-4": {
  3595. "Laminas\\Diactoros\\": "src/"
  3596. }
  3597. },
  3598. "notification-url": "https://packagist.org/downloads/",
  3599. "license": [
  3600. "BSD-3-Clause"
  3601. ],
  3602. "description": "PSR HTTP Message implementations",
  3603. "homepage": "https://laminas.dev",
  3604. "keywords": [
  3605. "http",
  3606. "laminas",
  3607. "psr",
  3608. "psr-7"
  3609. ],
  3610. "time": "2020-03-23T15:28:28+00:00"
  3611. },
  3612. {
  3613. "name": "laminas/laminas-escaper",
  3614. "version": "2.6.1",
  3615. "source": {
  3616. "type": "git",
  3617. "url": "https://github.com/laminas/laminas-escaper.git",
  3618. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  3619. },
  3620. "dist": {
  3621. "type": "zip",
  3622. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  3623. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  3624. "shasum": ""
  3625. },
  3626. "require": {
  3627. "laminas/laminas-zendframework-bridge": "^1.0",
  3628. "php": "^5.6 || ^7.0"
  3629. },
  3630. "replace": {
  3631. "zendframework/zend-escaper": "self.version"
  3632. },
  3633. "require-dev": {
  3634. "laminas/laminas-coding-standard": "~1.0.0",
  3635. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  3636. },
  3637. "type": "library",
  3638. "extra": {
  3639. "branch-alias": {
  3640. "dev-master": "2.6.x-dev",
  3641. "dev-develop": "2.7.x-dev"
  3642. }
  3643. },
  3644. "autoload": {
  3645. "psr-4": {
  3646. "Laminas\\Escaper\\": "src/"
  3647. }
  3648. },
  3649. "notification-url": "https://packagist.org/downloads/",
  3650. "license": [
  3651. "BSD-3-Clause"
  3652. ],
  3653. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  3654. "homepage": "https://laminas.dev",
  3655. "keywords": [
  3656. "escaper",
  3657. "laminas"
  3658. ],
  3659. "time": "2019-12-31T16:43:30+00:00"
  3660. },
  3661. {
  3662. "name": "laminas/laminas-feed",
  3663. "version": "2.12.2",
  3664. "source": {
  3665. "type": "git",
  3666. "url": "https://github.com/laminas/laminas-feed.git",
  3667. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  3668. },
  3669. "dist": {
  3670. "type": "zip",
  3671. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  3672. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  3673. "shasum": ""
  3674. },
  3675. "require": {
  3676. "ext-dom": "*",
  3677. "ext-libxml": "*",
  3678. "laminas/laminas-escaper": "^2.5.2",
  3679. "laminas/laminas-stdlib": "^3.2.1",
  3680. "laminas/laminas-zendframework-bridge": "^1.0",
  3681. "php": "^5.6 || ^7.0"
  3682. },
  3683. "replace": {
  3684. "zendframework/zend-feed": "^2.12.0"
  3685. },
  3686. "require-dev": {
  3687. "laminas/laminas-cache": "^2.7.2",
  3688. "laminas/laminas-coding-standard": "~1.0.0",
  3689. "laminas/laminas-db": "^2.8.2",
  3690. "laminas/laminas-http": "^2.7",
  3691. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  3692. "laminas/laminas-validator": "^2.10.1",
  3693. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  3694. "psr/http-message": "^1.0.1"
  3695. },
  3696. "suggest": {
  3697. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  3698. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  3699. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  3700. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  3701. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  3702. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  3703. },
  3704. "type": "library",
  3705. "extra": {
  3706. "branch-alias": {
  3707. "dev-master": "2.12.x-dev",
  3708. "dev-develop": "2.13.x-dev"
  3709. }
  3710. },
  3711. "autoload": {
  3712. "psr-4": {
  3713. "Laminas\\Feed\\": "src/"
  3714. }
  3715. },
  3716. "notification-url": "https://packagist.org/downloads/",
  3717. "license": [
  3718. "BSD-3-Clause"
  3719. ],
  3720. "description": "provides functionality for consuming RSS and Atom feeds",
  3721. "homepage": "https://laminas.dev",
  3722. "keywords": [
  3723. "feed",
  3724. "laminas"
  3725. ],
  3726. "time": "2020-03-29T12:36:29+00:00"
  3727. },
  3728. {
  3729. "name": "laminas/laminas-stdlib",
  3730. "version": "3.2.1",
  3731. "source": {
  3732. "type": "git",
  3733. "url": "https://github.com/laminas/laminas-stdlib.git",
  3734. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  3735. },
  3736. "dist": {
  3737. "type": "zip",
  3738. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  3739. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  3740. "shasum": ""
  3741. },
  3742. "require": {
  3743. "laminas/laminas-zendframework-bridge": "^1.0",
  3744. "php": "^5.6 || ^7.0"
  3745. },
  3746. "replace": {
  3747. "zendframework/zend-stdlib": "self.version"
  3748. },
  3749. "require-dev": {
  3750. "laminas/laminas-coding-standard": "~1.0.0",
  3751. "phpbench/phpbench": "^0.13",
  3752. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  3753. },
  3754. "type": "library",
  3755. "extra": {
  3756. "branch-alias": {
  3757. "dev-master": "3.2.x-dev",
  3758. "dev-develop": "3.3.x-dev"
  3759. }
  3760. },
  3761. "autoload": {
  3762. "psr-4": {
  3763. "Laminas\\Stdlib\\": "src/"
  3764. }
  3765. },
  3766. "notification-url": "https://packagist.org/downloads/",
  3767. "license": [
  3768. "BSD-3-Clause"
  3769. ],
  3770. "description": "SPL extensions, array utilities, error handlers, and more",
  3771. "homepage": "https://laminas.dev",
  3772. "keywords": [
  3773. "laminas",
  3774. "stdlib"
  3775. ],
  3776. "time": "2019-12-31T17:51:15+00:00"
  3777. },
  3778. {
  3779. "name": "laminas/laminas-zendframework-bridge",
  3780. "version": "1.0.4",
  3781. "source": {
  3782. "type": "git",
  3783. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  3784. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  3785. },
  3786. "dist": {
  3787. "type": "zip",
  3788. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  3789. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  3790. "shasum": ""
  3791. },
  3792. "require": {
  3793. "php": "^5.6 || ^7.0"
  3794. },
  3795. "require-dev": {
  3796. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  3797. "squizlabs/php_codesniffer": "^3.5"
  3798. },
  3799. "type": "library",
  3800. "extra": {
  3801. "branch-alias": {
  3802. "dev-master": "1.0.x-dev",
  3803. "dev-develop": "1.1.x-dev"
  3804. },
  3805. "laminas": {
  3806. "module": "Laminas\\ZendFrameworkBridge"
  3807. }
  3808. },
  3809. "autoload": {
  3810. "files": [
  3811. "src/autoload.php"
  3812. ],
  3813. "psr-4": {
  3814. "Laminas\\ZendFrameworkBridge\\": "src//"
  3815. }
  3816. },
  3817. "notification-url": "https://packagist.org/downloads/",
  3818. "license": [
  3819. "BSD-3-Clause"
  3820. ],
  3821. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  3822. "keywords": [
  3823. "ZendFramework",
  3824. "autoloading",
  3825. "laminas",
  3826. "zf"
  3827. ],
  3828. "funding": [
  3829. {
  3830. "url": "https://funding.communitybridge.org/projects/laminas-project",
  3831. "type": "community_bridge"
  3832. }
  3833. ],
  3834. "time": "2020-05-20T16:45:56+00:00"
  3835. },
  3836. {
  3837. "name": "league/container",
  3838. "version": "2.4.1",
  3839. "source": {
  3840. "type": "git",
  3841. "url": "https://github.com/thephpleague/container.git",
  3842. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  3843. },
  3844. "dist": {
  3845. "type": "zip",
  3846. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  3847. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  3848. "shasum": ""
  3849. },
  3850. "require": {
  3851. "container-interop/container-interop": "^1.2",
  3852. "php": "^5.4.0 || ^7.0"
  3853. },
  3854. "provide": {
  3855. "container-interop/container-interop-implementation": "^1.2",
  3856. "psr/container-implementation": "^1.0"
  3857. },
  3858. "replace": {
  3859. "orno/di": "~2.0"
  3860. },
  3861. "require-dev": {
  3862. "phpunit/phpunit": "4.*"
  3863. },
  3864. "type": "library",
  3865. "extra": {
  3866. "branch-alias": {
  3867. "dev-2.x": "2.x-dev",
  3868. "dev-1.x": "1.x-dev"
  3869. }
  3870. },
  3871. "autoload": {
  3872. "psr-4": {
  3873. "League\\Container\\": "src"
  3874. }
  3875. },
  3876. "notification-url": "https://packagist.org/downloads/",
  3877. "license": [
  3878. "MIT"
  3879. ],
  3880. "authors": [
  3881. {
  3882. "name": "Phil Bennett",
  3883. "email": "philipobenito@gmail.com",
  3884. "homepage": "http://www.philipobenito.com",
  3885. "role": "Developer"
  3886. }
  3887. ],
  3888. "description": "A fast and intuitive dependency injection container.",
  3889. "homepage": "https://github.com/thephpleague/container",
  3890. "keywords": [
  3891. "container",
  3892. "dependency",
  3893. "di",
  3894. "injection",
  3895. "league",
  3896. "provider",
  3897. "service"
  3898. ],
  3899. "time": "2017-05-10T09:20:27+00:00"
  3900. },
  3901. {
  3902. "name": "masterminds/html5",
  3903. "version": "2.3.0",
  3904. "source": {
  3905. "type": "git",
  3906. "url": "https://github.com/Masterminds/html5-php.git",
  3907. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  3908. },
  3909. "dist": {
  3910. "type": "zip",
  3911. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  3912. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  3913. "shasum": ""
  3914. },
  3915. "require": {
  3916. "ext-libxml": "*",
  3917. "php": ">=5.3.0"
  3918. },
  3919. "require-dev": {
  3920. "phpunit/phpunit": "4.*",
  3921. "sami/sami": "~2.0",
  3922. "satooshi/php-coveralls": "1.0.*"
  3923. },
  3924. "type": "library",
  3925. "extra": {
  3926. "branch-alias": {
  3927. "dev-master": "2.2-dev"
  3928. }
  3929. },
  3930. "autoload": {
  3931. "psr-4": {
  3932. "Masterminds\\": "src"
  3933. }
  3934. },
  3935. "notification-url": "https://packagist.org/downloads/",
  3936. "license": [
  3937. "MIT"
  3938. ],
  3939. "authors": [
  3940. {
  3941. "name": "Matt Butcher",
  3942. "email": "technosophos@gmail.com"
  3943. },
  3944. {
  3945. "name": "Asmir Mustafic",
  3946. "email": "goetas@gmail.com"
  3947. },
  3948. {
  3949. "name": "Matt Farina",
  3950. "email": "matt@mattfarina.com"
  3951. }
  3952. ],
  3953. "description": "An HTML5 parser and serializer.",
  3954. "homepage": "http://masterminds.github.io/html5-php",
  3955. "keywords": [
  3956. "HTML5",
  3957. "dom",
  3958. "html",
  3959. "parser",
  3960. "querypath",
  3961. "serializer",
  3962. "xml"
  3963. ],
  3964. "time": "2017-09-04T12:26:28+00:00"
  3965. },
  3966. {
  3967. "name": "nikic/php-parser",
  3968. "version": "v4.5.0",
  3969. "source": {
  3970. "type": "git",
  3971. "url": "https://github.com/nikic/PHP-Parser.git",
  3972. "reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463"
  3973. },
  3974. "dist": {
  3975. "type": "zip",
  3976. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/53c2753d756f5adb586dca79c2ec0e2654dd9463",
  3977. "reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463",
  3978. "shasum": ""
  3979. },
  3980. "require": {
  3981. "ext-tokenizer": "*",
  3982. "php": ">=7.0"
  3983. },
  3984. "require-dev": {
  3985. "ircmaxell/php-yacc": "0.0.5",
  3986. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  3987. },
  3988. "bin": [
  3989. "bin/php-parse"
  3990. ],
  3991. "type": "library",
  3992. "extra": {
  3993. "branch-alias": {
  3994. "dev-master": "4.3-dev"
  3995. }
  3996. },
  3997. "autoload": {
  3998. "psr-4": {
  3999. "PhpParser\\": "lib/PhpParser"
  4000. }
  4001. },
  4002. "notification-url": "https://packagist.org/downloads/",
  4003. "license": [
  4004. "BSD-3-Clause"
  4005. ],
  4006. "authors": [
  4007. {
  4008. "name": "Nikita Popov"
  4009. }
  4010. ],
  4011. "description": "A PHP parser written in PHP",
  4012. "keywords": [
  4013. "parser",
  4014. "php"
  4015. ],
  4016. "time": "2020-06-03T07:24:19+00:00"
  4017. },
  4018. {
  4019. "name": "paragonie/random_compat",
  4020. "version": "v9.99.99",
  4021. "source": {
  4022. "type": "git",
  4023. "url": "https://github.com/paragonie/random_compat.git",
  4024. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  4025. },
  4026. "dist": {
  4027. "type": "zip",
  4028. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  4029. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  4030. "shasum": ""
  4031. },
  4032. "require": {
  4033. "php": "^7"
  4034. },
  4035. "require-dev": {
  4036. "phpunit/phpunit": "4.*|5.*",
  4037. "vimeo/psalm": "^1"
  4038. },
  4039. "suggest": {
  4040. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  4041. },
  4042. "type": "library",
  4043. "notification-url": "https://packagist.org/downloads/",
  4044. "license": [
  4045. "MIT"
  4046. ],
  4047. "authors": [
  4048. {
  4049. "name": "Paragon Initiative Enterprises",
  4050. "email": "security@paragonie.com",
  4051. "homepage": "https://paragonie.com"
  4052. }
  4053. ],
  4054. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  4055. "keywords": [
  4056. "csprng",
  4057. "polyfill",
  4058. "pseudorandom",
  4059. "random"
  4060. ],
  4061. "time": "2018-07-02T15:55:56+00:00"
  4062. },
  4063. {
  4064. "name": "pear/archive_tar",
  4065. "version": "1.4.9",
  4066. "source": {
  4067. "type": "git",
  4068. "url": "https://github.com/pear/Archive_Tar.git",
  4069. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0"
  4070. },
  4071. "dist": {
  4072. "type": "zip",
  4073. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/c5b00053770e1d72128252c62c2c1a12c26639f0",
  4074. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0",
  4075. "shasum": ""
  4076. },
  4077. "require": {
  4078. "pear/pear-core-minimal": "^1.10.0alpha2",
  4079. "php": ">=5.2.0"
  4080. },
  4081. "require-dev": {
  4082. "phpunit/phpunit": "*"
  4083. },
  4084. "suggest": {
  4085. "ext-bz2": "Bz2 compression support.",
  4086. "ext-xz": "Lzma2 compression support.",
  4087. "ext-zlib": "Gzip compression support."
  4088. },
  4089. "type": "library",
  4090. "extra": {
  4091. "branch-alias": {
  4092. "dev-master": "1.4.x-dev"
  4093. }
  4094. },
  4095. "autoload": {
  4096. "psr-0": {
  4097. "Archive_Tar": ""
  4098. }
  4099. },
  4100. "notification-url": "https://packagist.org/downloads/",
  4101. "include-path": [
  4102. "./"
  4103. ],
  4104. "license": [
  4105. "BSD-3-Clause"
  4106. ],
  4107. "authors": [
  4108. {
  4109. "name": "Vincent Blavet",
  4110. "email": "vincent@phpconcept.net"
  4111. },
  4112. {
  4113. "name": "Greg Beaver",
  4114. "email": "greg@chiaraquartet.net"
  4115. },
  4116. {
  4117. "name": "Michiel Rook",
  4118. "email": "mrook@php.net"
  4119. }
  4120. ],
  4121. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  4122. "homepage": "https://github.com/pear/Archive_Tar",
  4123. "keywords": [
  4124. "archive",
  4125. "tar"
  4126. ],
  4127. "time": "2019-12-04T10:17:28+00:00"
  4128. },
  4129. {
  4130. "name": "pear/console_getopt",
  4131. "version": "v1.4.3",
  4132. "source": {
  4133. "type": "git",
  4134. "url": "https://github.com/pear/Console_Getopt.git",
  4135. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  4136. },
  4137. "dist": {
  4138. "type": "zip",
  4139. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  4140. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  4141. "shasum": ""
  4142. },
  4143. "type": "library",
  4144. "autoload": {
  4145. "psr-0": {
  4146. "Console": "./"
  4147. }
  4148. },
  4149. "notification-url": "https://packagist.org/downloads/",
  4150. "include-path": [
  4151. "./"
  4152. ],
  4153. "license": [
  4154. "BSD-2-Clause"
  4155. ],
  4156. "authors": [
  4157. {
  4158. "name": "Andrei Zmievski",
  4159. "email": "andrei@php.net",
  4160. "role": "Lead"
  4161. },
  4162. {
  4163. "name": "Stig Bakken",
  4164. "email": "stig@php.net",
  4165. "role": "Developer"
  4166. },
  4167. {
  4168. "name": "Greg Beaver",
  4169. "email": "cellog@php.net",
  4170. "role": "Helper"
  4171. }
  4172. ],
  4173. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  4174. "time": "2019-11-20T18:27:48+00:00"
  4175. },
  4176. {
  4177. "name": "pear/pear-core-minimal",
  4178. "version": "v1.10.10",
  4179. "source": {
  4180. "type": "git",
  4181. "url": "https://github.com/pear/pear-core-minimal.git",
  4182. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  4183. },
  4184. "dist": {
  4185. "type": "zip",
  4186. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  4187. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  4188. "shasum": ""
  4189. },
  4190. "require": {
  4191. "pear/console_getopt": "~1.4",
  4192. "pear/pear_exception": "~1.0"
  4193. },
  4194. "replace": {
  4195. "rsky/pear-core-min": "self.version"
  4196. },
  4197. "type": "library",
  4198. "autoload": {
  4199. "psr-0": {
  4200. "": "src/"
  4201. }
  4202. },
  4203. "notification-url": "https://packagist.org/downloads/",
  4204. "include-path": [
  4205. "src/"
  4206. ],
  4207. "license": [
  4208. "BSD-3-Clause"
  4209. ],
  4210. "authors": [
  4211. {
  4212. "name": "Christian Weiske",
  4213. "email": "cweiske@php.net",
  4214. "role": "Lead"
  4215. }
  4216. ],
  4217. "description": "Minimal set of PEAR core files to be used as composer dependency",
  4218. "time": "2019-11-19T19:00:24+00:00"
  4219. },
  4220. {
  4221. "name": "pear/pear_exception",
  4222. "version": "v1.0.1",
  4223. "source": {
  4224. "type": "git",
  4225. "url": "https://github.com/pear/PEAR_Exception.git",
  4226. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  4227. },
  4228. "dist": {
  4229. "type": "zip",
  4230. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  4231. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  4232. "shasum": ""
  4233. },
  4234. "require": {
  4235. "php": ">=4.4.0"
  4236. },
  4237. "require-dev": {
  4238. "phpunit/phpunit": "*"
  4239. },
  4240. "type": "class",
  4241. "extra": {
  4242. "branch-alias": {
  4243. "dev-master": "1.0.x-dev"
  4244. }
  4245. },
  4246. "autoload": {
  4247. "classmap": [
  4248. "PEAR/"
  4249. ]
  4250. },
  4251. "notification-url": "https://packagist.org/downloads/",
  4252. "include-path": [
  4253. "."
  4254. ],
  4255. "license": [
  4256. "BSD-2-Clause"
  4257. ],
  4258. "authors": [
  4259. {
  4260. "name": "Helgi Thormar",
  4261. "email": "dufuz@php.net"
  4262. },
  4263. {
  4264. "name": "Greg Beaver",
  4265. "email": "cellog@php.net"
  4266. }
  4267. ],
  4268. "description": "The PEAR Exception base class.",
  4269. "homepage": "https://github.com/pear/PEAR_Exception",
  4270. "keywords": [
  4271. "exception"
  4272. ],
  4273. "time": "2019-12-10T10:24:42+00:00"
  4274. },
  4275. {
  4276. "name": "psr/container",
  4277. "version": "1.0.0",
  4278. "source": {
  4279. "type": "git",
  4280. "url": "https://github.com/php-fig/container.git",
  4281. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  4282. },
  4283. "dist": {
  4284. "type": "zip",
  4285. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  4286. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  4287. "shasum": ""
  4288. },
  4289. "require": {
  4290. "php": ">=5.3.0"
  4291. },
  4292. "type": "library",
  4293. "extra": {
  4294. "branch-alias": {
  4295. "dev-master": "1.0.x-dev"
  4296. }
  4297. },
  4298. "autoload": {
  4299. "psr-4": {
  4300. "Psr\\Container\\": "src/"
  4301. }
  4302. },
  4303. "notification-url": "https://packagist.org/downloads/",
  4304. "license": [
  4305. "MIT"
  4306. ],
  4307. "authors": [
  4308. {
  4309. "name": "PHP-FIG",
  4310. "homepage": "http://www.php-fig.org/"
  4311. }
  4312. ],
  4313. "description": "Common Container Interface (PHP FIG PSR-11)",
  4314. "homepage": "https://github.com/php-fig/container",
  4315. "keywords": [
  4316. "PSR-11",
  4317. "container",
  4318. "container-interface",
  4319. "container-interop",
  4320. "psr"
  4321. ],
  4322. "time": "2017-02-14T16:28:37+00:00"
  4323. },
  4324. {
  4325. "name": "psr/http-message",
  4326. "version": "1.0.1",
  4327. "source": {
  4328. "type": "git",
  4329. "url": "https://github.com/php-fig/http-message.git",
  4330. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4331. },
  4332. "dist": {
  4333. "type": "zip",
  4334. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4335. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4336. "shasum": ""
  4337. },
  4338. "require": {
  4339. "php": ">=5.3.0"
  4340. },
  4341. "type": "library",
  4342. "extra": {
  4343. "branch-alias": {
  4344. "dev-master": "1.0.x-dev"
  4345. }
  4346. },
  4347. "autoload": {
  4348. "psr-4": {
  4349. "Psr\\Http\\Message\\": "src/"
  4350. }
  4351. },
  4352. "notification-url": "https://packagist.org/downloads/",
  4353. "license": [
  4354. "MIT"
  4355. ],
  4356. "authors": [
  4357. {
  4358. "name": "PHP-FIG",
  4359. "homepage": "http://www.php-fig.org/"
  4360. }
  4361. ],
  4362. "description": "Common interface for HTTP messages",
  4363. "homepage": "https://github.com/php-fig/http-message",
  4364. "keywords": [
  4365. "http",
  4366. "http-message",
  4367. "psr",
  4368. "psr-7",
  4369. "request",
  4370. "response"
  4371. ],
  4372. "time": "2016-08-06T14:39:51+00:00"
  4373. },
  4374. {
  4375. "name": "psr/log",
  4376. "version": "1.1.3",
  4377. "source": {
  4378. "type": "git",
  4379. "url": "https://github.com/php-fig/log.git",
  4380. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  4381. },
  4382. "dist": {
  4383. "type": "zip",
  4384. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  4385. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  4386. "shasum": ""
  4387. },
  4388. "require": {
  4389. "php": ">=5.3.0"
  4390. },
  4391. "type": "library",
  4392. "extra": {
  4393. "branch-alias": {
  4394. "dev-master": "1.1.x-dev"
  4395. }
  4396. },
  4397. "autoload": {
  4398. "psr-4": {
  4399. "Psr\\Log\\": "Psr/Log/"
  4400. }
  4401. },
  4402. "notification-url": "https://packagist.org/downloads/",
  4403. "license": [
  4404. "MIT"
  4405. ],
  4406. "authors": [
  4407. {
  4408. "name": "PHP-FIG",
  4409. "homepage": "http://www.php-fig.org/"
  4410. }
  4411. ],
  4412. "description": "Common interface for logging libraries",
  4413. "homepage": "https://github.com/php-fig/log",
  4414. "keywords": [
  4415. "log",
  4416. "psr",
  4417. "psr-3"
  4418. ],
  4419. "time": "2020-03-23T09:12:05+00:00"
  4420. },
  4421. {
  4422. "name": "psy/psysh",
  4423. "version": "v0.10.4",
  4424. "source": {
  4425. "type": "git",
  4426. "url": "https://github.com/bobthecow/psysh.git",
  4427. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  4428. },
  4429. "dist": {
  4430. "type": "zip",
  4431. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  4432. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  4433. "shasum": ""
  4434. },
  4435. "require": {
  4436. "dnoegel/php-xdg-base-dir": "0.1.*",
  4437. "ext-json": "*",
  4438. "ext-tokenizer": "*",
  4439. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4440. "php": "^8.0 || ^7.0 || ^5.5.9",
  4441. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4442. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4443. },
  4444. "require-dev": {
  4445. "bamarni/composer-bin-plugin": "^1.2",
  4446. "hoa/console": "3.17.*"
  4447. },
  4448. "suggest": {
  4449. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4450. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4451. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4452. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4453. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4454. },
  4455. "bin": [
  4456. "bin/psysh"
  4457. ],
  4458. "type": "library",
  4459. "extra": {
  4460. "branch-alias": {
  4461. "dev-master": "0.10.x-dev"
  4462. }
  4463. },
  4464. "autoload": {
  4465. "files": [
  4466. "src/functions.php"
  4467. ],
  4468. "psr-4": {
  4469. "Psy\\": "src/"
  4470. }
  4471. },
  4472. "notification-url": "https://packagist.org/downloads/",
  4473. "license": [
  4474. "MIT"
  4475. ],
  4476. "authors": [
  4477. {
  4478. "name": "Justin Hileman",
  4479. "email": "justin@justinhileman.info",
  4480. "homepage": "http://justinhileman.com"
  4481. }
  4482. ],
  4483. "description": "An interactive shell for modern PHP.",
  4484. "homepage": "http://psysh.org",
  4485. "keywords": [
  4486. "REPL",
  4487. "console",
  4488. "interactive",
  4489. "shell"
  4490. ],
  4491. "time": "2020-05-03T19:32:03+00:00"
  4492. },
  4493. {
  4494. "name": "ralouphie/getallheaders",
  4495. "version": "3.0.3",
  4496. "source": {
  4497. "type": "git",
  4498. "url": "https://github.com/ralouphie/getallheaders.git",
  4499. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4500. },
  4501. "dist": {
  4502. "type": "zip",
  4503. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4504. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4505. "shasum": ""
  4506. },
  4507. "require": {
  4508. "php": ">=5.6"
  4509. },
  4510. "require-dev": {
  4511. "php-coveralls/php-coveralls": "^2.1",
  4512. "phpunit/phpunit": "^5 || ^6.5"
  4513. },
  4514. "type": "library",
  4515. "autoload": {
  4516. "files": [
  4517. "src/getallheaders.php"
  4518. ]
  4519. },
  4520. "notification-url": "https://packagist.org/downloads/",
  4521. "license": [
  4522. "MIT"
  4523. ],
  4524. "authors": [
  4525. {
  4526. "name": "Ralph Khattar",
  4527. "email": "ralph.khattar@gmail.com"
  4528. }
  4529. ],
  4530. "description": "A polyfill for getallheaders.",
  4531. "time": "2019-03-08T08:55:37+00:00"
  4532. },
  4533. {
  4534. "name": "stack/builder",
  4535. "version": "v1.0.5",
  4536. "source": {
  4537. "type": "git",
  4538. "url": "https://github.com/stackphp/builder.git",
  4539. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  4540. },
  4541. "dist": {
  4542. "type": "zip",
  4543. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  4544. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  4545. "shasum": ""
  4546. },
  4547. "require": {
  4548. "php": ">=5.3.0",
  4549. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  4550. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  4551. },
  4552. "require-dev": {
  4553. "silex/silex": "~1.0"
  4554. },
  4555. "type": "library",
  4556. "extra": {
  4557. "branch-alias": {
  4558. "dev-master": "1.0-dev"
  4559. }
  4560. },
  4561. "autoload": {
  4562. "psr-0": {
  4563. "Stack": "src"
  4564. }
  4565. },
  4566. "notification-url": "https://packagist.org/downloads/",
  4567. "license": [
  4568. "MIT"
  4569. ],
  4570. "authors": [
  4571. {
  4572. "name": "Igor Wiedler",
  4573. "email": "igor@wiedler.ch"
  4574. }
  4575. ],
  4576. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  4577. "keywords": [
  4578. "stack"
  4579. ],
  4580. "time": "2017-11-18T14:57:29+00:00"
  4581. },
  4582. {
  4583. "name": "symfony-cmf/routing",
  4584. "version": "1.4.1",
  4585. "source": {
  4586. "type": "git",
  4587. "url": "https://github.com/symfony-cmf/routing.git",
  4588. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  4589. },
  4590. "dist": {
  4591. "type": "zip",
  4592. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  4593. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  4594. "shasum": ""
  4595. },
  4596. "require": {
  4597. "php": "^5.3.9|^7.0",
  4598. "psr/log": "1.*",
  4599. "symfony/http-kernel": "^2.2|3.*",
  4600. "symfony/routing": "^2.2|3.*"
  4601. },
  4602. "require-dev": {
  4603. "friendsofsymfony/jsrouting-bundle": "^1.1",
  4604. "symfony-cmf/testing": "^1.3",
  4605. "symfony/config": "^2.2|3.*",
  4606. "symfony/dependency-injection": "^2.0.5|3.*",
  4607. "symfony/event-dispatcher": "^2.1|3.*"
  4608. },
  4609. "suggest": {
  4610. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  4611. },
  4612. "type": "library",
  4613. "extra": {
  4614. "branch-alias": {
  4615. "dev-master": "1.4-dev"
  4616. }
  4617. },
  4618. "autoload": {
  4619. "psr-4": {
  4620. "Symfony\\Cmf\\Component\\Routing\\": ""
  4621. }
  4622. },
  4623. "notification-url": "https://packagist.org/downloads/",
  4624. "license": [
  4625. "MIT"
  4626. ],
  4627. "authors": [
  4628. {
  4629. "name": "Symfony CMF Community",
  4630. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  4631. }
  4632. ],
  4633. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  4634. "homepage": "http://cmf.symfony.com",
  4635. "keywords": [
  4636. "database",
  4637. "routing"
  4638. ],
  4639. "time": "2017-05-09T08:10:41+00:00"
  4640. },
  4641. {
  4642. "name": "symfony/class-loader",
  4643. "version": "v3.4.41",
  4644. "source": {
  4645. "type": "git",
  4646. "url": "https://github.com/symfony/class-loader.git",
  4647. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  4648. },
  4649. "dist": {
  4650. "type": "zip",
  4651. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  4652. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  4653. "shasum": ""
  4654. },
  4655. "require": {
  4656. "php": "^5.5.9|>=7.0.8"
  4657. },
  4658. "require-dev": {
  4659. "symfony/finder": "~2.8|~3.0|~4.0",
  4660. "symfony/polyfill-apcu": "~1.1"
  4661. },
  4662. "suggest": {
  4663. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  4664. },
  4665. "type": "library",
  4666. "extra": {
  4667. "branch-alias": {
  4668. "dev-master": "3.4-dev"
  4669. }
  4670. },
  4671. "autoload": {
  4672. "psr-4": {
  4673. "Symfony\\Component\\ClassLoader\\": ""
  4674. },
  4675. "exclude-from-classmap": [
  4676. "/Tests/"
  4677. ]
  4678. },
  4679. "notification-url": "https://packagist.org/downloads/",
  4680. "license": [
  4681. "MIT"
  4682. ],
  4683. "authors": [
  4684. {
  4685. "name": "Fabien Potencier",
  4686. "email": "fabien@symfony.com"
  4687. },
  4688. {
  4689. "name": "Symfony Community",
  4690. "homepage": "https://symfony.com/contributors"
  4691. }
  4692. ],
  4693. "description": "Symfony ClassLoader Component",
  4694. "homepage": "https://symfony.com",
  4695. "funding": [
  4696. {
  4697. "url": "https://symfony.com/sponsor",
  4698. "type": "custom"
  4699. },
  4700. {
  4701. "url": "https://github.com/fabpot",
  4702. "type": "github"
  4703. },
  4704. {
  4705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4706. "type": "tidelift"
  4707. }
  4708. ],
  4709. "time": "2020-03-15T09:38:08+00:00"
  4710. },
  4711. {
  4712. "name": "symfony/console",
  4713. "version": "v3.4.41",
  4714. "source": {
  4715. "type": "git",
  4716. "url": "https://github.com/symfony/console.git",
  4717. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  4718. },
  4719. "dist": {
  4720. "type": "zip",
  4721. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  4722. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  4723. "shasum": ""
  4724. },
  4725. "require": {
  4726. "php": "^5.5.9|>=7.0.8",
  4727. "symfony/debug": "~2.8|~3.0|~4.0",
  4728. "symfony/polyfill-mbstring": "~1.0"
  4729. },
  4730. "conflict": {
  4731. "symfony/dependency-injection": "<3.4",
  4732. "symfony/process": "<3.3"
  4733. },
  4734. "provide": {
  4735. "psr/log-implementation": "1.0"
  4736. },
  4737. "require-dev": {
  4738. "psr/log": "~1.0",
  4739. "symfony/config": "~3.3|~4.0",
  4740. "symfony/dependency-injection": "~3.4|~4.0",
  4741. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  4742. "symfony/lock": "~3.4|~4.0",
  4743. "symfony/process": "~3.3|~4.0"
  4744. },
  4745. "suggest": {
  4746. "psr/log": "For using the console logger",
  4747. "symfony/event-dispatcher": "",
  4748. "symfony/lock": "",
  4749. "symfony/process": ""
  4750. },
  4751. "type": "library",
  4752. "extra": {
  4753. "branch-alias": {
  4754. "dev-master": "3.4-dev"
  4755. }
  4756. },
  4757. "autoload": {
  4758. "psr-4": {
  4759. "Symfony\\Component\\Console\\": ""
  4760. },
  4761. "exclude-from-classmap": [
  4762. "/Tests/"
  4763. ]
  4764. },
  4765. "notification-url": "https://packagist.org/downloads/",
  4766. "license": [
  4767. "MIT"
  4768. ],
  4769. "authors": [
  4770. {
  4771. "name": "Fabien Potencier",
  4772. "email": "fabien@symfony.com"
  4773. },
  4774. {
  4775. "name": "Symfony Community",
  4776. "homepage": "https://symfony.com/contributors"
  4777. }
  4778. ],
  4779. "description": "Symfony Console Component",
  4780. "homepage": "https://symfony.com",
  4781. "funding": [
  4782. {
  4783. "url": "https://symfony.com/sponsor",
  4784. "type": "custom"
  4785. },
  4786. {
  4787. "url": "https://github.com/fabpot",
  4788. "type": "github"
  4789. },
  4790. {
  4791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4792. "type": "tidelift"
  4793. }
  4794. ],
  4795. "time": "2020-05-30T18:58:05+00:00"
  4796. },
  4797. {
  4798. "name": "symfony/debug",
  4799. "version": "v3.4.41",
  4800. "source": {
  4801. "type": "git",
  4802. "url": "https://github.com/symfony/debug.git",
  4803. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  4804. },
  4805. "dist": {
  4806. "type": "zip",
  4807. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  4808. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  4809. "shasum": ""
  4810. },
  4811. "require": {
  4812. "php": "^5.5.9|>=7.0.8",
  4813. "psr/log": "~1.0"
  4814. },
  4815. "conflict": {
  4816. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  4817. },
  4818. "require-dev": {
  4819. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  4820. },
  4821. "type": "library",
  4822. "extra": {
  4823. "branch-alias": {
  4824. "dev-master": "3.4-dev"
  4825. }
  4826. },
  4827. "autoload": {
  4828. "psr-4": {
  4829. "Symfony\\Component\\Debug\\": ""
  4830. },
  4831. "exclude-from-classmap": [
  4832. "/Tests/"
  4833. ]
  4834. },
  4835. "notification-url": "https://packagist.org/downloads/",
  4836. "license": [
  4837. "MIT"
  4838. ],
  4839. "authors": [
  4840. {
  4841. "name": "Fabien Potencier",
  4842. "email": "fabien@symfony.com"
  4843. },
  4844. {
  4845. "name": "Symfony Community",
  4846. "homepage": "https://symfony.com/contributors"
  4847. }
  4848. ],
  4849. "description": "Symfony Debug Component",
  4850. "homepage": "https://symfony.com",
  4851. "funding": [
  4852. {
  4853. "url": "https://symfony.com/sponsor",
  4854. "type": "custom"
  4855. },
  4856. {
  4857. "url": "https://github.com/fabpot",
  4858. "type": "github"
  4859. },
  4860. {
  4861. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4862. "type": "tidelift"
  4863. }
  4864. ],
  4865. "time": "2020-05-22T18:25:20+00:00"
  4866. },
  4867. {
  4868. "name": "symfony/dependency-injection",
  4869. "version": "v3.4.41",
  4870. "source": {
  4871. "type": "git",
  4872. "url": "https://github.com/symfony/dependency-injection.git",
  4873. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  4874. },
  4875. "dist": {
  4876. "type": "zip",
  4877. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  4878. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  4879. "shasum": ""
  4880. },
  4881. "require": {
  4882. "php": "^5.5.9|>=7.0.8",
  4883. "psr/container": "^1.0"
  4884. },
  4885. "conflict": {
  4886. "symfony/config": "<3.3.7",
  4887. "symfony/finder": "<3.3",
  4888. "symfony/proxy-manager-bridge": "<3.4",
  4889. "symfony/yaml": "<3.4"
  4890. },
  4891. "provide": {
  4892. "psr/container-implementation": "1.0"
  4893. },
  4894. "require-dev": {
  4895. "symfony/config": "~3.3|~4.0",
  4896. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4897. "symfony/yaml": "~3.4|~4.0"
  4898. },
  4899. "suggest": {
  4900. "symfony/config": "",
  4901. "symfony/expression-language": "For using expressions in service container configuration",
  4902. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  4903. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  4904. "symfony/yaml": ""
  4905. },
  4906. "type": "library",
  4907. "extra": {
  4908. "branch-alias": {
  4909. "dev-master": "3.4-dev"
  4910. }
  4911. },
  4912. "autoload": {
  4913. "psr-4": {
  4914. "Symfony\\Component\\DependencyInjection\\": ""
  4915. },
  4916. "exclude-from-classmap": [
  4917. "/Tests/"
  4918. ]
  4919. },
  4920. "notification-url": "https://packagist.org/downloads/",
  4921. "license": [
  4922. "MIT"
  4923. ],
  4924. "authors": [
  4925. {
  4926. "name": "Fabien Potencier",
  4927. "email": "fabien@symfony.com"
  4928. },
  4929. {
  4930. "name": "Symfony Community",
  4931. "homepage": "https://symfony.com/contributors"
  4932. }
  4933. ],
  4934. "description": "Symfony DependencyInjection Component",
  4935. "homepage": "https://symfony.com",
  4936. "funding": [
  4937. {
  4938. "url": "https://symfony.com/sponsor",
  4939. "type": "custom"
  4940. },
  4941. {
  4942. "url": "https://github.com/fabpot",
  4943. "type": "github"
  4944. },
  4945. {
  4946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4947. "type": "tidelift"
  4948. }
  4949. ],
  4950. "time": "2020-05-30T21:06:01+00:00"
  4951. },
  4952. {
  4953. "name": "symfony/event-dispatcher",
  4954. "version": "v3.4.41",
  4955. "source": {
  4956. "type": "git",
  4957. "url": "https://github.com/symfony/event-dispatcher.git",
  4958. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  4959. },
  4960. "dist": {
  4961. "type": "zip",
  4962. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  4963. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  4964. "shasum": ""
  4965. },
  4966. "require": {
  4967. "php": "^5.5.9|>=7.0.8"
  4968. },
  4969. "conflict": {
  4970. "symfony/dependency-injection": "<3.3"
  4971. },
  4972. "require-dev": {
  4973. "psr/log": "~1.0",
  4974. "symfony/config": "~2.8|~3.0|~4.0",
  4975. "symfony/dependency-injection": "~3.3|~4.0",
  4976. "symfony/expression-language": "~2.8|~3.0|~4.0",
  4977. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  4978. },
  4979. "suggest": {
  4980. "symfony/dependency-injection": "",
  4981. "symfony/http-kernel": ""
  4982. },
  4983. "type": "library",
  4984. "extra": {
  4985. "branch-alias": {
  4986. "dev-master": "3.4-dev"
  4987. }
  4988. },
  4989. "autoload": {
  4990. "psr-4": {
  4991. "Symfony\\Component\\EventDispatcher\\": ""
  4992. },
  4993. "exclude-from-classmap": [
  4994. "/Tests/"
  4995. ]
  4996. },
  4997. "notification-url": "https://packagist.org/downloads/",
  4998. "license": [
  4999. "MIT"
  5000. ],
  5001. "authors": [
  5002. {
  5003. "name": "Fabien Potencier",
  5004. "email": "fabien@symfony.com"
  5005. },
  5006. {
  5007. "name": "Symfony Community",
  5008. "homepage": "https://symfony.com/contributors"
  5009. }
  5010. ],
  5011. "description": "Symfony EventDispatcher Component",
  5012. "homepage": "https://symfony.com",
  5013. "funding": [
  5014. {
  5015. "url": "https://symfony.com/sponsor",
  5016. "type": "custom"
  5017. },
  5018. {
  5019. "url": "https://github.com/fabpot",
  5020. "type": "github"
  5021. },
  5022. {
  5023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5024. "type": "tidelift"
  5025. }
  5026. ],
  5027. "time": "2020-05-05T15:06:23+00:00"
  5028. },
  5029. {
  5030. "name": "symfony/filesystem",
  5031. "version": "v4.4.9",
  5032. "source": {
  5033. "type": "git",
  5034. "url": "https://github.com/symfony/filesystem.git",
  5035. "reference": "b27f491309db5757816db672b256ea2e03677d30"
  5036. },
  5037. "dist": {
  5038. "type": "zip",
  5039. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30",
  5040. "reference": "b27f491309db5757816db672b256ea2e03677d30",
  5041. "shasum": ""
  5042. },
  5043. "require": {
  5044. "php": ">=7.1.3",
  5045. "symfony/polyfill-ctype": "~1.8"
  5046. },
  5047. "type": "library",
  5048. "extra": {
  5049. "branch-alias": {
  5050. "dev-master": "4.4-dev"
  5051. }
  5052. },
  5053. "autoload": {
  5054. "psr-4": {
  5055. "Symfony\\Component\\Filesystem\\": ""
  5056. },
  5057. "exclude-from-classmap": [
  5058. "/Tests/"
  5059. ]
  5060. },
  5061. "notification-url": "https://packagist.org/downloads/",
  5062. "license": [
  5063. "MIT"
  5064. ],
  5065. "authors": [
  5066. {
  5067. "name": "Fabien Potencier",
  5068. "email": "fabien@symfony.com"
  5069. },
  5070. {
  5071. "name": "Symfony Community",
  5072. "homepage": "https://symfony.com/contributors"
  5073. }
  5074. ],
  5075. "description": "Symfony Filesystem Component",
  5076. "homepage": "https://symfony.com",
  5077. "funding": [
  5078. {
  5079. "url": "https://symfony.com/sponsor",
  5080. "type": "custom"
  5081. },
  5082. {
  5083. "url": "https://github.com/fabpot",
  5084. "type": "github"
  5085. },
  5086. {
  5087. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5088. "type": "tidelift"
  5089. }
  5090. ],
  5091. "time": "2020-05-30T18:50:54+00:00"
  5092. },
  5093. {
  5094. "name": "symfony/finder",
  5095. "version": "v4.4.9",
  5096. "source": {
  5097. "type": "git",
  5098. "url": "https://github.com/symfony/finder.git",
  5099. "reference": "5729f943f9854c5781984ed4907bbb817735776b"
  5100. },
  5101. "dist": {
  5102. "type": "zip",
  5103. "url": "https://api.github.com/repos/symfony/finder/zipball/5729f943f9854c5781984ed4907bbb817735776b",
  5104. "reference": "5729f943f9854c5781984ed4907bbb817735776b",
  5105. "shasum": ""
  5106. },
  5107. "require": {
  5108. "php": "^7.1.3"
  5109. },
  5110. "type": "library",
  5111. "extra": {
  5112. "branch-alias": {
  5113. "dev-master": "4.4-dev"
  5114. }
  5115. },
  5116. "autoload": {
  5117. "psr-4": {
  5118. "Symfony\\Component\\Finder\\": ""
  5119. },
  5120. "exclude-from-classmap": [
  5121. "/Tests/"
  5122. ]
  5123. },
  5124. "notification-url": "https://packagist.org/downloads/",
  5125. "license": [
  5126. "MIT"
  5127. ],
  5128. "authors": [
  5129. {
  5130. "name": "Fabien Potencier",
  5131. "email": "fabien@symfony.com"
  5132. },
  5133. {
  5134. "name": "Symfony Community",
  5135. "homepage": "https://symfony.com/contributors"
  5136. }
  5137. ],
  5138. "description": "Symfony Finder Component",
  5139. "homepage": "https://symfony.com",
  5140. "funding": [
  5141. {
  5142. "url": "https://symfony.com/sponsor",
  5143. "type": "custom"
  5144. },
  5145. {
  5146. "url": "https://github.com/fabpot",
  5147. "type": "github"
  5148. },
  5149. {
  5150. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5151. "type": "tidelift"
  5152. }
  5153. ],
  5154. "time": "2020-03-27T16:54:36+00:00"
  5155. },
  5156. {
  5157. "name": "symfony/http-foundation",
  5158. "version": "v3.4.41",
  5159. "source": {
  5160. "type": "git",
  5161. "url": "https://github.com/symfony/http-foundation.git",
  5162. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  5163. },
  5164. "dist": {
  5165. "type": "zip",
  5166. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  5167. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  5168. "shasum": ""
  5169. },
  5170. "require": {
  5171. "php": "^5.5.9|>=7.0.8",
  5172. "symfony/polyfill-mbstring": "~1.1",
  5173. "symfony/polyfill-php70": "~1.6"
  5174. },
  5175. "require-dev": {
  5176. "symfony/expression-language": "~2.8|~3.0|~4.0"
  5177. },
  5178. "type": "library",
  5179. "extra": {
  5180. "branch-alias": {
  5181. "dev-master": "3.4-dev"
  5182. }
  5183. },
  5184. "autoload": {
  5185. "psr-4": {
  5186. "Symfony\\Component\\HttpFoundation\\": ""
  5187. },
  5188. "exclude-from-classmap": [
  5189. "/Tests/"
  5190. ]
  5191. },
  5192. "notification-url": "https://packagist.org/downloads/",
  5193. "license": [
  5194. "MIT"
  5195. ],
  5196. "authors": [
  5197. {
  5198. "name": "Fabien Potencier",
  5199. "email": "fabien@symfony.com"
  5200. },
  5201. {
  5202. "name": "Symfony Community",
  5203. "homepage": "https://symfony.com/contributors"
  5204. }
  5205. ],
  5206. "description": "Symfony HttpFoundation Component",
  5207. "homepage": "https://symfony.com",
  5208. "funding": [
  5209. {
  5210. "url": "https://symfony.com/sponsor",
  5211. "type": "custom"
  5212. },
  5213. {
  5214. "url": "https://github.com/fabpot",
  5215. "type": "github"
  5216. },
  5217. {
  5218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5219. "type": "tidelift"
  5220. }
  5221. ],
  5222. "time": "2020-05-16T13:15:54+00:00"
  5223. },
  5224. {
  5225. "name": "symfony/http-kernel",
  5226. "version": "v3.4.41",
  5227. "source": {
  5228. "type": "git",
  5229. "url": "https://github.com/symfony/http-kernel.git",
  5230. "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df"
  5231. },
  5232. "dist": {
  5233. "type": "zip",
  5234. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e4e4ed6c008c983645b4eee6b67d8f258cde54df",
  5235. "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df",
  5236. "shasum": ""
  5237. },
  5238. "require": {
  5239. "php": "^5.5.9|>=7.0.8",
  5240. "psr/log": "~1.0",
  5241. "symfony/debug": "^3.3.3|~4.0",
  5242. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  5243. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  5244. "symfony/polyfill-ctype": "~1.8",
  5245. "symfony/polyfill-php56": "~1.8"
  5246. },
  5247. "conflict": {
  5248. "symfony/config": "<2.8",
  5249. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  5250. "symfony/var-dumper": "<3.3",
  5251. "twig/twig": "<1.34|<2.4,>=2"
  5252. },
  5253. "provide": {
  5254. "psr/log-implementation": "1.0"
  5255. },
  5256. "require-dev": {
  5257. "psr/cache": "~1.0",
  5258. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  5259. "symfony/class-loader": "~2.8|~3.0",
  5260. "symfony/config": "~2.8|~3.0|~4.0",
  5261. "symfony/console": "~2.8|~3.0|~4.0",
  5262. "symfony/css-selector": "~2.8|~3.0|~4.0",
  5263. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  5264. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  5265. "symfony/expression-language": "~2.8|~3.0|~4.0",
  5266. "symfony/finder": "~2.8|~3.0|~4.0",
  5267. "symfony/process": "~2.8|~3.0|~4.0",
  5268. "symfony/routing": "~3.4|~4.0",
  5269. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  5270. "symfony/templating": "~2.8|~3.0|~4.0",
  5271. "symfony/translation": "~2.8|~3.0|~4.0",
  5272. "symfony/var-dumper": "~3.3|~4.0"
  5273. },
  5274. "suggest": {
  5275. "symfony/browser-kit": "",
  5276. "symfony/config": "",
  5277. "symfony/console": "",
  5278. "symfony/dependency-injection": "",
  5279. "symfony/finder": "",
  5280. "symfony/var-dumper": ""
  5281. },
  5282. "type": "library",
  5283. "extra": {
  5284. "branch-alias": {
  5285. "dev-master": "3.4-dev"
  5286. }
  5287. },
  5288. "autoload": {
  5289. "psr-4": {
  5290. "Symfony\\Component\\HttpKernel\\": ""
  5291. },
  5292. "exclude-from-classmap": [
  5293. "/Tests/"
  5294. ]
  5295. },
  5296. "notification-url": "https://packagist.org/downloads/",
  5297. "license": [
  5298. "MIT"
  5299. ],
  5300. "authors": [
  5301. {
  5302. "name": "Fabien Potencier",
  5303. "email": "fabien@symfony.com"
  5304. },
  5305. {
  5306. "name": "Symfony Community",
  5307. "homepage": "https://symfony.com/contributors"
  5308. }
  5309. ],
  5310. "description": "Symfony HttpKernel Component",
  5311. "homepage": "https://symfony.com",
  5312. "funding": [
  5313. {
  5314. "url": "https://symfony.com/sponsor",
  5315. "type": "custom"
  5316. },
  5317. {
  5318. "url": "https://github.com/fabpot",
  5319. "type": "github"
  5320. },
  5321. {
  5322. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5323. "type": "tidelift"
  5324. }
  5325. ],
  5326. "time": "2020-05-31T05:14:17+00:00"
  5327. },
  5328. {
  5329. "name": "symfony/polyfill-ctype",
  5330. "version": "v1.17.0",
  5331. "source": {
  5332. "type": "git",
  5333. "url": "https://github.com/symfony/polyfill-ctype.git",
  5334. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  5335. },
  5336. "dist": {
  5337. "type": "zip",
  5338. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  5339. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  5340. "shasum": ""
  5341. },
  5342. "require": {
  5343. "php": ">=5.3.3"
  5344. },
  5345. "suggest": {
  5346. "ext-ctype": "For best performance"
  5347. },
  5348. "type": "library",
  5349. "extra": {
  5350. "branch-alias": {
  5351. "dev-master": "1.17-dev"
  5352. }
  5353. },
  5354. "autoload": {
  5355. "psr-4": {
  5356. "Symfony\\Polyfill\\Ctype\\": ""
  5357. },
  5358. "files": [
  5359. "bootstrap.php"
  5360. ]
  5361. },
  5362. "notification-url": "https://packagist.org/downloads/",
  5363. "license": [
  5364. "MIT"
  5365. ],
  5366. "authors": [
  5367. {
  5368. "name": "Gert de Pagter",
  5369. "email": "BackEndTea@gmail.com"
  5370. },
  5371. {
  5372. "name": "Symfony Community",
  5373. "homepage": "https://symfony.com/contributors"
  5374. }
  5375. ],
  5376. "description": "Symfony polyfill for ctype functions",
  5377. "homepage": "https://symfony.com",
  5378. "keywords": [
  5379. "compatibility",
  5380. "ctype",
  5381. "polyfill",
  5382. "portable"
  5383. ],
  5384. "funding": [
  5385. {
  5386. "url": "https://symfony.com/sponsor",
  5387. "type": "custom"
  5388. },
  5389. {
  5390. "url": "https://github.com/fabpot",
  5391. "type": "github"
  5392. },
  5393. {
  5394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5395. "type": "tidelift"
  5396. }
  5397. ],
  5398. "time": "2020-05-12T16:14:59+00:00"
  5399. },
  5400. {
  5401. "name": "symfony/polyfill-iconv",
  5402. "version": "v1.17.0",
  5403. "source": {
  5404. "type": "git",
  5405. "url": "https://github.com/symfony/polyfill-iconv.git",
  5406. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  5407. },
  5408. "dist": {
  5409. "type": "zip",
  5410. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  5411. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  5412. "shasum": ""
  5413. },
  5414. "require": {
  5415. "php": ">=5.3.3"
  5416. },
  5417. "suggest": {
  5418. "ext-iconv": "For best performance"
  5419. },
  5420. "type": "library",
  5421. "extra": {
  5422. "branch-alias": {
  5423. "dev-master": "1.17-dev"
  5424. }
  5425. },
  5426. "autoload": {
  5427. "psr-4": {
  5428. "Symfony\\Polyfill\\Iconv\\": ""
  5429. },
  5430. "files": [
  5431. "bootstrap.php"
  5432. ]
  5433. },
  5434. "notification-url": "https://packagist.org/downloads/",
  5435. "license": [
  5436. "MIT"
  5437. ],
  5438. "authors": [
  5439. {
  5440. "name": "Nicolas Grekas",
  5441. "email": "p@tchwork.com"
  5442. },
  5443. {
  5444. "name": "Symfony Community",
  5445. "homepage": "https://symfony.com/contributors"
  5446. }
  5447. ],
  5448. "description": "Symfony polyfill for the Iconv extension",
  5449. "homepage": "https://symfony.com",
  5450. "keywords": [
  5451. "compatibility",
  5452. "iconv",
  5453. "polyfill",
  5454. "portable",
  5455. "shim"
  5456. ],
  5457. "funding": [
  5458. {
  5459. "url": "https://symfony.com/sponsor",
  5460. "type": "custom"
  5461. },
  5462. {
  5463. "url": "https://github.com/fabpot",
  5464. "type": "github"
  5465. },
  5466. {
  5467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5468. "type": "tidelift"
  5469. }
  5470. ],
  5471. "time": "2020-05-12T16:47:27+00:00"
  5472. },
  5473. {
  5474. "name": "symfony/polyfill-intl-idn",
  5475. "version": "v1.17.0",
  5476. "source": {
  5477. "type": "git",
  5478. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5479. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  5480. },
  5481. "dist": {
  5482. "type": "zip",
  5483. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  5484. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  5485. "shasum": ""
  5486. },
  5487. "require": {
  5488. "php": ">=5.3.3",
  5489. "symfony/polyfill-mbstring": "^1.3",
  5490. "symfony/polyfill-php72": "^1.10"
  5491. },
  5492. "suggest": {
  5493. "ext-intl": "For best performance"
  5494. },
  5495. "type": "library",
  5496. "extra": {
  5497. "branch-alias": {
  5498. "dev-master": "1.17-dev"
  5499. }
  5500. },
  5501. "autoload": {
  5502. "psr-4": {
  5503. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5504. },
  5505. "files": [
  5506. "bootstrap.php"
  5507. ]
  5508. },
  5509. "notification-url": "https://packagist.org/downloads/",
  5510. "license": [
  5511. "MIT"
  5512. ],
  5513. "authors": [
  5514. {
  5515. "name": "Laurent Bassin",
  5516. "email": "laurent@bassin.info"
  5517. },
  5518. {
  5519. "name": "Symfony Community",
  5520. "homepage": "https://symfony.com/contributors"
  5521. }
  5522. ],
  5523. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5524. "homepage": "https://symfony.com",
  5525. "keywords": [
  5526. "compatibility",
  5527. "idn",
  5528. "intl",
  5529. "polyfill",
  5530. "portable",
  5531. "shim"
  5532. ],
  5533. "funding": [
  5534. {
  5535. "url": "https://symfony.com/sponsor",
  5536. "type": "custom"
  5537. },
  5538. {
  5539. "url": "https://github.com/fabpot",
  5540. "type": "github"
  5541. },
  5542. {
  5543. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5544. "type": "tidelift"
  5545. }
  5546. ],
  5547. "time": "2020-05-12T16:47:27+00:00"
  5548. },
  5549. {
  5550. "name": "symfony/polyfill-mbstring",
  5551. "version": "v1.17.0",
  5552. "source": {
  5553. "type": "git",
  5554. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5555. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  5556. },
  5557. "dist": {
  5558. "type": "zip",
  5559. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  5560. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  5561. "shasum": ""
  5562. },
  5563. "require": {
  5564. "php": ">=5.3.3"
  5565. },
  5566. "suggest": {
  5567. "ext-mbstring": "For best performance"
  5568. },
  5569. "type": "library",
  5570. "extra": {
  5571. "branch-alias": {
  5572. "dev-master": "1.17-dev"
  5573. }
  5574. },
  5575. "autoload": {
  5576. "psr-4": {
  5577. "Symfony\\Polyfill\\Mbstring\\": ""
  5578. },
  5579. "files": [
  5580. "bootstrap.php"
  5581. ]
  5582. },
  5583. "notification-url": "https://packagist.org/downloads/",
  5584. "license": [
  5585. "MIT"
  5586. ],
  5587. "authors": [
  5588. {
  5589. "name": "Nicolas Grekas",
  5590. "email": "p@tchwork.com"
  5591. },
  5592. {
  5593. "name": "Symfony Community",
  5594. "homepage": "https://symfony.com/contributors"
  5595. }
  5596. ],
  5597. "description": "Symfony polyfill for the Mbstring extension",
  5598. "homepage": "https://symfony.com",
  5599. "keywords": [
  5600. "compatibility",
  5601. "mbstring",
  5602. "polyfill",
  5603. "portable",
  5604. "shim"
  5605. ],
  5606. "funding": [
  5607. {
  5608. "url": "https://symfony.com/sponsor",
  5609. "type": "custom"
  5610. },
  5611. {
  5612. "url": "https://github.com/fabpot",
  5613. "type": "github"
  5614. },
  5615. {
  5616. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5617. "type": "tidelift"
  5618. }
  5619. ],
  5620. "time": "2020-05-12T16:47:27+00:00"
  5621. },
  5622. {
  5623. "name": "symfony/polyfill-php56",
  5624. "version": "v1.17.0",
  5625. "source": {
  5626. "type": "git",
  5627. "url": "https://github.com/symfony/polyfill-php56.git",
  5628. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  5629. },
  5630. "dist": {
  5631. "type": "zip",
  5632. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  5633. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  5634. "shasum": ""
  5635. },
  5636. "require": {
  5637. "php": ">=5.3.3",
  5638. "symfony/polyfill-util": "~1.0"
  5639. },
  5640. "type": "library",
  5641. "extra": {
  5642. "branch-alias": {
  5643. "dev-master": "1.17-dev"
  5644. }
  5645. },
  5646. "autoload": {
  5647. "psr-4": {
  5648. "Symfony\\Polyfill\\Php56\\": ""
  5649. },
  5650. "files": [
  5651. "bootstrap.php"
  5652. ]
  5653. },
  5654. "notification-url": "https://packagist.org/downloads/",
  5655. "license": [
  5656. "MIT"
  5657. ],
  5658. "authors": [
  5659. {
  5660. "name": "Nicolas Grekas",
  5661. "email": "p@tchwork.com"
  5662. },
  5663. {
  5664. "name": "Symfony Community",
  5665. "homepage": "https://symfony.com/contributors"
  5666. }
  5667. ],
  5668. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  5669. "homepage": "https://symfony.com",
  5670. "keywords": [
  5671. "compatibility",
  5672. "polyfill",
  5673. "portable",
  5674. "shim"
  5675. ],
  5676. "funding": [
  5677. {
  5678. "url": "https://symfony.com/sponsor",
  5679. "type": "custom"
  5680. },
  5681. {
  5682. "url": "https://github.com/fabpot",
  5683. "type": "github"
  5684. },
  5685. {
  5686. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5687. "type": "tidelift"
  5688. }
  5689. ],
  5690. "time": "2020-05-12T16:47:27+00:00"
  5691. },
  5692. {
  5693. "name": "symfony/polyfill-php70",
  5694. "version": "v1.17.0",
  5695. "source": {
  5696. "type": "git",
  5697. "url": "https://github.com/symfony/polyfill-php70.git",
  5698. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  5699. },
  5700. "dist": {
  5701. "type": "zip",
  5702. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  5703. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  5704. "shasum": ""
  5705. },
  5706. "require": {
  5707. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  5708. "php": ">=5.3.3"
  5709. },
  5710. "type": "library",
  5711. "extra": {
  5712. "branch-alias": {
  5713. "dev-master": "1.17-dev"
  5714. }
  5715. },
  5716. "autoload": {
  5717. "psr-4": {
  5718. "Symfony\\Polyfill\\Php70\\": ""
  5719. },
  5720. "files": [
  5721. "bootstrap.php"
  5722. ],
  5723. "classmap": [
  5724. "Resources/stubs"
  5725. ]
  5726. },
  5727. "notification-url": "https://packagist.org/downloads/",
  5728. "license": [
  5729. "MIT"
  5730. ],
  5731. "authors": [
  5732. {
  5733. "name": "Nicolas Grekas",
  5734. "email": "p@tchwork.com"
  5735. },
  5736. {
  5737. "name": "Symfony Community",
  5738. "homepage": "https://symfony.com/contributors"
  5739. }
  5740. ],
  5741. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  5742. "homepage": "https://symfony.com",
  5743. "keywords": [
  5744. "compatibility",
  5745. "polyfill",
  5746. "portable",
  5747. "shim"
  5748. ],
  5749. "funding": [
  5750. {
  5751. "url": "https://symfony.com/sponsor",
  5752. "type": "custom"
  5753. },
  5754. {
  5755. "url": "https://github.com/fabpot",
  5756. "type": "github"
  5757. },
  5758. {
  5759. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5760. "type": "tidelift"
  5761. }
  5762. ],
  5763. "time": "2020-05-12T16:47:27+00:00"
  5764. },
  5765. {
  5766. "name": "symfony/polyfill-php72",
  5767. "version": "v1.17.0",
  5768. "source": {
  5769. "type": "git",
  5770. "url": "https://github.com/symfony/polyfill-php72.git",
  5771. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  5772. },
  5773. "dist": {
  5774. "type": "zip",
  5775. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  5776. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  5777. "shasum": ""
  5778. },
  5779. "require": {
  5780. "php": ">=5.3.3"
  5781. },
  5782. "type": "library",
  5783. "extra": {
  5784. "branch-alias": {
  5785. "dev-master": "1.17-dev"
  5786. }
  5787. },
  5788. "autoload": {
  5789. "psr-4": {
  5790. "Symfony\\Polyfill\\Php72\\": ""
  5791. },
  5792. "files": [
  5793. "bootstrap.php"
  5794. ]
  5795. },
  5796. "notification-url": "https://packagist.org/downloads/",
  5797. "license": [
  5798. "MIT"
  5799. ],
  5800. "authors": [
  5801. {
  5802. "name": "Nicolas Grekas",
  5803. "email": "p@tchwork.com"
  5804. },
  5805. {
  5806. "name": "Symfony Community",
  5807. "homepage": "https://symfony.com/contributors"
  5808. }
  5809. ],
  5810. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5811. "homepage": "https://symfony.com",
  5812. "keywords": [
  5813. "compatibility",
  5814. "polyfill",
  5815. "portable",
  5816. "shim"
  5817. ],
  5818. "funding": [
  5819. {
  5820. "url": "https://symfony.com/sponsor",
  5821. "type": "custom"
  5822. },
  5823. {
  5824. "url": "https://github.com/fabpot",
  5825. "type": "github"
  5826. },
  5827. {
  5828. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5829. "type": "tidelift"
  5830. }
  5831. ],
  5832. "time": "2020-05-12T16:47:27+00:00"
  5833. },
  5834. {
  5835. "name": "symfony/polyfill-php80",
  5836. "version": "v1.17.0",
  5837. "source": {
  5838. "type": "git",
  5839. "url": "https://github.com/symfony/polyfill-php80.git",
  5840. "reference": "5e30b2799bc1ad68f7feb62b60a73743589438dd"
  5841. },
  5842. "dist": {
  5843. "type": "zip",
  5844. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/5e30b2799bc1ad68f7feb62b60a73743589438dd",
  5845. "reference": "5e30b2799bc1ad68f7feb62b60a73743589438dd",
  5846. "shasum": ""
  5847. },
  5848. "require": {
  5849. "php": ">=7.0.8"
  5850. },
  5851. "type": "library",
  5852. "extra": {
  5853. "branch-alias": {
  5854. "dev-master": "1.17-dev"
  5855. }
  5856. },
  5857. "autoload": {
  5858. "psr-4": {
  5859. "Symfony\\Polyfill\\Php80\\": ""
  5860. },
  5861. "files": [
  5862. "bootstrap.php"
  5863. ],
  5864. "classmap": [
  5865. "Resources/stubs"
  5866. ]
  5867. },
  5868. "notification-url": "https://packagist.org/downloads/",
  5869. "license": [
  5870. "MIT"
  5871. ],
  5872. "authors": [
  5873. {
  5874. "name": "Ion Bazan",
  5875. "email": "ion.bazan@gmail.com"
  5876. },
  5877. {
  5878. "name": "Nicolas Grekas",
  5879. "email": "p@tchwork.com"
  5880. },
  5881. {
  5882. "name": "Symfony Community",
  5883. "homepage": "https://symfony.com/contributors"
  5884. }
  5885. ],
  5886. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5887. "homepage": "https://symfony.com",
  5888. "keywords": [
  5889. "compatibility",
  5890. "polyfill",
  5891. "portable",
  5892. "shim"
  5893. ],
  5894. "funding": [
  5895. {
  5896. "url": "https://symfony.com/sponsor",
  5897. "type": "custom"
  5898. },
  5899. {
  5900. "url": "https://github.com/fabpot",
  5901. "type": "github"
  5902. },
  5903. {
  5904. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5905. "type": "tidelift"
  5906. }
  5907. ],
  5908. "time": "2020-05-12T16:47:27+00:00"
  5909. },
  5910. {
  5911. "name": "symfony/polyfill-util",
  5912. "version": "v1.17.0",
  5913. "source": {
  5914. "type": "git",
  5915. "url": "https://github.com/symfony/polyfill-util.git",
  5916. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  5917. },
  5918. "dist": {
  5919. "type": "zip",
  5920. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  5921. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  5922. "shasum": ""
  5923. },
  5924. "require": {
  5925. "php": ">=5.3.3"
  5926. },
  5927. "type": "library",
  5928. "extra": {
  5929. "branch-alias": {
  5930. "dev-master": "1.17-dev"
  5931. }
  5932. },
  5933. "autoload": {
  5934. "psr-4": {
  5935. "Symfony\\Polyfill\\Util\\": ""
  5936. }
  5937. },
  5938. "notification-url": "https://packagist.org/downloads/",
  5939. "license": [
  5940. "MIT"
  5941. ],
  5942. "authors": [
  5943. {
  5944. "name": "Nicolas Grekas",
  5945. "email": "p@tchwork.com"
  5946. },
  5947. {
  5948. "name": "Symfony Community",
  5949. "homepage": "https://symfony.com/contributors"
  5950. }
  5951. ],
  5952. "description": "Symfony utilities for portability of PHP codes",
  5953. "homepage": "https://symfony.com",
  5954. "keywords": [
  5955. "compat",
  5956. "compatibility",
  5957. "polyfill",
  5958. "shim"
  5959. ],
  5960. "funding": [
  5961. {
  5962. "url": "https://symfony.com/sponsor",
  5963. "type": "custom"
  5964. },
  5965. {
  5966. "url": "https://github.com/fabpot",
  5967. "type": "github"
  5968. },
  5969. {
  5970. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5971. "type": "tidelift"
  5972. }
  5973. ],
  5974. "time": "2020-05-12T16:14:59+00:00"
  5975. },
  5976. {
  5977. "name": "symfony/process",
  5978. "version": "v3.4.41",
  5979. "source": {
  5980. "type": "git",
  5981. "url": "https://github.com/symfony/process.git",
  5982. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  5983. },
  5984. "dist": {
  5985. "type": "zip",
  5986. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  5987. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  5988. "shasum": ""
  5989. },
  5990. "require": {
  5991. "php": "^5.5.9|>=7.0.8"
  5992. },
  5993. "type": "library",
  5994. "extra": {
  5995. "branch-alias": {
  5996. "dev-master": "3.4-dev"
  5997. }
  5998. },
  5999. "autoload": {
  6000. "psr-4": {
  6001. "Symfony\\Component\\Process\\": ""
  6002. },
  6003. "exclude-from-classmap": [
  6004. "/Tests/"
  6005. ]
  6006. },
  6007. "notification-url": "https://packagist.org/downloads/",
  6008. "license": [
  6009. "MIT"
  6010. ],
  6011. "authors": [
  6012. {
  6013. "name": "Fabien Potencier",
  6014. "email": "fabien@symfony.com"
  6015. },
  6016. {
  6017. "name": "Symfony Community",
  6018. "homepage": "https://symfony.com/contributors"
  6019. }
  6020. ],
  6021. "description": "Symfony Process Component",
  6022. "homepage": "https://symfony.com",
  6023. "funding": [
  6024. {
  6025. "url": "https://symfony.com/sponsor",
  6026. "type": "custom"
  6027. },
  6028. {
  6029. "url": "https://github.com/fabpot",
  6030. "type": "github"
  6031. },
  6032. {
  6033. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6034. "type": "tidelift"
  6035. }
  6036. ],
  6037. "time": "2020-05-23T17:05:51+00:00"
  6038. },
  6039. {
  6040. "name": "symfony/psr-http-message-bridge",
  6041. "version": "v1.1.2",
  6042. "source": {
  6043. "type": "git",
  6044. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6045. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  6046. },
  6047. "dist": {
  6048. "type": "zip",
  6049. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  6050. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  6051. "shasum": ""
  6052. },
  6053. "require": {
  6054. "php": "^5.3.3 || ^7.0",
  6055. "psr/http-message": "^1.0",
  6056. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  6057. },
  6058. "require-dev": {
  6059. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  6060. },
  6061. "suggest": {
  6062. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6063. },
  6064. "type": "symfony-bridge",
  6065. "extra": {
  6066. "branch-alias": {
  6067. "dev-master": "1.1-dev"
  6068. }
  6069. },
  6070. "autoload": {
  6071. "psr-4": {
  6072. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6073. },
  6074. "exclude-from-classmap": [
  6075. "/Tests/"
  6076. ]
  6077. },
  6078. "notification-url": "https://packagist.org/downloads/",
  6079. "license": [
  6080. "MIT"
  6081. ],
  6082. "authors": [
  6083. {
  6084. "name": "Symfony Community",
  6085. "homepage": "http://symfony.com/contributors"
  6086. },
  6087. {
  6088. "name": "Fabien Potencier",
  6089. "email": "fabien@symfony.com"
  6090. }
  6091. ],
  6092. "description": "PSR HTTP message bridge",
  6093. "homepage": "http://symfony.com",
  6094. "keywords": [
  6095. "http",
  6096. "http-message",
  6097. "psr-17",
  6098. "psr-7"
  6099. ],
  6100. "time": "2019-04-03T17:09:40+00:00"
  6101. },
  6102. {
  6103. "name": "symfony/routing",
  6104. "version": "v3.4.41",
  6105. "source": {
  6106. "type": "git",
  6107. "url": "https://github.com/symfony/routing.git",
  6108. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  6109. },
  6110. "dist": {
  6111. "type": "zip",
  6112. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  6113. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  6114. "shasum": ""
  6115. },
  6116. "require": {
  6117. "php": "^5.5.9|>=7.0.8"
  6118. },
  6119. "conflict": {
  6120. "symfony/config": "<3.3.1",
  6121. "symfony/dependency-injection": "<3.3",
  6122. "symfony/yaml": "<3.4"
  6123. },
  6124. "require-dev": {
  6125. "doctrine/annotations": "~1.0",
  6126. "psr/log": "~1.0",
  6127. "symfony/config": "^3.3.1|~4.0",
  6128. "symfony/dependency-injection": "~3.3|~4.0",
  6129. "symfony/expression-language": "~2.8|~3.0|~4.0",
  6130. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  6131. "symfony/yaml": "~3.4|~4.0"
  6132. },
  6133. "suggest": {
  6134. "doctrine/annotations": "For using the annotation loader",
  6135. "symfony/config": "For using the all-in-one router or any loader",
  6136. "symfony/expression-language": "For using expression matching",
  6137. "symfony/http-foundation": "For using a Symfony Request object",
  6138. "symfony/yaml": "For using the YAML loader"
  6139. },
  6140. "type": "library",
  6141. "extra": {
  6142. "branch-alias": {
  6143. "dev-master": "3.4-dev"
  6144. }
  6145. },
  6146. "autoload": {
  6147. "psr-4": {
  6148. "Symfony\\Component\\Routing\\": ""
  6149. },
  6150. "exclude-from-classmap": [
  6151. "/Tests/"
  6152. ]
  6153. },
  6154. "notification-url": "https://packagist.org/downloads/",
  6155. "license": [
  6156. "MIT"
  6157. ],
  6158. "authors": [
  6159. {
  6160. "name": "Fabien Potencier",
  6161. "email": "fabien@symfony.com"
  6162. },
  6163. {
  6164. "name": "Symfony Community",
  6165. "homepage": "https://symfony.com/contributors"
  6166. }
  6167. ],
  6168. "description": "Symfony Routing Component",
  6169. "homepage": "https://symfony.com",
  6170. "keywords": [
  6171. "router",
  6172. "routing",
  6173. "uri",
  6174. "url"
  6175. ],
  6176. "funding": [
  6177. {
  6178. "url": "https://symfony.com/sponsor",
  6179. "type": "custom"
  6180. },
  6181. {
  6182. "url": "https://github.com/fabpot",
  6183. "type": "github"
  6184. },
  6185. {
  6186. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6187. "type": "tidelift"
  6188. }
  6189. ],
  6190. "time": "2020-05-30T19:50:06+00:00"
  6191. },
  6192. {
  6193. "name": "symfony/serializer",
  6194. "version": "v3.4.41",
  6195. "source": {
  6196. "type": "git",
  6197. "url": "https://github.com/symfony/serializer.git",
  6198. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  6199. },
  6200. "dist": {
  6201. "type": "zip",
  6202. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  6203. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  6204. "shasum": ""
  6205. },
  6206. "require": {
  6207. "php": "^5.5.9|>=7.0.8",
  6208. "symfony/polyfill-ctype": "~1.8"
  6209. },
  6210. "conflict": {
  6211. "phpdocumentor/type-resolver": "<0.2.1",
  6212. "symfony/dependency-injection": "<3.2",
  6213. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  6214. "symfony/property-info": "<3.1",
  6215. "symfony/yaml": "<3.4"
  6216. },
  6217. "require-dev": {
  6218. "doctrine/annotations": "~1.0",
  6219. "doctrine/cache": "~1.0",
  6220. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  6221. "symfony/cache": "~3.1|~4.0",
  6222. "symfony/config": "~2.8|~3.0|~4.0",
  6223. "symfony/dependency-injection": "~3.2|~4.0",
  6224. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  6225. "symfony/property-access": "~2.8|~3.0|~4.0",
  6226. "symfony/property-info": "^3.4.13|~4.0",
  6227. "symfony/yaml": "~3.4|~4.0"
  6228. },
  6229. "suggest": {
  6230. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  6231. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  6232. "psr/cache-implementation": "For using the metadata cache.",
  6233. "symfony/config": "For using the XML mapping loader.",
  6234. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  6235. "symfony/property-access": "For using the ObjectNormalizer.",
  6236. "symfony/property-info": "To deserialize relations.",
  6237. "symfony/yaml": "For using the default YAML mapping loader."
  6238. },
  6239. "type": "library",
  6240. "extra": {
  6241. "branch-alias": {
  6242. "dev-master": "3.4-dev"
  6243. }
  6244. },
  6245. "autoload": {
  6246. "psr-4": {
  6247. "Symfony\\Component\\Serializer\\": ""
  6248. },
  6249. "exclude-from-classmap": [
  6250. "/Tests/"
  6251. ]
  6252. },
  6253. "notification-url": "https://packagist.org/downloads/",
  6254. "license": [
  6255. "MIT"
  6256. ],
  6257. "authors": [
  6258. {
  6259. "name": "Fabien Potencier",
  6260. "email": "fabien@symfony.com"
  6261. },
  6262. {
  6263. "name": "Symfony Community",
  6264. "homepage": "https://symfony.com/contributors"
  6265. }
  6266. ],
  6267. "description": "Symfony Serializer Component",
  6268. "homepage": "https://symfony.com",
  6269. "funding": [
  6270. {
  6271. "url": "https://symfony.com/sponsor",
  6272. "type": "custom"
  6273. },
  6274. {
  6275. "url": "https://github.com/fabpot",
  6276. "type": "github"
  6277. },
  6278. {
  6279. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6280. "type": "tidelift"
  6281. }
  6282. ],
  6283. "time": "2020-05-30T18:58:05+00:00"
  6284. },
  6285. {
  6286. "name": "symfony/translation",
  6287. "version": "v3.4.41",
  6288. "source": {
  6289. "type": "git",
  6290. "url": "https://github.com/symfony/translation.git",
  6291. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  6292. },
  6293. "dist": {
  6294. "type": "zip",
  6295. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  6296. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  6297. "shasum": ""
  6298. },
  6299. "require": {
  6300. "php": "^5.5.9|>=7.0.8",
  6301. "symfony/polyfill-mbstring": "~1.0"
  6302. },
  6303. "conflict": {
  6304. "symfony/config": "<2.8",
  6305. "symfony/dependency-injection": "<3.4",
  6306. "symfony/yaml": "<3.4"
  6307. },
  6308. "require-dev": {
  6309. "psr/log": "~1.0",
  6310. "symfony/config": "~2.8|~3.0|~4.0",
  6311. "symfony/dependency-injection": "~3.4|~4.0",
  6312. "symfony/finder": "~2.8|~3.0|~4.0",
  6313. "symfony/http-kernel": "~3.4|~4.0",
  6314. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  6315. "symfony/var-dumper": "~3.4|~4.0",
  6316. "symfony/yaml": "~3.4|~4.0"
  6317. },
  6318. "suggest": {
  6319. "psr/log-implementation": "To use logging capability in translator",
  6320. "symfony/config": "",
  6321. "symfony/yaml": ""
  6322. },
  6323. "type": "library",
  6324. "extra": {
  6325. "branch-alias": {
  6326. "dev-master": "3.4-dev"
  6327. }
  6328. },
  6329. "autoload": {
  6330. "psr-4": {
  6331. "Symfony\\Component\\Translation\\": ""
  6332. },
  6333. "exclude-from-classmap": [
  6334. "/Tests/"
  6335. ]
  6336. },
  6337. "notification-url": "https://packagist.org/downloads/",
  6338. "license": [
  6339. "MIT"
  6340. ],
  6341. "authors": [
  6342. {
  6343. "name": "Fabien Potencier",
  6344. "email": "fabien@symfony.com"
  6345. },
  6346. {
  6347. "name": "Symfony Community",
  6348. "homepage": "https://symfony.com/contributors"
  6349. }
  6350. ],
  6351. "description": "Symfony Translation Component",
  6352. "homepage": "https://symfony.com",
  6353. "funding": [
  6354. {
  6355. "url": "https://symfony.com/sponsor",
  6356. "type": "custom"
  6357. },
  6358. {
  6359. "url": "https://github.com/fabpot",
  6360. "type": "github"
  6361. },
  6362. {
  6363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6364. "type": "tidelift"
  6365. }
  6366. ],
  6367. "time": "2020-05-30T18:58:05+00:00"
  6368. },
  6369. {
  6370. "name": "symfony/validator",
  6371. "version": "v3.4.41",
  6372. "source": {
  6373. "type": "git",
  6374. "url": "https://github.com/symfony/validator.git",
  6375. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  6376. },
  6377. "dist": {
  6378. "type": "zip",
  6379. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  6380. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  6381. "shasum": ""
  6382. },
  6383. "require": {
  6384. "php": "^5.5.9|>=7.0.8",
  6385. "symfony/polyfill-ctype": "~1.8",
  6386. "symfony/polyfill-mbstring": "~1.0",
  6387. "symfony/translation": "~2.8|~3.0|~4.0"
  6388. },
  6389. "conflict": {
  6390. "doctrine/lexer": "<1.0.2",
  6391. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  6392. "symfony/dependency-injection": "<3.3",
  6393. "symfony/http-kernel": "<3.3.5",
  6394. "symfony/yaml": "<3.4"
  6395. },
  6396. "require-dev": {
  6397. "doctrine/annotations": "~1.7",
  6398. "doctrine/cache": "~1.0",
  6399. "egulias/email-validator": "^2.1.10",
  6400. "symfony/cache": "~3.1|~4.0",
  6401. "symfony/config": "~2.8|~3.0|~4.0",
  6402. "symfony/dependency-injection": "~3.3|~4.0",
  6403. "symfony/expression-language": "~2.8|~3.0|~4.0",
  6404. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  6405. "symfony/http-kernel": "^3.3.5|~4.0",
  6406. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  6407. "symfony/property-access": "~2.8|~3.0|~4.0",
  6408. "symfony/var-dumper": "~3.3|~4.0",
  6409. "symfony/yaml": "~3.4|~4.0"
  6410. },
  6411. "suggest": {
  6412. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  6413. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  6414. "egulias/email-validator": "Strict (RFC compliant) email validation",
  6415. "psr/cache-implementation": "For using the metadata cache.",
  6416. "symfony/config": "",
  6417. "symfony/expression-language": "For using the Expression validator",
  6418. "symfony/http-foundation": "",
  6419. "symfony/intl": "",
  6420. "symfony/property-access": "For accessing properties within comparison constraints",
  6421. "symfony/yaml": ""
  6422. },
  6423. "type": "library",
  6424. "extra": {
  6425. "branch-alias": {
  6426. "dev-master": "3.4-dev"
  6427. }
  6428. },
  6429. "autoload": {
  6430. "psr-4": {
  6431. "Symfony\\Component\\Validator\\": ""
  6432. },
  6433. "exclude-from-classmap": [
  6434. "/Tests/"
  6435. ]
  6436. },
  6437. "notification-url": "https://packagist.org/downloads/",
  6438. "license": [
  6439. "MIT"
  6440. ],
  6441. "authors": [
  6442. {
  6443. "name": "Fabien Potencier",
  6444. "email": "fabien@symfony.com"
  6445. },
  6446. {
  6447. "name": "Symfony Community",
  6448. "homepage": "https://symfony.com/contributors"
  6449. }
  6450. ],
  6451. "description": "Symfony Validator Component",
  6452. "homepage": "https://symfony.com",
  6453. "funding": [
  6454. {
  6455. "url": "https://symfony.com/sponsor",
  6456. "type": "custom"
  6457. },
  6458. {
  6459. "url": "https://github.com/fabpot",
  6460. "type": "github"
  6461. },
  6462. {
  6463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6464. "type": "tidelift"
  6465. }
  6466. ],
  6467. "time": "2020-05-30T18:43:38+00:00"
  6468. },
  6469. {
  6470. "name": "symfony/var-dumper",
  6471. "version": "v4.4.9",
  6472. "source": {
  6473. "type": "git",
  6474. "url": "https://github.com/symfony/var-dumper.git",
  6475. "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac"
  6476. },
  6477. "dist": {
  6478. "type": "zip",
  6479. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/56b3aa5eab0ac6720dcd559fd1d590ce301594ac",
  6480. "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac",
  6481. "shasum": ""
  6482. },
  6483. "require": {
  6484. "php": ">=7.1.3",
  6485. "symfony/polyfill-mbstring": "~1.0",
  6486. "symfony/polyfill-php72": "~1.5",
  6487. "symfony/polyfill-php80": "^1.15"
  6488. },
  6489. "conflict": {
  6490. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  6491. "symfony/console": "<3.4"
  6492. },
  6493. "require-dev": {
  6494. "ext-iconv": "*",
  6495. "symfony/console": "^3.4|^4.0|^5.0",
  6496. "symfony/process": "^4.4|^5.0",
  6497. "twig/twig": "^1.34|^2.4|^3.0"
  6498. },
  6499. "suggest": {
  6500. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6501. "ext-intl": "To show region name in time zone dump",
  6502. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6503. },
  6504. "bin": [
  6505. "Resources/bin/var-dump-server"
  6506. ],
  6507. "type": "library",
  6508. "extra": {
  6509. "branch-alias": {
  6510. "dev-master": "4.4-dev"
  6511. }
  6512. },
  6513. "autoload": {
  6514. "files": [
  6515. "Resources/functions/dump.php"
  6516. ],
  6517. "psr-4": {
  6518. "Symfony\\Component\\VarDumper\\": ""
  6519. },
  6520. "exclude-from-classmap": [
  6521. "/Tests/"
  6522. ]
  6523. },
  6524. "notification-url": "https://packagist.org/downloads/",
  6525. "license": [
  6526. "MIT"
  6527. ],
  6528. "authors": [
  6529. {
  6530. "name": "Nicolas Grekas",
  6531. "email": "p@tchwork.com"
  6532. },
  6533. {
  6534. "name": "Symfony Community",
  6535. "homepage": "https://symfony.com/contributors"
  6536. }
  6537. ],
  6538. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6539. "homepage": "https://symfony.com",
  6540. "keywords": [
  6541. "debug",
  6542. "dump"
  6543. ],
  6544. "funding": [
  6545. {
  6546. "url": "https://symfony.com/sponsor",
  6547. "type": "custom"
  6548. },
  6549. {
  6550. "url": "https://github.com/fabpot",
  6551. "type": "github"
  6552. },
  6553. {
  6554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6555. "type": "tidelift"
  6556. }
  6557. ],
  6558. "time": "2020-05-30T20:06:45+00:00"
  6559. },
  6560. {
  6561. "name": "symfony/yaml",
  6562. "version": "v3.4.41",
  6563. "source": {
  6564. "type": "git",
  6565. "url": "https://github.com/symfony/yaml.git",
  6566. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  6567. },
  6568. "dist": {
  6569. "type": "zip",
  6570. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  6571. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  6572. "shasum": ""
  6573. },
  6574. "require": {
  6575. "php": "^5.5.9|>=7.0.8",
  6576. "symfony/polyfill-ctype": "~1.8"
  6577. },
  6578. "conflict": {
  6579. "symfony/console": "<3.4"
  6580. },
  6581. "require-dev": {
  6582. "symfony/console": "~3.4|~4.0"
  6583. },
  6584. "suggest": {
  6585. "symfony/console": "For validating YAML files using the lint command"
  6586. },
  6587. "type": "library",
  6588. "extra": {
  6589. "branch-alias": {
  6590. "dev-master": "3.4-dev"
  6591. }
  6592. },
  6593. "autoload": {
  6594. "psr-4": {
  6595. "Symfony\\Component\\Yaml\\": ""
  6596. },
  6597. "exclude-from-classmap": [
  6598. "/Tests/"
  6599. ]
  6600. },
  6601. "notification-url": "https://packagist.org/downloads/",
  6602. "license": [
  6603. "MIT"
  6604. ],
  6605. "authors": [
  6606. {
  6607. "name": "Fabien Potencier",
  6608. "email": "fabien@symfony.com"
  6609. },
  6610. {
  6611. "name": "Symfony Community",
  6612. "homepage": "https://symfony.com/contributors"
  6613. }
  6614. ],
  6615. "description": "Symfony Yaml Component",
  6616. "homepage": "https://symfony.com",
  6617. "funding": [
  6618. {
  6619. "url": "https://symfony.com/sponsor",
  6620. "type": "custom"
  6621. },
  6622. {
  6623. "url": "https://github.com/fabpot",
  6624. "type": "github"
  6625. },
  6626. {
  6627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6628. "type": "tidelift"
  6629. }
  6630. ],
  6631. "time": "2020-05-11T07:51:54+00:00"
  6632. },
  6633. {
  6634. "name": "twbs/bootstrap",
  6635. "version": "v4.5.0",
  6636. "source": {
  6637. "type": "git",
  6638. "url": "https://github.com/twbs/bootstrap.git",
  6639. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965"
  6640. },
  6641. "dist": {
  6642. "type": "zip",
  6643. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  6644. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  6645. "shasum": ""
  6646. },
  6647. "replace": {
  6648. "twitter/bootstrap": "self.version"
  6649. },
  6650. "type": "library",
  6651. "extra": {
  6652. "branch-alias": {
  6653. "dev-master": "3.3.x-dev"
  6654. }
  6655. },
  6656. "notification-url": "https://packagist.org/downloads/",
  6657. "license": [
  6658. "MIT"
  6659. ],
  6660. "authors": [
  6661. {
  6662. "name": "Mark Otto",
  6663. "email": "markdotto@gmail.com"
  6664. },
  6665. {
  6666. "name": "Jacob Thornton",
  6667. "email": "jacobthornton@gmail.com"
  6668. }
  6669. ],
  6670. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  6671. "homepage": "https://getbootstrap.com/",
  6672. "keywords": [
  6673. "JS",
  6674. "css",
  6675. "framework",
  6676. "front-end",
  6677. "mobile-first",
  6678. "responsive",
  6679. "sass",
  6680. "web"
  6681. ],
  6682. "funding": [
  6683. {
  6684. "url": "https://opencollective.com/bootstrap",
  6685. "type": "open_collective"
  6686. }
  6687. ],
  6688. "time": "2020-05-12T17:44:42+00:00"
  6689. },
  6690. {
  6691. "name": "twig/twig",
  6692. "version": "v1.42.5",
  6693. "source": {
  6694. "type": "git",
  6695. "url": "https://github.com/twigphp/Twig.git",
  6696. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  6697. },
  6698. "dist": {
  6699. "type": "zip",
  6700. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  6701. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  6702. "shasum": ""
  6703. },
  6704. "require": {
  6705. "php": ">=5.5.0",
  6706. "symfony/polyfill-ctype": "^1.8"
  6707. },
  6708. "require-dev": {
  6709. "psr/container": "^1.0",
  6710. "symfony/phpunit-bridge": "^4.4|^5.0"
  6711. },
  6712. "type": "library",
  6713. "extra": {
  6714. "branch-alias": {
  6715. "dev-master": "1.42-dev"
  6716. }
  6717. },
  6718. "autoload": {
  6719. "psr-0": {
  6720. "Twig_": "lib/"
  6721. },
  6722. "psr-4": {
  6723. "Twig\\": "src/"
  6724. }
  6725. },
  6726. "notification-url": "https://packagist.org/downloads/",
  6727. "license": [
  6728. "BSD-3-Clause"
  6729. ],
  6730. "authors": [
  6731. {
  6732. "name": "Fabien Potencier",
  6733. "email": "fabien@symfony.com",
  6734. "homepage": "http://fabien.potencier.org",
  6735. "role": "Lead Developer"
  6736. },
  6737. {
  6738. "name": "Twig Team",
  6739. "role": "Contributors"
  6740. },
  6741. {
  6742. "name": "Armin Ronacher",
  6743. "email": "armin.ronacher@active-4.com",
  6744. "role": "Project Founder"
  6745. }
  6746. ],
  6747. "description": "Twig, the flexible, fast, and secure template language for PHP",
  6748. "homepage": "https://twig.symfony.com",
  6749. "keywords": [
  6750. "templating"
  6751. ],
  6752. "time": "2020-02-11T05:59:23+00:00"
  6753. },
  6754. {
  6755. "name": "typo3/phar-stream-wrapper",
  6756. "version": "v3.1.4",
  6757. "source": {
  6758. "type": "git",
  6759. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  6760. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  6761. },
  6762. "dist": {
  6763. "type": "zip",
  6764. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  6765. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  6766. "shasum": ""
  6767. },
  6768. "require": {
  6769. "ext-json": "*",
  6770. "php": "^7.0"
  6771. },
  6772. "require-dev": {
  6773. "ext-xdebug": "*",
  6774. "phpunit/phpunit": "^6.5"
  6775. },
  6776. "suggest": {
  6777. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  6778. },
  6779. "type": "library",
  6780. "extra": {
  6781. "branch-alias": {
  6782. "dev-master": "v3.x-dev"
  6783. }
  6784. },
  6785. "autoload": {
  6786. "psr-4": {
  6787. "TYPO3\\PharStreamWrapper\\": "src/"
  6788. }
  6789. },
  6790. "notification-url": "https://packagist.org/downloads/",
  6791. "license": [
  6792. "MIT"
  6793. ],
  6794. "description": "Interceptors for PHP's native phar:// stream handling",
  6795. "homepage": "https://typo3.org/",
  6796. "keywords": [
  6797. "phar",
  6798. "php",
  6799. "security",
  6800. "stream-wrapper"
  6801. ],
  6802. "time": "2019-12-10T11:53:27+00:00"
  6803. },
  6804. {
  6805. "name": "webflo/drupal-finder",
  6806. "version": "1.2.0",
  6807. "source": {
  6808. "type": "git",
  6809. "url": "https://github.com/webflo/drupal-finder.git",
  6810. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  6811. },
  6812. "dist": {
  6813. "type": "zip",
  6814. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  6815. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  6816. "shasum": ""
  6817. },
  6818. "require": {
  6819. "ext-json": "*"
  6820. },
  6821. "require-dev": {
  6822. "mikey179/vfsstream": "^1.6",
  6823. "phpunit/phpunit": "^4.8"
  6824. },
  6825. "type": "library",
  6826. "autoload": {
  6827. "classmap": [
  6828. "src/DrupalFinder.php"
  6829. ]
  6830. },
  6831. "notification-url": "https://packagist.org/downloads/",
  6832. "license": [
  6833. "GPL-2.0+"
  6834. ],
  6835. "authors": [
  6836. {
  6837. "name": "Florian Weber",
  6838. "email": "florian@webflo.org"
  6839. }
  6840. ],
  6841. "description": "Helper class to locate a Drupal installation from a given path.",
  6842. "time": "2019-08-02T08:06:18+00:00"
  6843. },
  6844. {
  6845. "name": "webmozart/assert",
  6846. "version": "1.8.0",
  6847. "source": {
  6848. "type": "git",
  6849. "url": "https://github.com/webmozart/assert.git",
  6850. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
  6851. },
  6852. "dist": {
  6853. "type": "zip",
  6854. "url": "https://api.github.com/repos/webmozart/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  6855. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  6856. "shasum": ""
  6857. },
  6858. "require": {
  6859. "php": "^5.3.3 || ^7.0",
  6860. "symfony/polyfill-ctype": "^1.8"
  6861. },
  6862. "conflict": {
  6863. "vimeo/psalm": "<3.9.1"
  6864. },
  6865. "require-dev": {
  6866. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  6867. },
  6868. "type": "library",
  6869. "autoload": {
  6870. "psr-4": {
  6871. "Webmozart\\Assert\\": "src/"
  6872. }
  6873. },
  6874. "notification-url": "https://packagist.org/downloads/",
  6875. "license": [
  6876. "MIT"
  6877. ],
  6878. "authors": [
  6879. {
  6880. "name": "Bernhard Schussek",
  6881. "email": "bschussek@gmail.com"
  6882. }
  6883. ],
  6884. "description": "Assertions to validate method input/output with nice error messages.",
  6885. "keywords": [
  6886. "assert",
  6887. "check",
  6888. "validate"
  6889. ],
  6890. "time": "2020-04-18T12:12:48+00:00"
  6891. },
  6892. {
  6893. "name": "webmozart/path-util",
  6894. "version": "2.3.0",
  6895. "source": {
  6896. "type": "git",
  6897. "url": "https://github.com/webmozart/path-util.git",
  6898. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  6899. },
  6900. "dist": {
  6901. "type": "zip",
  6902. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  6903. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  6904. "shasum": ""
  6905. },
  6906. "require": {
  6907. "php": ">=5.3.3",
  6908. "webmozart/assert": "~1.0"
  6909. },
  6910. "require-dev": {
  6911. "phpunit/phpunit": "^4.6",
  6912. "sebastian/version": "^1.0.1"
  6913. },
  6914. "type": "library",
  6915. "extra": {
  6916. "branch-alias": {
  6917. "dev-master": "2.3-dev"
  6918. }
  6919. },
  6920. "autoload": {
  6921. "psr-4": {
  6922. "Webmozart\\PathUtil\\": "src/"
  6923. }
  6924. },
  6925. "notification-url": "https://packagist.org/downloads/",
  6926. "license": [
  6927. "MIT"
  6928. ],
  6929. "authors": [
  6930. {
  6931. "name": "Bernhard Schussek",
  6932. "email": "bschussek@gmail.com"
  6933. }
  6934. ],
  6935. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  6936. "time": "2015-12-17T08:42:14+00:00"
  6937. }
  6938. ],
  6939. "packages-dev": [],
  6940. "aliases": [],
  6941. "minimum-stability": "dev",
  6942. "stability-flags": [],
  6943. "prefer-stable": true,
  6944. "prefer-lowest": false,
  6945. "platform": [],
  6946. "platform-dev": [],
  6947. "plugin-api-version": "1.1.0"
  6948. }