composer.lock 273 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659
  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": "3636104131aa6be907a64cb77d82811e",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/8d8f88b3b3830916be94292c1fbce84433efb1aa",
  20. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.0|^8.0",
  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": "^6|^7|^8|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.0-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  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. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.0.2"
  62. },
  63. "time": "2020-10-29T16:03:21+00:00"
  64. },
  65. {
  66. "name": "brick/math",
  67. "version": "0.9.2",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/brick/math.git",
  71. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  76. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": "^7.1 || ^8.0"
  82. },
  83. "require-dev": {
  84. "php-coveralls/php-coveralls": "^2.2",
  85. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  86. "vimeo/psalm": "4.3.2"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "Brick\\Math\\": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "MIT"
  97. ],
  98. "description": "Arbitrary-precision arithmetic library",
  99. "keywords": [
  100. "Arbitrary-precision",
  101. "BigInteger",
  102. "BigRational",
  103. "arithmetic",
  104. "bigdecimal",
  105. "bignum",
  106. "brick",
  107. "math"
  108. ],
  109. "support": {
  110. "issues": "https://github.com/brick/math/issues",
  111. "source": "https://github.com/brick/math/tree/0.9.2"
  112. },
  113. "funding": [
  114. {
  115. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  116. "type": "tidelift"
  117. }
  118. ],
  119. "time": "2021-01-20T22:51:39+00:00"
  120. },
  121. {
  122. "name": "dnoegel/php-xdg-base-dir",
  123. "version": "v0.1.1",
  124. "source": {
  125. "type": "git",
  126. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  127. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  128. },
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  132. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  133. "shasum": ""
  134. },
  135. "require": {
  136. "php": ">=5.3.2"
  137. },
  138. "require-dev": {
  139. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  140. },
  141. "type": "library",
  142. "autoload": {
  143. "psr-4": {
  144. "XdgBaseDir\\": "src/"
  145. }
  146. },
  147. "notification-url": "https://packagist.org/downloads/",
  148. "license": [
  149. "MIT"
  150. ],
  151. "description": "implementation of xdg base directory specification for php",
  152. "support": {
  153. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  154. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  155. },
  156. "time": "2019-12-04T15:06:13+00:00"
  157. },
  158. {
  159. "name": "doctrine/inflector",
  160. "version": "2.0.3",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/doctrine/inflector.git",
  164. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  169. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  170. "shasum": ""
  171. },
  172. "require": {
  173. "php": "^7.2 || ^8.0"
  174. },
  175. "require-dev": {
  176. "doctrine/coding-standard": "^7.0",
  177. "phpstan/phpstan": "^0.11",
  178. "phpstan/phpstan-phpunit": "^0.11",
  179. "phpstan/phpstan-strict-rules": "^0.11",
  180. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  181. },
  182. "type": "library",
  183. "extra": {
  184. "branch-alias": {
  185. "dev-master": "2.0.x-dev"
  186. }
  187. },
  188. "autoload": {
  189. "psr-4": {
  190. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  191. }
  192. },
  193. "notification-url": "https://packagist.org/downloads/",
  194. "license": [
  195. "MIT"
  196. ],
  197. "authors": [
  198. {
  199. "name": "Guilherme Blanco",
  200. "email": "guilhermeblanco@gmail.com"
  201. },
  202. {
  203. "name": "Roman Borschel",
  204. "email": "roman@code-factory.org"
  205. },
  206. {
  207. "name": "Benjamin Eberlei",
  208. "email": "kontakt@beberlei.de"
  209. },
  210. {
  211. "name": "Jonathan Wage",
  212. "email": "jonwage@gmail.com"
  213. },
  214. {
  215. "name": "Johannes Schmitt",
  216. "email": "schmittjoh@gmail.com"
  217. }
  218. ],
  219. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  220. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  221. "keywords": [
  222. "inflection",
  223. "inflector",
  224. "lowercase",
  225. "manipulation",
  226. "php",
  227. "plural",
  228. "singular",
  229. "strings",
  230. "uppercase",
  231. "words"
  232. ],
  233. "support": {
  234. "issues": "https://github.com/doctrine/inflector/issues",
  235. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  236. },
  237. "funding": [
  238. {
  239. "url": "https://www.doctrine-project.org/sponsorship.html",
  240. "type": "custom"
  241. },
  242. {
  243. "url": "https://www.patreon.com/phpdoctrine",
  244. "type": "patreon"
  245. },
  246. {
  247. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  248. "type": "tidelift"
  249. }
  250. ],
  251. "time": "2020-05-29T15:13:26+00:00"
  252. },
  253. {
  254. "name": "doctrine/lexer",
  255. "version": "1.2.1",
  256. "source": {
  257. "type": "git",
  258. "url": "https://github.com/doctrine/lexer.git",
  259. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  260. },
  261. "dist": {
  262. "type": "zip",
  263. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  264. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  265. "shasum": ""
  266. },
  267. "require": {
  268. "php": "^7.2 || ^8.0"
  269. },
  270. "require-dev": {
  271. "doctrine/coding-standard": "^6.0",
  272. "phpstan/phpstan": "^0.11.8",
  273. "phpunit/phpunit": "^8.2"
  274. },
  275. "type": "library",
  276. "extra": {
  277. "branch-alias": {
  278. "dev-master": "1.2.x-dev"
  279. }
  280. },
  281. "autoload": {
  282. "psr-4": {
  283. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  284. }
  285. },
  286. "notification-url": "https://packagist.org/downloads/",
  287. "license": [
  288. "MIT"
  289. ],
  290. "authors": [
  291. {
  292. "name": "Guilherme Blanco",
  293. "email": "guilhermeblanco@gmail.com"
  294. },
  295. {
  296. "name": "Roman Borschel",
  297. "email": "roman@code-factory.org"
  298. },
  299. {
  300. "name": "Johannes Schmitt",
  301. "email": "schmittjoh@gmail.com"
  302. }
  303. ],
  304. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  305. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  306. "keywords": [
  307. "annotations",
  308. "docblock",
  309. "lexer",
  310. "parser",
  311. "php"
  312. ],
  313. "support": {
  314. "issues": "https://github.com/doctrine/lexer/issues",
  315. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  316. },
  317. "funding": [
  318. {
  319. "url": "https://www.doctrine-project.org/sponsorship.html",
  320. "type": "custom"
  321. },
  322. {
  323. "url": "https://www.patreon.com/phpdoctrine",
  324. "type": "patreon"
  325. },
  326. {
  327. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  328. "type": "tidelift"
  329. }
  330. ],
  331. "time": "2020-05-25T17:44:05+00:00"
  332. },
  333. {
  334. "name": "dragonmantank/cron-expression",
  335. "version": "v3.1.0",
  336. "source": {
  337. "type": "git",
  338. "url": "https://github.com/dragonmantank/cron-expression.git",
  339. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
  340. },
  341. "dist": {
  342. "type": "zip",
  343. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  344. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  345. "shasum": ""
  346. },
  347. "require": {
  348. "php": "^7.2|^8.0",
  349. "webmozart/assert": "^1.7.0"
  350. },
  351. "replace": {
  352. "mtdowling/cron-expression": "^1.0"
  353. },
  354. "require-dev": {
  355. "phpstan/extension-installer": "^1.0",
  356. "phpstan/phpstan": "^0.12",
  357. "phpstan/phpstan-webmozart-assert": "^0.12.7",
  358. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  359. },
  360. "type": "library",
  361. "autoload": {
  362. "psr-4": {
  363. "Cron\\": "src/Cron/"
  364. }
  365. },
  366. "notification-url": "https://packagist.org/downloads/",
  367. "license": [
  368. "MIT"
  369. ],
  370. "authors": [
  371. {
  372. "name": "Chris Tankersley",
  373. "email": "chris@ctankersley.com",
  374. "homepage": "https://github.com/dragonmantank"
  375. }
  376. ],
  377. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  378. "keywords": [
  379. "cron",
  380. "schedule"
  381. ],
  382. "support": {
  383. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  384. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
  385. },
  386. "funding": [
  387. {
  388. "url": "https://github.com/dragonmantank",
  389. "type": "github"
  390. }
  391. ],
  392. "time": "2020-11-24T19:55:57+00:00"
  393. },
  394. {
  395. "name": "egulias/email-validator",
  396. "version": "2.1.25",
  397. "source": {
  398. "type": "git",
  399. "url": "https://github.com/egulias/EmailValidator.git",
  400. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  401. },
  402. "dist": {
  403. "type": "zip",
  404. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  405. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  406. "shasum": ""
  407. },
  408. "require": {
  409. "doctrine/lexer": "^1.0.1",
  410. "php": ">=5.5",
  411. "symfony/polyfill-intl-idn": "^1.10"
  412. },
  413. "require-dev": {
  414. "dominicsayers/isemail": "^3.0.7",
  415. "phpunit/phpunit": "^4.8.36|^7.5.15",
  416. "satooshi/php-coveralls": "^1.0.1"
  417. },
  418. "suggest": {
  419. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  420. },
  421. "type": "library",
  422. "extra": {
  423. "branch-alias": {
  424. "dev-master": "2.1.x-dev"
  425. }
  426. },
  427. "autoload": {
  428. "psr-4": {
  429. "Egulias\\EmailValidator\\": "src"
  430. }
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "MIT"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Eduardo Gulias Davis"
  439. }
  440. ],
  441. "description": "A library for validating emails against several RFCs",
  442. "homepage": "https://github.com/egulias/EmailValidator",
  443. "keywords": [
  444. "email",
  445. "emailvalidation",
  446. "emailvalidator",
  447. "validation",
  448. "validator"
  449. ],
  450. "support": {
  451. "issues": "https://github.com/egulias/EmailValidator/issues",
  452. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  453. },
  454. "funding": [
  455. {
  456. "url": "https://github.com/egulias",
  457. "type": "github"
  458. }
  459. ],
  460. "time": "2020-12-29T14:50:06+00:00"
  461. },
  462. {
  463. "name": "fideloper/proxy",
  464. "version": "4.4.1",
  465. "source": {
  466. "type": "git",
  467. "url": "https://github.com/fideloper/TrustedProxy.git",
  468. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  469. },
  470. "dist": {
  471. "type": "zip",
  472. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  473. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  474. "shasum": ""
  475. },
  476. "require": {
  477. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  478. "php": ">=5.4.0"
  479. },
  480. "require-dev": {
  481. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  482. "mockery/mockery": "^1.0",
  483. "phpunit/phpunit": "^6.0"
  484. },
  485. "type": "library",
  486. "extra": {
  487. "laravel": {
  488. "providers": [
  489. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  490. ]
  491. }
  492. },
  493. "autoload": {
  494. "psr-4": {
  495. "Fideloper\\Proxy\\": "src/"
  496. }
  497. },
  498. "notification-url": "https://packagist.org/downloads/",
  499. "license": [
  500. "MIT"
  501. ],
  502. "authors": [
  503. {
  504. "name": "Chris Fidao",
  505. "email": "fideloper@gmail.com"
  506. }
  507. ],
  508. "description": "Set trusted proxies for Laravel",
  509. "keywords": [
  510. "load balancing",
  511. "proxy",
  512. "trusted proxy"
  513. ],
  514. "support": {
  515. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  516. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  517. },
  518. "time": "2020-10-22T13:48:01+00:00"
  519. },
  520. {
  521. "name": "fruitcake/laravel-cors",
  522. "version": "v2.0.3",
  523. "source": {
  524. "type": "git",
  525. "url": "https://github.com/fruitcake/laravel-cors.git",
  526. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a"
  527. },
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  531. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  532. "shasum": ""
  533. },
  534. "require": {
  535. "asm89/stack-cors": "^2.0.1",
  536. "illuminate/contracts": "^6|^7|^8|^9",
  537. "illuminate/support": "^6|^7|^8|^9",
  538. "php": ">=7.2",
  539. "symfony/http-foundation": "^4|^5",
  540. "symfony/http-kernel": "^4.3.4|^5"
  541. },
  542. "require-dev": {
  543. "laravel/framework": "^6|^7|^8",
  544. "orchestra/testbench-dusk": "^4|^5|^6",
  545. "phpunit/phpunit": "^6|^7|^8",
  546. "squizlabs/php_codesniffer": "^3.5"
  547. },
  548. "type": "library",
  549. "extra": {
  550. "branch-alias": {
  551. "dev-master": "2.0-dev"
  552. },
  553. "laravel": {
  554. "providers": [
  555. "Fruitcake\\Cors\\CorsServiceProvider"
  556. ]
  557. }
  558. },
  559. "autoload": {
  560. "psr-4": {
  561. "Fruitcake\\Cors\\": "src/"
  562. }
  563. },
  564. "notification-url": "https://packagist.org/downloads/",
  565. "license": [
  566. "MIT"
  567. ],
  568. "authors": [
  569. {
  570. "name": "Fruitcake",
  571. "homepage": "https://fruitcake.nl"
  572. },
  573. {
  574. "name": "Barry vd. Heuvel",
  575. "email": "barryvdh@gmail.com"
  576. }
  577. ],
  578. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  579. "keywords": [
  580. "api",
  581. "cors",
  582. "crossdomain",
  583. "laravel"
  584. ],
  585. "support": {
  586. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  587. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.3"
  588. },
  589. "funding": [
  590. {
  591. "url": "https://github.com/barryvdh",
  592. "type": "github"
  593. }
  594. ],
  595. "time": "2020-10-22T13:57:20+00:00"
  596. },
  597. {
  598. "name": "graham-campbell/result-type",
  599. "version": "v1.0.1",
  600. "source": {
  601. "type": "git",
  602. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  603. "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb"
  604. },
  605. "dist": {
  606. "type": "zip",
  607. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/7e279d2cd5d7fbb156ce46daada972355cea27bb",
  608. "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb",
  609. "shasum": ""
  610. },
  611. "require": {
  612. "php": "^7.0|^8.0",
  613. "phpoption/phpoption": "^1.7.3"
  614. },
  615. "require-dev": {
  616. "phpunit/phpunit": "^6.5|^7.5|^8.5|^9.0"
  617. },
  618. "type": "library",
  619. "extra": {
  620. "branch-alias": {
  621. "dev-master": "1.0-dev"
  622. }
  623. },
  624. "autoload": {
  625. "psr-4": {
  626. "GrahamCampbell\\ResultType\\": "src/"
  627. }
  628. },
  629. "notification-url": "https://packagist.org/downloads/",
  630. "license": [
  631. "MIT"
  632. ],
  633. "authors": [
  634. {
  635. "name": "Graham Campbell",
  636. "email": "graham@alt-three.com"
  637. }
  638. ],
  639. "description": "An Implementation Of The Result Type",
  640. "keywords": [
  641. "Graham Campbell",
  642. "GrahamCampbell",
  643. "Result Type",
  644. "Result-Type",
  645. "result"
  646. ],
  647. "support": {
  648. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  649. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.1"
  650. },
  651. "funding": [
  652. {
  653. "url": "https://github.com/GrahamCampbell",
  654. "type": "github"
  655. },
  656. {
  657. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  658. "type": "tidelift"
  659. }
  660. ],
  661. "time": "2020-04-13T13:17:36+00:00"
  662. },
  663. {
  664. "name": "guzzlehttp/guzzle",
  665. "version": "7.2.0",
  666. "source": {
  667. "type": "git",
  668. "url": "https://github.com/guzzle/guzzle.git",
  669. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79"
  670. },
  671. "dist": {
  672. "type": "zip",
  673. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0aa74dfb41ae110835923ef10a9d803a22d50e79",
  674. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79",
  675. "shasum": ""
  676. },
  677. "require": {
  678. "ext-json": "*",
  679. "guzzlehttp/promises": "^1.4",
  680. "guzzlehttp/psr7": "^1.7",
  681. "php": "^7.2.5 || ^8.0",
  682. "psr/http-client": "^1.0"
  683. },
  684. "provide": {
  685. "psr/http-client-implementation": "1.0"
  686. },
  687. "require-dev": {
  688. "ext-curl": "*",
  689. "php-http/client-integration-tests": "^3.0",
  690. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  691. "psr/log": "^1.1"
  692. },
  693. "suggest": {
  694. "ext-curl": "Required for CURL handler support",
  695. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  696. "psr/log": "Required for using the Log middleware"
  697. },
  698. "type": "library",
  699. "extra": {
  700. "branch-alias": {
  701. "dev-master": "7.1-dev"
  702. }
  703. },
  704. "autoload": {
  705. "psr-4": {
  706. "GuzzleHttp\\": "src/"
  707. },
  708. "files": [
  709. "src/functions_include.php"
  710. ]
  711. },
  712. "notification-url": "https://packagist.org/downloads/",
  713. "license": [
  714. "MIT"
  715. ],
  716. "authors": [
  717. {
  718. "name": "Michael Dowling",
  719. "email": "mtdowling@gmail.com",
  720. "homepage": "https://github.com/mtdowling"
  721. },
  722. {
  723. "name": "Márk Sági-Kazár",
  724. "email": "mark.sagikazar@gmail.com",
  725. "homepage": "https://sagikazarmark.hu"
  726. }
  727. ],
  728. "description": "Guzzle is a PHP HTTP client library",
  729. "homepage": "http://guzzlephp.org/",
  730. "keywords": [
  731. "client",
  732. "curl",
  733. "framework",
  734. "http",
  735. "http client",
  736. "psr-18",
  737. "psr-7",
  738. "rest",
  739. "web service"
  740. ],
  741. "support": {
  742. "issues": "https://github.com/guzzle/guzzle/issues",
  743. "source": "https://github.com/guzzle/guzzle/tree/7.2.0"
  744. },
  745. "funding": [
  746. {
  747. "url": "https://github.com/GrahamCampbell",
  748. "type": "github"
  749. },
  750. {
  751. "url": "https://github.com/Nyholm",
  752. "type": "github"
  753. },
  754. {
  755. "url": "https://github.com/alexeyshockov",
  756. "type": "github"
  757. },
  758. {
  759. "url": "https://github.com/gmponos",
  760. "type": "github"
  761. }
  762. ],
  763. "time": "2020-10-10T11:47:56+00:00"
  764. },
  765. {
  766. "name": "guzzlehttp/promises",
  767. "version": "1.4.0",
  768. "source": {
  769. "type": "git",
  770. "url": "https://github.com/guzzle/promises.git",
  771. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  772. },
  773. "dist": {
  774. "type": "zip",
  775. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  776. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  777. "shasum": ""
  778. },
  779. "require": {
  780. "php": ">=5.5"
  781. },
  782. "require-dev": {
  783. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  784. },
  785. "type": "library",
  786. "extra": {
  787. "branch-alias": {
  788. "dev-master": "1.4-dev"
  789. }
  790. },
  791. "autoload": {
  792. "psr-4": {
  793. "GuzzleHttp\\Promise\\": "src/"
  794. },
  795. "files": [
  796. "src/functions_include.php"
  797. ]
  798. },
  799. "notification-url": "https://packagist.org/downloads/",
  800. "license": [
  801. "MIT"
  802. ],
  803. "authors": [
  804. {
  805. "name": "Michael Dowling",
  806. "email": "mtdowling@gmail.com",
  807. "homepage": "https://github.com/mtdowling"
  808. }
  809. ],
  810. "description": "Guzzle promises library",
  811. "keywords": [
  812. "promise"
  813. ],
  814. "support": {
  815. "issues": "https://github.com/guzzle/promises/issues",
  816. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  817. },
  818. "time": "2020-09-30T07:37:28+00:00"
  819. },
  820. {
  821. "name": "guzzlehttp/psr7",
  822. "version": "1.7.0",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/guzzle/psr7.git",
  826. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  831. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  832. "shasum": ""
  833. },
  834. "require": {
  835. "php": ">=5.4.0",
  836. "psr/http-message": "~1.0",
  837. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  838. },
  839. "provide": {
  840. "psr/http-message-implementation": "1.0"
  841. },
  842. "require-dev": {
  843. "ext-zlib": "*",
  844. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  845. },
  846. "suggest": {
  847. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  848. },
  849. "type": "library",
  850. "extra": {
  851. "branch-alias": {
  852. "dev-master": "1.7-dev"
  853. }
  854. },
  855. "autoload": {
  856. "psr-4": {
  857. "GuzzleHttp\\Psr7\\": "src/"
  858. },
  859. "files": [
  860. "src/functions_include.php"
  861. ]
  862. },
  863. "notification-url": "https://packagist.org/downloads/",
  864. "license": [
  865. "MIT"
  866. ],
  867. "authors": [
  868. {
  869. "name": "Michael Dowling",
  870. "email": "mtdowling@gmail.com",
  871. "homepage": "https://github.com/mtdowling"
  872. },
  873. {
  874. "name": "Tobias Schultze",
  875. "homepage": "https://github.com/Tobion"
  876. }
  877. ],
  878. "description": "PSR-7 message implementation that also provides common utility methods",
  879. "keywords": [
  880. "http",
  881. "message",
  882. "psr-7",
  883. "request",
  884. "response",
  885. "stream",
  886. "uri",
  887. "url"
  888. ],
  889. "support": {
  890. "issues": "https://github.com/guzzle/psr7/issues",
  891. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  892. },
  893. "time": "2020-09-30T07:37:11+00:00"
  894. },
  895. {
  896. "name": "laravel/framework",
  897. "version": "v8.27.0",
  898. "source": {
  899. "type": "git",
  900. "url": "https://github.com/laravel/framework.git",
  901. "reference": "a6680d98f9dadaa363aa7d5218517a08706cee64"
  902. },
  903. "dist": {
  904. "type": "zip",
  905. "url": "https://api.github.com/repos/laravel/framework/zipball/a6680d98f9dadaa363aa7d5218517a08706cee64",
  906. "reference": "a6680d98f9dadaa363aa7d5218517a08706cee64",
  907. "shasum": ""
  908. },
  909. "require": {
  910. "doctrine/inflector": "^1.4|^2.0",
  911. "dragonmantank/cron-expression": "^3.0.2",
  912. "egulias/email-validator": "^2.1.10",
  913. "ext-json": "*",
  914. "ext-mbstring": "*",
  915. "ext-openssl": "*",
  916. "league/commonmark": "^1.3",
  917. "league/flysystem": "^1.1",
  918. "monolog/monolog": "^2.0",
  919. "nesbot/carbon": "^2.31",
  920. "opis/closure": "^3.6",
  921. "php": "^7.3|^8.0",
  922. "psr/container": "^1.0",
  923. "psr/simple-cache": "^1.0",
  924. "ramsey/uuid": "^4.0",
  925. "swiftmailer/swiftmailer": "^6.0",
  926. "symfony/console": "^5.1.4",
  927. "symfony/error-handler": "^5.1.4",
  928. "symfony/finder": "^5.1.4",
  929. "symfony/http-foundation": "^5.1.4",
  930. "symfony/http-kernel": "^5.1.4",
  931. "symfony/mime": "^5.1.4",
  932. "symfony/process": "^5.1.4",
  933. "symfony/routing": "^5.1.4",
  934. "symfony/var-dumper": "^5.1.4",
  935. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  936. "vlucas/phpdotenv": "^5.2",
  937. "voku/portable-ascii": "^1.4.8"
  938. },
  939. "conflict": {
  940. "tightenco/collect": "<5.5.33"
  941. },
  942. "provide": {
  943. "psr/container-implementation": "1.0"
  944. },
  945. "replace": {
  946. "illuminate/auth": "self.version",
  947. "illuminate/broadcasting": "self.version",
  948. "illuminate/bus": "self.version",
  949. "illuminate/cache": "self.version",
  950. "illuminate/collections": "self.version",
  951. "illuminate/config": "self.version",
  952. "illuminate/console": "self.version",
  953. "illuminate/container": "self.version",
  954. "illuminate/contracts": "self.version",
  955. "illuminate/cookie": "self.version",
  956. "illuminate/database": "self.version",
  957. "illuminate/encryption": "self.version",
  958. "illuminate/events": "self.version",
  959. "illuminate/filesystem": "self.version",
  960. "illuminate/hashing": "self.version",
  961. "illuminate/http": "self.version",
  962. "illuminate/log": "self.version",
  963. "illuminate/macroable": "self.version",
  964. "illuminate/mail": "self.version",
  965. "illuminate/notifications": "self.version",
  966. "illuminate/pagination": "self.version",
  967. "illuminate/pipeline": "self.version",
  968. "illuminate/queue": "self.version",
  969. "illuminate/redis": "self.version",
  970. "illuminate/routing": "self.version",
  971. "illuminate/session": "self.version",
  972. "illuminate/support": "self.version",
  973. "illuminate/testing": "self.version",
  974. "illuminate/translation": "self.version",
  975. "illuminate/validation": "self.version",
  976. "illuminate/view": "self.version"
  977. },
  978. "require-dev": {
  979. "aws/aws-sdk-php": "^3.155",
  980. "doctrine/dbal": "^2.6|^3.0",
  981. "filp/whoops": "^2.8",
  982. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  983. "league/flysystem-cached-adapter": "^1.0",
  984. "mockery/mockery": "^1.4.2",
  985. "orchestra/testbench-core": "^6.8",
  986. "pda/pheanstalk": "^4.0",
  987. "phpunit/phpunit": "^8.5.8|^9.3.3",
  988. "predis/predis": "^1.1.1",
  989. "symfony/cache": "^5.1.4"
  990. },
  991. "suggest": {
  992. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  993. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  994. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6|^3.0).",
  995. "ext-ftp": "Required to use the Flysystem FTP driver.",
  996. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  997. "ext-memcached": "Required to use the memcache cache driver.",
  998. "ext-pcntl": "Required to use all features of the queue worker.",
  999. "ext-posix": "Required to use all features of the queue worker.",
  1000. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1001. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1002. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1003. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1004. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1005. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1006. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1007. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1008. "mockery/mockery": "Required to use mocking (^1.4.2).",
  1009. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1010. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1011. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.8|^9.3.3).",
  1012. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1013. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1014. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1015. "symfony/cache": "Required to PSR-6 cache bridge (^5.1.4).",
  1016. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1.4).",
  1017. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1018. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1019. },
  1020. "type": "library",
  1021. "extra": {
  1022. "branch-alias": {
  1023. "dev-master": "8.x-dev"
  1024. }
  1025. },
  1026. "autoload": {
  1027. "files": [
  1028. "src/Illuminate/Collections/helpers.php",
  1029. "src/Illuminate/Events/functions.php",
  1030. "src/Illuminate/Foundation/helpers.php",
  1031. "src/Illuminate/Support/helpers.php"
  1032. ],
  1033. "psr-4": {
  1034. "Illuminate\\": "src/Illuminate/",
  1035. "Illuminate\\Support\\": [
  1036. "src/Illuminate/Macroable/",
  1037. "src/Illuminate/Collections/"
  1038. ]
  1039. }
  1040. },
  1041. "notification-url": "https://packagist.org/downloads/",
  1042. "license": [
  1043. "MIT"
  1044. ],
  1045. "authors": [
  1046. {
  1047. "name": "Taylor Otwell",
  1048. "email": "taylor@laravel.com"
  1049. }
  1050. ],
  1051. "description": "The Laravel Framework.",
  1052. "homepage": "https://laravel.com",
  1053. "keywords": [
  1054. "framework",
  1055. "laravel"
  1056. ],
  1057. "support": {
  1058. "issues": "https://github.com/laravel/framework/issues",
  1059. "source": "https://github.com/laravel/framework"
  1060. },
  1061. "time": "2021-02-09T15:14:54+00:00"
  1062. },
  1063. {
  1064. "name": "laravel/tinker",
  1065. "version": "v2.6.0",
  1066. "source": {
  1067. "type": "git",
  1068. "url": "https://github.com/laravel/tinker.git",
  1069. "reference": "daae1c43f1300fe88c05d83db6f3d8f76677ad88"
  1070. },
  1071. "dist": {
  1072. "type": "zip",
  1073. "url": "https://api.github.com/repos/laravel/tinker/zipball/daae1c43f1300fe88c05d83db6f3d8f76677ad88",
  1074. "reference": "daae1c43f1300fe88c05d83db6f3d8f76677ad88",
  1075. "shasum": ""
  1076. },
  1077. "require": {
  1078. "illuminate/console": "^6.0|^7.0|^8.0",
  1079. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1080. "illuminate/support": "^6.0|^7.0|^8.0",
  1081. "php": "^7.2.5|^8.0",
  1082. "psy/psysh": "^0.10.4",
  1083. "symfony/var-dumper": "^4.3.4|^5.0"
  1084. },
  1085. "require-dev": {
  1086. "mockery/mockery": "~1.3.3|^1.4.2",
  1087. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1088. },
  1089. "suggest": {
  1090. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1091. },
  1092. "type": "library",
  1093. "extra": {
  1094. "branch-alias": {
  1095. "dev-master": "2.x-dev"
  1096. },
  1097. "laravel": {
  1098. "providers": [
  1099. "Laravel\\Tinker\\TinkerServiceProvider"
  1100. ]
  1101. }
  1102. },
  1103. "autoload": {
  1104. "psr-4": {
  1105. "Laravel\\Tinker\\": "src/"
  1106. }
  1107. },
  1108. "notification-url": "https://packagist.org/downloads/",
  1109. "license": [
  1110. "MIT"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Taylor Otwell",
  1115. "email": "taylor@laravel.com"
  1116. }
  1117. ],
  1118. "description": "Powerful REPL for the Laravel framework.",
  1119. "keywords": [
  1120. "REPL",
  1121. "Tinker",
  1122. "laravel",
  1123. "psysh"
  1124. ],
  1125. "support": {
  1126. "issues": "https://github.com/laravel/tinker/issues",
  1127. "source": "https://github.com/laravel/tinker/tree/v2.6.0"
  1128. },
  1129. "time": "2021-01-26T20:35:18+00:00"
  1130. },
  1131. {
  1132. "name": "league/commonmark",
  1133. "version": "1.5.7",
  1134. "source": {
  1135. "type": "git",
  1136. "url": "https://github.com/thephpleague/commonmark.git",
  1137. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  1138. },
  1139. "dist": {
  1140. "type": "zip",
  1141. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1142. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1143. "shasum": ""
  1144. },
  1145. "require": {
  1146. "ext-mbstring": "*",
  1147. "php": "^7.1 || ^8.0"
  1148. },
  1149. "conflict": {
  1150. "scrutinizer/ocular": "1.7.*"
  1151. },
  1152. "require-dev": {
  1153. "cebe/markdown": "~1.0",
  1154. "commonmark/commonmark.js": "0.29.2",
  1155. "erusev/parsedown": "~1.0",
  1156. "ext-json": "*",
  1157. "github/gfm": "0.29.0",
  1158. "michelf/php-markdown": "~1.4",
  1159. "mikehaertl/php-shellcommand": "^1.4",
  1160. "phpstan/phpstan": "^0.12",
  1161. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  1162. "scrutinizer/ocular": "^1.5",
  1163. "symfony/finder": "^4.2"
  1164. },
  1165. "bin": [
  1166. "bin/commonmark"
  1167. ],
  1168. "type": "library",
  1169. "autoload": {
  1170. "psr-4": {
  1171. "League\\CommonMark\\": "src"
  1172. }
  1173. },
  1174. "notification-url": "https://packagist.org/downloads/",
  1175. "license": [
  1176. "BSD-3-Clause"
  1177. ],
  1178. "authors": [
  1179. {
  1180. "name": "Colin O'Dell",
  1181. "email": "colinodell@gmail.com",
  1182. "homepage": "https://www.colinodell.com",
  1183. "role": "Lead Developer"
  1184. }
  1185. ],
  1186. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1187. "homepage": "https://commonmark.thephpleague.com",
  1188. "keywords": [
  1189. "commonmark",
  1190. "flavored",
  1191. "gfm",
  1192. "github",
  1193. "github-flavored",
  1194. "markdown",
  1195. "md",
  1196. "parser"
  1197. ],
  1198. "support": {
  1199. "docs": "https://commonmark.thephpleague.com/",
  1200. "issues": "https://github.com/thephpleague/commonmark/issues",
  1201. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1202. "source": "https://github.com/thephpleague/commonmark"
  1203. },
  1204. "funding": [
  1205. {
  1206. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  1207. "type": "custom"
  1208. },
  1209. {
  1210. "url": "https://www.colinodell.com/sponsor",
  1211. "type": "custom"
  1212. },
  1213. {
  1214. "url": "https://www.paypal.me/colinpodell/10.00",
  1215. "type": "custom"
  1216. },
  1217. {
  1218. "url": "https://github.com/colinodell",
  1219. "type": "github"
  1220. },
  1221. {
  1222. "url": "https://www.patreon.com/colinodell",
  1223. "type": "patreon"
  1224. },
  1225. {
  1226. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1227. "type": "tidelift"
  1228. }
  1229. ],
  1230. "time": "2020-10-31T13:49:32+00:00"
  1231. },
  1232. {
  1233. "name": "league/flysystem",
  1234. "version": "1.1.3",
  1235. "source": {
  1236. "type": "git",
  1237. "url": "https://github.com/thephpleague/flysystem.git",
  1238. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  1239. },
  1240. "dist": {
  1241. "type": "zip",
  1242. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  1243. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  1244. "shasum": ""
  1245. },
  1246. "require": {
  1247. "ext-fileinfo": "*",
  1248. "league/mime-type-detection": "^1.3",
  1249. "php": "^7.2.5 || ^8.0"
  1250. },
  1251. "conflict": {
  1252. "league/flysystem-sftp": "<1.0.6"
  1253. },
  1254. "require-dev": {
  1255. "phpspec/prophecy": "^1.11.1",
  1256. "phpunit/phpunit": "^8.5.8"
  1257. },
  1258. "suggest": {
  1259. "ext-fileinfo": "Required for MimeType",
  1260. "ext-ftp": "Allows you to use FTP server storage",
  1261. "ext-openssl": "Allows you to use FTPS server storage",
  1262. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1263. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1264. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1265. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1266. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1267. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1268. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1269. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1270. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1271. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1272. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1273. },
  1274. "type": "library",
  1275. "extra": {
  1276. "branch-alias": {
  1277. "dev-master": "1.1-dev"
  1278. }
  1279. },
  1280. "autoload": {
  1281. "psr-4": {
  1282. "League\\Flysystem\\": "src/"
  1283. }
  1284. },
  1285. "notification-url": "https://packagist.org/downloads/",
  1286. "license": [
  1287. "MIT"
  1288. ],
  1289. "authors": [
  1290. {
  1291. "name": "Frank de Jonge",
  1292. "email": "info@frenky.net"
  1293. }
  1294. ],
  1295. "description": "Filesystem abstraction: Many filesystems, one API.",
  1296. "keywords": [
  1297. "Cloud Files",
  1298. "WebDAV",
  1299. "abstraction",
  1300. "aws",
  1301. "cloud",
  1302. "copy.com",
  1303. "dropbox",
  1304. "file systems",
  1305. "files",
  1306. "filesystem",
  1307. "filesystems",
  1308. "ftp",
  1309. "rackspace",
  1310. "remote",
  1311. "s3",
  1312. "sftp",
  1313. "storage"
  1314. ],
  1315. "support": {
  1316. "issues": "https://github.com/thephpleague/flysystem/issues",
  1317. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  1318. },
  1319. "funding": [
  1320. {
  1321. "url": "https://offset.earth/frankdejonge",
  1322. "type": "other"
  1323. }
  1324. ],
  1325. "time": "2020-08-23T07:39:11+00:00"
  1326. },
  1327. {
  1328. "name": "league/mime-type-detection",
  1329. "version": "1.7.0",
  1330. "source": {
  1331. "type": "git",
  1332. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1333. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  1334. },
  1335. "dist": {
  1336. "type": "zip",
  1337. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  1338. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  1339. "shasum": ""
  1340. },
  1341. "require": {
  1342. "ext-fileinfo": "*",
  1343. "php": "^7.2 || ^8.0"
  1344. },
  1345. "require-dev": {
  1346. "friendsofphp/php-cs-fixer": "^2.18",
  1347. "phpstan/phpstan": "^0.12.68",
  1348. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1349. },
  1350. "type": "library",
  1351. "autoload": {
  1352. "psr-4": {
  1353. "League\\MimeTypeDetection\\": "src"
  1354. }
  1355. },
  1356. "notification-url": "https://packagist.org/downloads/",
  1357. "license": [
  1358. "MIT"
  1359. ],
  1360. "authors": [
  1361. {
  1362. "name": "Frank de Jonge",
  1363. "email": "info@frankdejonge.nl"
  1364. }
  1365. ],
  1366. "description": "Mime-type detection for Flysystem",
  1367. "support": {
  1368. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1369. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  1370. },
  1371. "funding": [
  1372. {
  1373. "url": "https://github.com/frankdejonge",
  1374. "type": "github"
  1375. },
  1376. {
  1377. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1378. "type": "tidelift"
  1379. }
  1380. ],
  1381. "time": "2021-01-18T20:58:21+00:00"
  1382. },
  1383. {
  1384. "name": "monolog/monolog",
  1385. "version": "2.2.0",
  1386. "source": {
  1387. "type": "git",
  1388. "url": "https://github.com/Seldaek/monolog.git",
  1389. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  1390. },
  1391. "dist": {
  1392. "type": "zip",
  1393. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  1394. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  1395. "shasum": ""
  1396. },
  1397. "require": {
  1398. "php": ">=7.2",
  1399. "psr/log": "^1.0.1"
  1400. },
  1401. "provide": {
  1402. "psr/log-implementation": "1.0.0"
  1403. },
  1404. "require-dev": {
  1405. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1406. "doctrine/couchdb": "~1.0@dev",
  1407. "elasticsearch/elasticsearch": "^7",
  1408. "graylog2/gelf-php": "^1.4.2",
  1409. "mongodb/mongodb": "^1.8",
  1410. "php-amqplib/php-amqplib": "~2.4",
  1411. "php-console/php-console": "^3.1.3",
  1412. "phpspec/prophecy": "^1.6.1",
  1413. "phpstan/phpstan": "^0.12.59",
  1414. "phpunit/phpunit": "^8.5",
  1415. "predis/predis": "^1.1",
  1416. "rollbar/rollbar": "^1.3",
  1417. "ruflin/elastica": ">=0.90 <7.0.1",
  1418. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1419. },
  1420. "suggest": {
  1421. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1422. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1423. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1424. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1425. "ext-mbstring": "Allow to work properly with unicode symbols",
  1426. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1427. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1428. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1429. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1430. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1431. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1432. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1433. },
  1434. "type": "library",
  1435. "extra": {
  1436. "branch-alias": {
  1437. "dev-main": "2.x-dev"
  1438. }
  1439. },
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Monolog\\": "src/Monolog"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "Jordi Boggiano",
  1452. "email": "j.boggiano@seld.be",
  1453. "homepage": "https://seld.be"
  1454. }
  1455. ],
  1456. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1457. "homepage": "https://github.com/Seldaek/monolog",
  1458. "keywords": [
  1459. "log",
  1460. "logging",
  1461. "psr-3"
  1462. ],
  1463. "support": {
  1464. "issues": "https://github.com/Seldaek/monolog/issues",
  1465. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  1466. },
  1467. "funding": [
  1468. {
  1469. "url": "https://github.com/Seldaek",
  1470. "type": "github"
  1471. },
  1472. {
  1473. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1474. "type": "tidelift"
  1475. }
  1476. ],
  1477. "time": "2020-12-14T13:15:25+00:00"
  1478. },
  1479. {
  1480. "name": "nesbot/carbon",
  1481. "version": "2.45.1",
  1482. "source": {
  1483. "type": "git",
  1484. "url": "https://github.com/briannesbitt/Carbon.git",
  1485. "reference": "528783b188bdb853eb21239b1722831e0f000a8d"
  1486. },
  1487. "dist": {
  1488. "type": "zip",
  1489. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/528783b188bdb853eb21239b1722831e0f000a8d",
  1490. "reference": "528783b188bdb853eb21239b1722831e0f000a8d",
  1491. "shasum": ""
  1492. },
  1493. "require": {
  1494. "ext-json": "*",
  1495. "php": "^7.1.8 || ^8.0",
  1496. "symfony/polyfill-mbstring": "^1.0",
  1497. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  1498. },
  1499. "require-dev": {
  1500. "doctrine/orm": "^2.7",
  1501. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1502. "kylekatarnls/multi-tester": "^2.0",
  1503. "phpmd/phpmd": "^2.9",
  1504. "phpstan/extension-installer": "^1.0",
  1505. "phpstan/phpstan": "^0.12.54",
  1506. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  1507. "squizlabs/php_codesniffer": "^3.4"
  1508. },
  1509. "bin": [
  1510. "bin/carbon"
  1511. ],
  1512. "type": "library",
  1513. "extra": {
  1514. "branch-alias": {
  1515. "dev-master": "2.x-dev",
  1516. "dev-3.x": "3.x-dev"
  1517. },
  1518. "laravel": {
  1519. "providers": [
  1520. "Carbon\\Laravel\\ServiceProvider"
  1521. ]
  1522. },
  1523. "phpstan": {
  1524. "includes": [
  1525. "extension.neon"
  1526. ]
  1527. }
  1528. },
  1529. "autoload": {
  1530. "psr-4": {
  1531. "Carbon\\": "src/Carbon/"
  1532. }
  1533. },
  1534. "notification-url": "https://packagist.org/downloads/",
  1535. "license": [
  1536. "MIT"
  1537. ],
  1538. "authors": [
  1539. {
  1540. "name": "Brian Nesbitt",
  1541. "email": "brian@nesbot.com",
  1542. "homepage": "http://nesbot.com"
  1543. },
  1544. {
  1545. "name": "kylekatarnls",
  1546. "homepage": "http://github.com/kylekatarnls"
  1547. }
  1548. ],
  1549. "description": "An API extension for DateTime that supports 281 different languages.",
  1550. "homepage": "http://carbon.nesbot.com",
  1551. "keywords": [
  1552. "date",
  1553. "datetime",
  1554. "time"
  1555. ],
  1556. "support": {
  1557. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1558. "source": "https://github.com/briannesbitt/Carbon"
  1559. },
  1560. "funding": [
  1561. {
  1562. "url": "https://opencollective.com/Carbon",
  1563. "type": "open_collective"
  1564. },
  1565. {
  1566. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1567. "type": "tidelift"
  1568. }
  1569. ],
  1570. "time": "2021-02-11T18:30:17+00:00"
  1571. },
  1572. {
  1573. "name": "nikic/php-parser",
  1574. "version": "v4.10.4",
  1575. "source": {
  1576. "type": "git",
  1577. "url": "https://github.com/nikic/PHP-Parser.git",
  1578. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  1579. },
  1580. "dist": {
  1581. "type": "zip",
  1582. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  1583. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  1584. "shasum": ""
  1585. },
  1586. "require": {
  1587. "ext-tokenizer": "*",
  1588. "php": ">=7.0"
  1589. },
  1590. "require-dev": {
  1591. "ircmaxell/php-yacc": "^0.0.7",
  1592. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1593. },
  1594. "bin": [
  1595. "bin/php-parse"
  1596. ],
  1597. "type": "library",
  1598. "extra": {
  1599. "branch-alias": {
  1600. "dev-master": "4.9-dev"
  1601. }
  1602. },
  1603. "autoload": {
  1604. "psr-4": {
  1605. "PhpParser\\": "lib/PhpParser"
  1606. }
  1607. },
  1608. "notification-url": "https://packagist.org/downloads/",
  1609. "license": [
  1610. "BSD-3-Clause"
  1611. ],
  1612. "authors": [
  1613. {
  1614. "name": "Nikita Popov"
  1615. }
  1616. ],
  1617. "description": "A PHP parser written in PHP",
  1618. "keywords": [
  1619. "parser",
  1620. "php"
  1621. ],
  1622. "support": {
  1623. "issues": "https://github.com/nikic/PHP-Parser/issues",
  1624. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  1625. },
  1626. "time": "2020-12-20T10:01:03+00:00"
  1627. },
  1628. {
  1629. "name": "opis/closure",
  1630. "version": "3.6.1",
  1631. "source": {
  1632. "type": "git",
  1633. "url": "https://github.com/opis/closure.git",
  1634. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  1635. },
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  1639. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  1640. "shasum": ""
  1641. },
  1642. "require": {
  1643. "php": "^5.4 || ^7.0 || ^8.0"
  1644. },
  1645. "require-dev": {
  1646. "jeremeamia/superclosure": "^2.0",
  1647. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  1648. },
  1649. "type": "library",
  1650. "extra": {
  1651. "branch-alias": {
  1652. "dev-master": "3.6.x-dev"
  1653. }
  1654. },
  1655. "autoload": {
  1656. "psr-4": {
  1657. "Opis\\Closure\\": "src/"
  1658. },
  1659. "files": [
  1660. "functions.php"
  1661. ]
  1662. },
  1663. "notification-url": "https://packagist.org/downloads/",
  1664. "license": [
  1665. "MIT"
  1666. ],
  1667. "authors": [
  1668. {
  1669. "name": "Marius Sarca",
  1670. "email": "marius.sarca@gmail.com"
  1671. },
  1672. {
  1673. "name": "Sorin Sarca",
  1674. "email": "sarca_sorin@hotmail.com"
  1675. }
  1676. ],
  1677. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1678. "homepage": "https://opis.io/closure",
  1679. "keywords": [
  1680. "anonymous functions",
  1681. "closure",
  1682. "function",
  1683. "serializable",
  1684. "serialization",
  1685. "serialize"
  1686. ],
  1687. "support": {
  1688. "issues": "https://github.com/opis/closure/issues",
  1689. "source": "https://github.com/opis/closure/tree/3.6.1"
  1690. },
  1691. "time": "2020-11-07T02:01:34+00:00"
  1692. },
  1693. {
  1694. "name": "phpoption/phpoption",
  1695. "version": "1.7.5",
  1696. "source": {
  1697. "type": "git",
  1698. "url": "https://github.com/schmittjoh/php-option.git",
  1699. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  1700. },
  1701. "dist": {
  1702. "type": "zip",
  1703. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  1704. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  1705. "shasum": ""
  1706. },
  1707. "require": {
  1708. "php": "^5.5.9 || ^7.0 || ^8.0"
  1709. },
  1710. "require-dev": {
  1711. "bamarni/composer-bin-plugin": "^1.4.1",
  1712. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  1713. },
  1714. "type": "library",
  1715. "extra": {
  1716. "branch-alias": {
  1717. "dev-master": "1.7-dev"
  1718. }
  1719. },
  1720. "autoload": {
  1721. "psr-4": {
  1722. "PhpOption\\": "src/PhpOption/"
  1723. }
  1724. },
  1725. "notification-url": "https://packagist.org/downloads/",
  1726. "license": [
  1727. "Apache-2.0"
  1728. ],
  1729. "authors": [
  1730. {
  1731. "name": "Johannes M. Schmitt",
  1732. "email": "schmittjoh@gmail.com"
  1733. },
  1734. {
  1735. "name": "Graham Campbell",
  1736. "email": "graham@alt-three.com"
  1737. }
  1738. ],
  1739. "description": "Option Type for PHP",
  1740. "keywords": [
  1741. "language",
  1742. "option",
  1743. "php",
  1744. "type"
  1745. ],
  1746. "support": {
  1747. "issues": "https://github.com/schmittjoh/php-option/issues",
  1748. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  1749. },
  1750. "funding": [
  1751. {
  1752. "url": "https://github.com/GrahamCampbell",
  1753. "type": "github"
  1754. },
  1755. {
  1756. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  1757. "type": "tidelift"
  1758. }
  1759. ],
  1760. "time": "2020-07-20T17:29:33+00:00"
  1761. },
  1762. {
  1763. "name": "predis/predis",
  1764. "version": "v1.1.6",
  1765. "source": {
  1766. "type": "git",
  1767. "url": "https://github.com/predis/predis.git",
  1768. "reference": "9930e933c67446962997b05201c69c2319bf26de"
  1769. },
  1770. "dist": {
  1771. "type": "zip",
  1772. "url": "https://api.github.com/repos/predis/predis/zipball/9930e933c67446962997b05201c69c2319bf26de",
  1773. "reference": "9930e933c67446962997b05201c69c2319bf26de",
  1774. "shasum": ""
  1775. },
  1776. "require": {
  1777. "php": ">=5.3.9"
  1778. },
  1779. "require-dev": {
  1780. "cweagans/composer-patches": "^1.6",
  1781. "phpunit/phpunit": "~4.8"
  1782. },
  1783. "suggest": {
  1784. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  1785. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  1786. },
  1787. "type": "library",
  1788. "extra": {
  1789. "composer-exit-on-patch-failure": true,
  1790. "patches": {
  1791. "phpunit/phpunit-mock-objects": {
  1792. "Fix PHP 7 and 8 compatibility": "./tests/phpunit_mock_objects.patch"
  1793. },
  1794. "phpunit/phpunit": {
  1795. "Fix PHP 7 compatibility": "./tests/phpunit_php7.patch",
  1796. "Fix PHP 8 compatibility": "./tests/phpunit_php8.patch"
  1797. }
  1798. }
  1799. },
  1800. "autoload": {
  1801. "psr-4": {
  1802. "Predis\\": "src/"
  1803. }
  1804. },
  1805. "notification-url": "https://packagist.org/downloads/",
  1806. "license": [
  1807. "MIT"
  1808. ],
  1809. "authors": [
  1810. {
  1811. "name": "Daniele Alessandri",
  1812. "email": "suppakilla@gmail.com",
  1813. "homepage": "http://clorophilla.net",
  1814. "role": "Creator & Maintainer"
  1815. },
  1816. {
  1817. "name": "Till Krüss",
  1818. "homepage": "https://till.im",
  1819. "role": "Maintainer"
  1820. }
  1821. ],
  1822. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  1823. "homepage": "http://github.com/predis/predis",
  1824. "keywords": [
  1825. "nosql",
  1826. "predis",
  1827. "redis"
  1828. ],
  1829. "support": {
  1830. "issues": "https://github.com/predis/predis/issues",
  1831. "source": "https://github.com/predis/predis/tree/v1.1.6"
  1832. },
  1833. "funding": [
  1834. {
  1835. "url": "https://github.com/sponsors/tillkruss",
  1836. "type": "github"
  1837. }
  1838. ],
  1839. "time": "2020-09-11T19:18:05+00:00"
  1840. },
  1841. {
  1842. "name": "psr/container",
  1843. "version": "1.0.0",
  1844. "source": {
  1845. "type": "git",
  1846. "url": "https://github.com/php-fig/container.git",
  1847. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1848. },
  1849. "dist": {
  1850. "type": "zip",
  1851. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1852. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1853. "shasum": ""
  1854. },
  1855. "require": {
  1856. "php": ">=5.3.0"
  1857. },
  1858. "type": "library",
  1859. "extra": {
  1860. "branch-alias": {
  1861. "dev-master": "1.0.x-dev"
  1862. }
  1863. },
  1864. "autoload": {
  1865. "psr-4": {
  1866. "Psr\\Container\\": "src/"
  1867. }
  1868. },
  1869. "notification-url": "https://packagist.org/downloads/",
  1870. "license": [
  1871. "MIT"
  1872. ],
  1873. "authors": [
  1874. {
  1875. "name": "PHP-FIG",
  1876. "homepage": "http://www.php-fig.org/"
  1877. }
  1878. ],
  1879. "description": "Common Container Interface (PHP FIG PSR-11)",
  1880. "homepage": "https://github.com/php-fig/container",
  1881. "keywords": [
  1882. "PSR-11",
  1883. "container",
  1884. "container-interface",
  1885. "container-interop",
  1886. "psr"
  1887. ],
  1888. "support": {
  1889. "issues": "https://github.com/php-fig/container/issues",
  1890. "source": "https://github.com/php-fig/container/tree/master"
  1891. },
  1892. "time": "2017-02-14T16:28:37+00:00"
  1893. },
  1894. {
  1895. "name": "psr/event-dispatcher",
  1896. "version": "1.0.0",
  1897. "source": {
  1898. "type": "git",
  1899. "url": "https://github.com/php-fig/event-dispatcher.git",
  1900. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1901. },
  1902. "dist": {
  1903. "type": "zip",
  1904. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1905. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1906. "shasum": ""
  1907. },
  1908. "require": {
  1909. "php": ">=7.2.0"
  1910. },
  1911. "type": "library",
  1912. "extra": {
  1913. "branch-alias": {
  1914. "dev-master": "1.0.x-dev"
  1915. }
  1916. },
  1917. "autoload": {
  1918. "psr-4": {
  1919. "Psr\\EventDispatcher\\": "src/"
  1920. }
  1921. },
  1922. "notification-url": "https://packagist.org/downloads/",
  1923. "license": [
  1924. "MIT"
  1925. ],
  1926. "authors": [
  1927. {
  1928. "name": "PHP-FIG",
  1929. "homepage": "http://www.php-fig.org/"
  1930. }
  1931. ],
  1932. "description": "Standard interfaces for event handling.",
  1933. "keywords": [
  1934. "events",
  1935. "psr",
  1936. "psr-14"
  1937. ],
  1938. "support": {
  1939. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1940. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1941. },
  1942. "time": "2019-01-08T18:20:26+00:00"
  1943. },
  1944. {
  1945. "name": "psr/http-client",
  1946. "version": "1.0.1",
  1947. "source": {
  1948. "type": "git",
  1949. "url": "https://github.com/php-fig/http-client.git",
  1950. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  1951. },
  1952. "dist": {
  1953. "type": "zip",
  1954. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1955. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1956. "shasum": ""
  1957. },
  1958. "require": {
  1959. "php": "^7.0 || ^8.0",
  1960. "psr/http-message": "^1.0"
  1961. },
  1962. "type": "library",
  1963. "extra": {
  1964. "branch-alias": {
  1965. "dev-master": "1.0.x-dev"
  1966. }
  1967. },
  1968. "autoload": {
  1969. "psr-4": {
  1970. "Psr\\Http\\Client\\": "src/"
  1971. }
  1972. },
  1973. "notification-url": "https://packagist.org/downloads/",
  1974. "license": [
  1975. "MIT"
  1976. ],
  1977. "authors": [
  1978. {
  1979. "name": "PHP-FIG",
  1980. "homepage": "http://www.php-fig.org/"
  1981. }
  1982. ],
  1983. "description": "Common interface for HTTP clients",
  1984. "homepage": "https://github.com/php-fig/http-client",
  1985. "keywords": [
  1986. "http",
  1987. "http-client",
  1988. "psr",
  1989. "psr-18"
  1990. ],
  1991. "support": {
  1992. "source": "https://github.com/php-fig/http-client/tree/master"
  1993. },
  1994. "time": "2020-06-29T06:28:15+00:00"
  1995. },
  1996. {
  1997. "name": "psr/http-message",
  1998. "version": "1.0.1",
  1999. "source": {
  2000. "type": "git",
  2001. "url": "https://github.com/php-fig/http-message.git",
  2002. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2003. },
  2004. "dist": {
  2005. "type": "zip",
  2006. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2007. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2008. "shasum": ""
  2009. },
  2010. "require": {
  2011. "php": ">=5.3.0"
  2012. },
  2013. "type": "library",
  2014. "extra": {
  2015. "branch-alias": {
  2016. "dev-master": "1.0.x-dev"
  2017. }
  2018. },
  2019. "autoload": {
  2020. "psr-4": {
  2021. "Psr\\Http\\Message\\": "src/"
  2022. }
  2023. },
  2024. "notification-url": "https://packagist.org/downloads/",
  2025. "license": [
  2026. "MIT"
  2027. ],
  2028. "authors": [
  2029. {
  2030. "name": "PHP-FIG",
  2031. "homepage": "http://www.php-fig.org/"
  2032. }
  2033. ],
  2034. "description": "Common interface for HTTP messages",
  2035. "homepage": "https://github.com/php-fig/http-message",
  2036. "keywords": [
  2037. "http",
  2038. "http-message",
  2039. "psr",
  2040. "psr-7",
  2041. "request",
  2042. "response"
  2043. ],
  2044. "support": {
  2045. "source": "https://github.com/php-fig/http-message/tree/master"
  2046. },
  2047. "time": "2016-08-06T14:39:51+00:00"
  2048. },
  2049. {
  2050. "name": "psr/log",
  2051. "version": "1.1.3",
  2052. "source": {
  2053. "type": "git",
  2054. "url": "https://github.com/php-fig/log.git",
  2055. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  2056. },
  2057. "dist": {
  2058. "type": "zip",
  2059. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  2060. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  2061. "shasum": ""
  2062. },
  2063. "require": {
  2064. "php": ">=5.3.0"
  2065. },
  2066. "type": "library",
  2067. "extra": {
  2068. "branch-alias": {
  2069. "dev-master": "1.1.x-dev"
  2070. }
  2071. },
  2072. "autoload": {
  2073. "psr-4": {
  2074. "Psr\\Log\\": "Psr/Log/"
  2075. }
  2076. },
  2077. "notification-url": "https://packagist.org/downloads/",
  2078. "license": [
  2079. "MIT"
  2080. ],
  2081. "authors": [
  2082. {
  2083. "name": "PHP-FIG",
  2084. "homepage": "http://www.php-fig.org/"
  2085. }
  2086. ],
  2087. "description": "Common interface for logging libraries",
  2088. "homepage": "https://github.com/php-fig/log",
  2089. "keywords": [
  2090. "log",
  2091. "psr",
  2092. "psr-3"
  2093. ],
  2094. "support": {
  2095. "source": "https://github.com/php-fig/log/tree/1.1.3"
  2096. },
  2097. "time": "2020-03-23T09:12:05+00:00"
  2098. },
  2099. {
  2100. "name": "psr/simple-cache",
  2101. "version": "1.0.1",
  2102. "source": {
  2103. "type": "git",
  2104. "url": "https://github.com/php-fig/simple-cache.git",
  2105. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2106. },
  2107. "dist": {
  2108. "type": "zip",
  2109. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2110. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2111. "shasum": ""
  2112. },
  2113. "require": {
  2114. "php": ">=5.3.0"
  2115. },
  2116. "type": "library",
  2117. "extra": {
  2118. "branch-alias": {
  2119. "dev-master": "1.0.x-dev"
  2120. }
  2121. },
  2122. "autoload": {
  2123. "psr-4": {
  2124. "Psr\\SimpleCache\\": "src/"
  2125. }
  2126. },
  2127. "notification-url": "https://packagist.org/downloads/",
  2128. "license": [
  2129. "MIT"
  2130. ],
  2131. "authors": [
  2132. {
  2133. "name": "PHP-FIG",
  2134. "homepage": "http://www.php-fig.org/"
  2135. }
  2136. ],
  2137. "description": "Common interfaces for simple caching",
  2138. "keywords": [
  2139. "cache",
  2140. "caching",
  2141. "psr",
  2142. "psr-16",
  2143. "simple-cache"
  2144. ],
  2145. "support": {
  2146. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2147. },
  2148. "time": "2017-10-23T01:57:42+00:00"
  2149. },
  2150. {
  2151. "name": "psy/psysh",
  2152. "version": "v0.10.6",
  2153. "source": {
  2154. "type": "git",
  2155. "url": "https://github.com/bobthecow/psysh.git",
  2156. "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3"
  2157. },
  2158. "dist": {
  2159. "type": "zip",
  2160. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/6f990c19f91729de8b31e639d6e204ea59f19cf3",
  2161. "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3",
  2162. "shasum": ""
  2163. },
  2164. "require": {
  2165. "dnoegel/php-xdg-base-dir": "0.1.*",
  2166. "ext-json": "*",
  2167. "ext-tokenizer": "*",
  2168. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  2169. "php": "^8.0 || ^7.0 || ^5.5.9",
  2170. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  2171. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  2172. },
  2173. "require-dev": {
  2174. "bamarni/composer-bin-plugin": "^1.2",
  2175. "hoa/console": "3.17.*"
  2176. },
  2177. "suggest": {
  2178. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2179. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2180. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2181. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2182. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2183. },
  2184. "bin": [
  2185. "bin/psysh"
  2186. ],
  2187. "type": "library",
  2188. "extra": {
  2189. "branch-alias": {
  2190. "dev-main": "0.10.x-dev"
  2191. }
  2192. },
  2193. "autoload": {
  2194. "files": [
  2195. "src/functions.php"
  2196. ],
  2197. "psr-4": {
  2198. "Psy\\": "src/"
  2199. }
  2200. },
  2201. "notification-url": "https://packagist.org/downloads/",
  2202. "license": [
  2203. "MIT"
  2204. ],
  2205. "authors": [
  2206. {
  2207. "name": "Justin Hileman",
  2208. "email": "justin@justinhileman.info",
  2209. "homepage": "http://justinhileman.com"
  2210. }
  2211. ],
  2212. "description": "An interactive shell for modern PHP.",
  2213. "homepage": "http://psysh.org",
  2214. "keywords": [
  2215. "REPL",
  2216. "console",
  2217. "interactive",
  2218. "shell"
  2219. ],
  2220. "support": {
  2221. "issues": "https://github.com/bobthecow/psysh/issues",
  2222. "source": "https://github.com/bobthecow/psysh/tree/v0.10.6"
  2223. },
  2224. "time": "2021-01-18T15:53:43+00:00"
  2225. },
  2226. {
  2227. "name": "ralouphie/getallheaders",
  2228. "version": "3.0.3",
  2229. "source": {
  2230. "type": "git",
  2231. "url": "https://github.com/ralouphie/getallheaders.git",
  2232. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2233. },
  2234. "dist": {
  2235. "type": "zip",
  2236. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2237. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2238. "shasum": ""
  2239. },
  2240. "require": {
  2241. "php": ">=5.6"
  2242. },
  2243. "require-dev": {
  2244. "php-coveralls/php-coveralls": "^2.1",
  2245. "phpunit/phpunit": "^5 || ^6.5"
  2246. },
  2247. "type": "library",
  2248. "autoload": {
  2249. "files": [
  2250. "src/getallheaders.php"
  2251. ]
  2252. },
  2253. "notification-url": "https://packagist.org/downloads/",
  2254. "license": [
  2255. "MIT"
  2256. ],
  2257. "authors": [
  2258. {
  2259. "name": "Ralph Khattar",
  2260. "email": "ralph.khattar@gmail.com"
  2261. }
  2262. ],
  2263. "description": "A polyfill for getallheaders.",
  2264. "support": {
  2265. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2266. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2267. },
  2268. "time": "2019-03-08T08:55:37+00:00"
  2269. },
  2270. {
  2271. "name": "ramsey/collection",
  2272. "version": "1.1.3",
  2273. "source": {
  2274. "type": "git",
  2275. "url": "https://github.com/ramsey/collection.git",
  2276. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  2277. },
  2278. "dist": {
  2279. "type": "zip",
  2280. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  2281. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  2282. "shasum": ""
  2283. },
  2284. "require": {
  2285. "php": "^7.2 || ^8"
  2286. },
  2287. "require-dev": {
  2288. "captainhook/captainhook": "^5.3",
  2289. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2290. "ergebnis/composer-normalize": "^2.6",
  2291. "fakerphp/faker": "^1.5",
  2292. "hamcrest/hamcrest-php": "^2",
  2293. "jangregor/phpstan-prophecy": "^0.8",
  2294. "mockery/mockery": "^1.3",
  2295. "phpstan/extension-installer": "^1",
  2296. "phpstan/phpstan": "^0.12.32",
  2297. "phpstan/phpstan-mockery": "^0.12.5",
  2298. "phpstan/phpstan-phpunit": "^0.12.11",
  2299. "phpunit/phpunit": "^8.5 || ^9",
  2300. "psy/psysh": "^0.10.4",
  2301. "slevomat/coding-standard": "^6.3",
  2302. "squizlabs/php_codesniffer": "^3.5",
  2303. "vimeo/psalm": "^4.4"
  2304. },
  2305. "type": "library",
  2306. "autoload": {
  2307. "psr-4": {
  2308. "Ramsey\\Collection\\": "src/"
  2309. }
  2310. },
  2311. "notification-url": "https://packagist.org/downloads/",
  2312. "license": [
  2313. "MIT"
  2314. ],
  2315. "authors": [
  2316. {
  2317. "name": "Ben Ramsey",
  2318. "email": "ben@benramsey.com",
  2319. "homepage": "https://benramsey.com"
  2320. }
  2321. ],
  2322. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  2323. "keywords": [
  2324. "array",
  2325. "collection",
  2326. "hash",
  2327. "map",
  2328. "queue",
  2329. "set"
  2330. ],
  2331. "support": {
  2332. "issues": "https://github.com/ramsey/collection/issues",
  2333. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  2334. },
  2335. "funding": [
  2336. {
  2337. "url": "https://github.com/ramsey",
  2338. "type": "github"
  2339. },
  2340. {
  2341. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  2342. "type": "tidelift"
  2343. }
  2344. ],
  2345. "time": "2021-01-21T17:40:04+00:00"
  2346. },
  2347. {
  2348. "name": "ramsey/uuid",
  2349. "version": "4.1.1",
  2350. "source": {
  2351. "type": "git",
  2352. "url": "https://github.com/ramsey/uuid.git",
  2353. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  2354. },
  2355. "dist": {
  2356. "type": "zip",
  2357. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  2358. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  2359. "shasum": ""
  2360. },
  2361. "require": {
  2362. "brick/math": "^0.8 || ^0.9",
  2363. "ext-json": "*",
  2364. "php": "^7.2 || ^8",
  2365. "ramsey/collection": "^1.0",
  2366. "symfony/polyfill-ctype": "^1.8"
  2367. },
  2368. "replace": {
  2369. "rhumsaa/uuid": "self.version"
  2370. },
  2371. "require-dev": {
  2372. "codeception/aspect-mock": "^3",
  2373. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  2374. "doctrine/annotations": "^1.8",
  2375. "goaop/framework": "^2",
  2376. "mockery/mockery": "^1.3",
  2377. "moontoast/math": "^1.1",
  2378. "paragonie/random-lib": "^2",
  2379. "php-mock/php-mock-mockery": "^1.3",
  2380. "php-mock/php-mock-phpunit": "^2.5",
  2381. "php-parallel-lint/php-parallel-lint": "^1.1",
  2382. "phpbench/phpbench": "^0.17.1",
  2383. "phpstan/extension-installer": "^1.0",
  2384. "phpstan/phpstan": "^0.12",
  2385. "phpstan/phpstan-mockery": "^0.12",
  2386. "phpstan/phpstan-phpunit": "^0.12",
  2387. "phpunit/phpunit": "^8.5",
  2388. "psy/psysh": "^0.10.0",
  2389. "slevomat/coding-standard": "^6.0",
  2390. "squizlabs/php_codesniffer": "^3.5",
  2391. "vimeo/psalm": "3.9.4"
  2392. },
  2393. "suggest": {
  2394. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2395. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  2396. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2397. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2398. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2399. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2400. },
  2401. "type": "library",
  2402. "extra": {
  2403. "branch-alias": {
  2404. "dev-master": "4.x-dev"
  2405. }
  2406. },
  2407. "autoload": {
  2408. "psr-4": {
  2409. "Ramsey\\Uuid\\": "src/"
  2410. },
  2411. "files": [
  2412. "src/functions.php"
  2413. ]
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "MIT"
  2418. ],
  2419. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2420. "homepage": "https://github.com/ramsey/uuid",
  2421. "keywords": [
  2422. "guid",
  2423. "identifier",
  2424. "uuid"
  2425. ],
  2426. "support": {
  2427. "issues": "https://github.com/ramsey/uuid/issues",
  2428. "rss": "https://github.com/ramsey/uuid/releases.atom",
  2429. "source": "https://github.com/ramsey/uuid"
  2430. },
  2431. "funding": [
  2432. {
  2433. "url": "https://github.com/ramsey",
  2434. "type": "github"
  2435. }
  2436. ],
  2437. "time": "2020-08-18T17:17:46+00:00"
  2438. },
  2439. {
  2440. "name": "swiftmailer/swiftmailer",
  2441. "version": "v6.2.5",
  2442. "source": {
  2443. "type": "git",
  2444. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2445. "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7"
  2446. },
  2447. "dist": {
  2448. "type": "zip",
  2449. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/698a6a9f54d7eb321274de3ad19863802c879fb7",
  2450. "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7",
  2451. "shasum": ""
  2452. },
  2453. "require": {
  2454. "egulias/email-validator": "^2.0",
  2455. "php": ">=7.0.0",
  2456. "symfony/polyfill-iconv": "^1.0",
  2457. "symfony/polyfill-intl-idn": "^1.10",
  2458. "symfony/polyfill-mbstring": "^1.0"
  2459. },
  2460. "require-dev": {
  2461. "mockery/mockery": "^1.0",
  2462. "symfony/phpunit-bridge": "^4.4|^5.0"
  2463. },
  2464. "suggest": {
  2465. "ext-intl": "Needed to support internationalized email addresses"
  2466. },
  2467. "type": "library",
  2468. "extra": {
  2469. "branch-alias": {
  2470. "dev-master": "6.2-dev"
  2471. }
  2472. },
  2473. "autoload": {
  2474. "files": [
  2475. "lib/swift_required.php"
  2476. ]
  2477. },
  2478. "notification-url": "https://packagist.org/downloads/",
  2479. "license": [
  2480. "MIT"
  2481. ],
  2482. "authors": [
  2483. {
  2484. "name": "Chris Corbyn"
  2485. },
  2486. {
  2487. "name": "Fabien Potencier",
  2488. "email": "fabien@symfony.com"
  2489. }
  2490. ],
  2491. "description": "Swiftmailer, free feature-rich PHP mailer",
  2492. "homepage": "https://swiftmailer.symfony.com",
  2493. "keywords": [
  2494. "email",
  2495. "mail",
  2496. "mailer"
  2497. ],
  2498. "support": {
  2499. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2500. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.5"
  2501. },
  2502. "funding": [
  2503. {
  2504. "url": "https://github.com/fabpot",
  2505. "type": "github"
  2506. },
  2507. {
  2508. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  2509. "type": "tidelift"
  2510. }
  2511. ],
  2512. "time": "2021-01-12T09:35:59+00:00"
  2513. },
  2514. {
  2515. "name": "symfony/console",
  2516. "version": "v5.2.3",
  2517. "source": {
  2518. "type": "git",
  2519. "url": "https://github.com/symfony/console.git",
  2520. "reference": "89d4b176d12a2946a1ae4e34906a025b7b6b135a"
  2521. },
  2522. "dist": {
  2523. "type": "zip",
  2524. "url": "https://api.github.com/repos/symfony/console/zipball/89d4b176d12a2946a1ae4e34906a025b7b6b135a",
  2525. "reference": "89d4b176d12a2946a1ae4e34906a025b7b6b135a",
  2526. "shasum": ""
  2527. },
  2528. "require": {
  2529. "php": ">=7.2.5",
  2530. "symfony/polyfill-mbstring": "~1.0",
  2531. "symfony/polyfill-php73": "^1.8",
  2532. "symfony/polyfill-php80": "^1.15",
  2533. "symfony/service-contracts": "^1.1|^2",
  2534. "symfony/string": "^5.1"
  2535. },
  2536. "conflict": {
  2537. "symfony/dependency-injection": "<4.4",
  2538. "symfony/dotenv": "<5.1",
  2539. "symfony/event-dispatcher": "<4.4",
  2540. "symfony/lock": "<4.4",
  2541. "symfony/process": "<4.4"
  2542. },
  2543. "provide": {
  2544. "psr/log-implementation": "1.0"
  2545. },
  2546. "require-dev": {
  2547. "psr/log": "~1.0",
  2548. "symfony/config": "^4.4|^5.0",
  2549. "symfony/dependency-injection": "^4.4|^5.0",
  2550. "symfony/event-dispatcher": "^4.4|^5.0",
  2551. "symfony/lock": "^4.4|^5.0",
  2552. "symfony/process": "^4.4|^5.0",
  2553. "symfony/var-dumper": "^4.4|^5.0"
  2554. },
  2555. "suggest": {
  2556. "psr/log": "For using the console logger",
  2557. "symfony/event-dispatcher": "",
  2558. "symfony/lock": "",
  2559. "symfony/process": ""
  2560. },
  2561. "type": "library",
  2562. "autoload": {
  2563. "psr-4": {
  2564. "Symfony\\Component\\Console\\": ""
  2565. },
  2566. "exclude-from-classmap": [
  2567. "/Tests/"
  2568. ]
  2569. },
  2570. "notification-url": "https://packagist.org/downloads/",
  2571. "license": [
  2572. "MIT"
  2573. ],
  2574. "authors": [
  2575. {
  2576. "name": "Fabien Potencier",
  2577. "email": "fabien@symfony.com"
  2578. },
  2579. {
  2580. "name": "Symfony Community",
  2581. "homepage": "https://symfony.com/contributors"
  2582. }
  2583. ],
  2584. "description": "Eases the creation of beautiful and testable command line interfaces",
  2585. "homepage": "https://symfony.com",
  2586. "keywords": [
  2587. "cli",
  2588. "command line",
  2589. "console",
  2590. "terminal"
  2591. ],
  2592. "support": {
  2593. "source": "https://github.com/symfony/console/tree/v5.2.3"
  2594. },
  2595. "funding": [
  2596. {
  2597. "url": "https://symfony.com/sponsor",
  2598. "type": "custom"
  2599. },
  2600. {
  2601. "url": "https://github.com/fabpot",
  2602. "type": "github"
  2603. },
  2604. {
  2605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2606. "type": "tidelift"
  2607. }
  2608. ],
  2609. "time": "2021-01-28T22:06:19+00:00"
  2610. },
  2611. {
  2612. "name": "symfony/css-selector",
  2613. "version": "v5.2.3",
  2614. "source": {
  2615. "type": "git",
  2616. "url": "https://github.com/symfony/css-selector.git",
  2617. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f"
  2618. },
  2619. "dist": {
  2620. "type": "zip",
  2621. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f65f217b3314504a1ec99c2d6ef69016bb13490f",
  2622. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f",
  2623. "shasum": ""
  2624. },
  2625. "require": {
  2626. "php": ">=7.2.5"
  2627. },
  2628. "type": "library",
  2629. "autoload": {
  2630. "psr-4": {
  2631. "Symfony\\Component\\CssSelector\\": ""
  2632. },
  2633. "exclude-from-classmap": [
  2634. "/Tests/"
  2635. ]
  2636. },
  2637. "notification-url": "https://packagist.org/downloads/",
  2638. "license": [
  2639. "MIT"
  2640. ],
  2641. "authors": [
  2642. {
  2643. "name": "Fabien Potencier",
  2644. "email": "fabien@symfony.com"
  2645. },
  2646. {
  2647. "name": "Jean-François Simon",
  2648. "email": "jeanfrancois.simon@sensiolabs.com"
  2649. },
  2650. {
  2651. "name": "Symfony Community",
  2652. "homepage": "https://symfony.com/contributors"
  2653. }
  2654. ],
  2655. "description": "Converts CSS selectors to XPath expressions",
  2656. "homepage": "https://symfony.com",
  2657. "support": {
  2658. "source": "https://github.com/symfony/css-selector/tree/v5.2.3"
  2659. },
  2660. "funding": [
  2661. {
  2662. "url": "https://symfony.com/sponsor",
  2663. "type": "custom"
  2664. },
  2665. {
  2666. "url": "https://github.com/fabpot",
  2667. "type": "github"
  2668. },
  2669. {
  2670. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2671. "type": "tidelift"
  2672. }
  2673. ],
  2674. "time": "2021-01-27T10:01:46+00:00"
  2675. },
  2676. {
  2677. "name": "symfony/deprecation-contracts",
  2678. "version": "v2.2.0",
  2679. "source": {
  2680. "type": "git",
  2681. "url": "https://github.com/symfony/deprecation-contracts.git",
  2682. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  2683. },
  2684. "dist": {
  2685. "type": "zip",
  2686. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  2687. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  2688. "shasum": ""
  2689. },
  2690. "require": {
  2691. "php": ">=7.1"
  2692. },
  2693. "type": "library",
  2694. "extra": {
  2695. "branch-alias": {
  2696. "dev-master": "2.2-dev"
  2697. },
  2698. "thanks": {
  2699. "name": "symfony/contracts",
  2700. "url": "https://github.com/symfony/contracts"
  2701. }
  2702. },
  2703. "autoload": {
  2704. "files": [
  2705. "function.php"
  2706. ]
  2707. },
  2708. "notification-url": "https://packagist.org/downloads/",
  2709. "license": [
  2710. "MIT"
  2711. ],
  2712. "authors": [
  2713. {
  2714. "name": "Nicolas Grekas",
  2715. "email": "p@tchwork.com"
  2716. },
  2717. {
  2718. "name": "Symfony Community",
  2719. "homepage": "https://symfony.com/contributors"
  2720. }
  2721. ],
  2722. "description": "A generic function and convention to trigger deprecation notices",
  2723. "homepage": "https://symfony.com",
  2724. "support": {
  2725. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  2726. },
  2727. "funding": [
  2728. {
  2729. "url": "https://symfony.com/sponsor",
  2730. "type": "custom"
  2731. },
  2732. {
  2733. "url": "https://github.com/fabpot",
  2734. "type": "github"
  2735. },
  2736. {
  2737. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2738. "type": "tidelift"
  2739. }
  2740. ],
  2741. "time": "2020-09-07T11:33:47+00:00"
  2742. },
  2743. {
  2744. "name": "symfony/error-handler",
  2745. "version": "v5.2.3",
  2746. "source": {
  2747. "type": "git",
  2748. "url": "https://github.com/symfony/error-handler.git",
  2749. "reference": "48f18b3609e120ea66d59142c23dc53e9562c26d"
  2750. },
  2751. "dist": {
  2752. "type": "zip",
  2753. "url": "https://api.github.com/repos/symfony/error-handler/zipball/48f18b3609e120ea66d59142c23dc53e9562c26d",
  2754. "reference": "48f18b3609e120ea66d59142c23dc53e9562c26d",
  2755. "shasum": ""
  2756. },
  2757. "require": {
  2758. "php": ">=7.2.5",
  2759. "psr/log": "^1.0",
  2760. "symfony/polyfill-php80": "^1.15",
  2761. "symfony/var-dumper": "^4.4|^5.0"
  2762. },
  2763. "require-dev": {
  2764. "symfony/deprecation-contracts": "^2.1",
  2765. "symfony/http-kernel": "^4.4|^5.0",
  2766. "symfony/serializer": "^4.4|^5.0"
  2767. },
  2768. "type": "library",
  2769. "autoload": {
  2770. "psr-4": {
  2771. "Symfony\\Component\\ErrorHandler\\": ""
  2772. },
  2773. "exclude-from-classmap": [
  2774. "/Tests/"
  2775. ]
  2776. },
  2777. "notification-url": "https://packagist.org/downloads/",
  2778. "license": [
  2779. "MIT"
  2780. ],
  2781. "authors": [
  2782. {
  2783. "name": "Fabien Potencier",
  2784. "email": "fabien@symfony.com"
  2785. },
  2786. {
  2787. "name": "Symfony Community",
  2788. "homepage": "https://symfony.com/contributors"
  2789. }
  2790. ],
  2791. "description": "Provides tools to manage errors and ease debugging PHP code",
  2792. "homepage": "https://symfony.com",
  2793. "support": {
  2794. "source": "https://github.com/symfony/error-handler/tree/v5.2.3"
  2795. },
  2796. "funding": [
  2797. {
  2798. "url": "https://symfony.com/sponsor",
  2799. "type": "custom"
  2800. },
  2801. {
  2802. "url": "https://github.com/fabpot",
  2803. "type": "github"
  2804. },
  2805. {
  2806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2807. "type": "tidelift"
  2808. }
  2809. ],
  2810. "time": "2021-01-28T22:06:19+00:00"
  2811. },
  2812. {
  2813. "name": "symfony/event-dispatcher",
  2814. "version": "v5.2.3",
  2815. "source": {
  2816. "type": "git",
  2817. "url": "https://github.com/symfony/event-dispatcher.git",
  2818. "reference": "4f9760f8074978ad82e2ce854dff79a71fe45367"
  2819. },
  2820. "dist": {
  2821. "type": "zip",
  2822. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4f9760f8074978ad82e2ce854dff79a71fe45367",
  2823. "reference": "4f9760f8074978ad82e2ce854dff79a71fe45367",
  2824. "shasum": ""
  2825. },
  2826. "require": {
  2827. "php": ">=7.2.5",
  2828. "symfony/deprecation-contracts": "^2.1",
  2829. "symfony/event-dispatcher-contracts": "^2",
  2830. "symfony/polyfill-php80": "^1.15"
  2831. },
  2832. "conflict": {
  2833. "symfony/dependency-injection": "<4.4"
  2834. },
  2835. "provide": {
  2836. "psr/event-dispatcher-implementation": "1.0",
  2837. "symfony/event-dispatcher-implementation": "2.0"
  2838. },
  2839. "require-dev": {
  2840. "psr/log": "~1.0",
  2841. "symfony/config": "^4.4|^5.0",
  2842. "symfony/dependency-injection": "^4.4|^5.0",
  2843. "symfony/error-handler": "^4.4|^5.0",
  2844. "symfony/expression-language": "^4.4|^5.0",
  2845. "symfony/http-foundation": "^4.4|^5.0",
  2846. "symfony/service-contracts": "^1.1|^2",
  2847. "symfony/stopwatch": "^4.4|^5.0"
  2848. },
  2849. "suggest": {
  2850. "symfony/dependency-injection": "",
  2851. "symfony/http-kernel": ""
  2852. },
  2853. "type": "library",
  2854. "autoload": {
  2855. "psr-4": {
  2856. "Symfony\\Component\\EventDispatcher\\": ""
  2857. },
  2858. "exclude-from-classmap": [
  2859. "/Tests/"
  2860. ]
  2861. },
  2862. "notification-url": "https://packagist.org/downloads/",
  2863. "license": [
  2864. "MIT"
  2865. ],
  2866. "authors": [
  2867. {
  2868. "name": "Fabien Potencier",
  2869. "email": "fabien@symfony.com"
  2870. },
  2871. {
  2872. "name": "Symfony Community",
  2873. "homepage": "https://symfony.com/contributors"
  2874. }
  2875. ],
  2876. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2877. "homepage": "https://symfony.com",
  2878. "support": {
  2879. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.3"
  2880. },
  2881. "funding": [
  2882. {
  2883. "url": "https://symfony.com/sponsor",
  2884. "type": "custom"
  2885. },
  2886. {
  2887. "url": "https://github.com/fabpot",
  2888. "type": "github"
  2889. },
  2890. {
  2891. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2892. "type": "tidelift"
  2893. }
  2894. ],
  2895. "time": "2021-01-27T10:36:42+00:00"
  2896. },
  2897. {
  2898. "name": "symfony/event-dispatcher-contracts",
  2899. "version": "v2.2.0",
  2900. "source": {
  2901. "type": "git",
  2902. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2903. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  2904. },
  2905. "dist": {
  2906. "type": "zip",
  2907. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  2908. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  2909. "shasum": ""
  2910. },
  2911. "require": {
  2912. "php": ">=7.2.5",
  2913. "psr/event-dispatcher": "^1"
  2914. },
  2915. "suggest": {
  2916. "symfony/event-dispatcher-implementation": ""
  2917. },
  2918. "type": "library",
  2919. "extra": {
  2920. "branch-alias": {
  2921. "dev-master": "2.2-dev"
  2922. },
  2923. "thanks": {
  2924. "name": "symfony/contracts",
  2925. "url": "https://github.com/symfony/contracts"
  2926. }
  2927. },
  2928. "autoload": {
  2929. "psr-4": {
  2930. "Symfony\\Contracts\\EventDispatcher\\": ""
  2931. }
  2932. },
  2933. "notification-url": "https://packagist.org/downloads/",
  2934. "license": [
  2935. "MIT"
  2936. ],
  2937. "authors": [
  2938. {
  2939. "name": "Nicolas Grekas",
  2940. "email": "p@tchwork.com"
  2941. },
  2942. {
  2943. "name": "Symfony Community",
  2944. "homepage": "https://symfony.com/contributors"
  2945. }
  2946. ],
  2947. "description": "Generic abstractions related to dispatching event",
  2948. "homepage": "https://symfony.com",
  2949. "keywords": [
  2950. "abstractions",
  2951. "contracts",
  2952. "decoupling",
  2953. "interfaces",
  2954. "interoperability",
  2955. "standards"
  2956. ],
  2957. "support": {
  2958. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  2959. },
  2960. "funding": [
  2961. {
  2962. "url": "https://symfony.com/sponsor",
  2963. "type": "custom"
  2964. },
  2965. {
  2966. "url": "https://github.com/fabpot",
  2967. "type": "github"
  2968. },
  2969. {
  2970. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2971. "type": "tidelift"
  2972. }
  2973. ],
  2974. "time": "2020-09-07T11:33:47+00:00"
  2975. },
  2976. {
  2977. "name": "symfony/finder",
  2978. "version": "v5.2.3",
  2979. "source": {
  2980. "type": "git",
  2981. "url": "https://github.com/symfony/finder.git",
  2982. "reference": "4adc8d172d602008c204c2e16956f99257248e03"
  2983. },
  2984. "dist": {
  2985. "type": "zip",
  2986. "url": "https://api.github.com/repos/symfony/finder/zipball/4adc8d172d602008c204c2e16956f99257248e03",
  2987. "reference": "4adc8d172d602008c204c2e16956f99257248e03",
  2988. "shasum": ""
  2989. },
  2990. "require": {
  2991. "php": ">=7.2.5"
  2992. },
  2993. "type": "library",
  2994. "autoload": {
  2995. "psr-4": {
  2996. "Symfony\\Component\\Finder\\": ""
  2997. },
  2998. "exclude-from-classmap": [
  2999. "/Tests/"
  3000. ]
  3001. },
  3002. "notification-url": "https://packagist.org/downloads/",
  3003. "license": [
  3004. "MIT"
  3005. ],
  3006. "authors": [
  3007. {
  3008. "name": "Fabien Potencier",
  3009. "email": "fabien@symfony.com"
  3010. },
  3011. {
  3012. "name": "Symfony Community",
  3013. "homepage": "https://symfony.com/contributors"
  3014. }
  3015. ],
  3016. "description": "Finds files and directories via an intuitive fluent interface",
  3017. "homepage": "https://symfony.com",
  3018. "support": {
  3019. "source": "https://github.com/symfony/finder/tree/v5.2.3"
  3020. },
  3021. "funding": [
  3022. {
  3023. "url": "https://symfony.com/sponsor",
  3024. "type": "custom"
  3025. },
  3026. {
  3027. "url": "https://github.com/fabpot",
  3028. "type": "github"
  3029. },
  3030. {
  3031. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3032. "type": "tidelift"
  3033. }
  3034. ],
  3035. "time": "2021-01-28T22:06:19+00:00"
  3036. },
  3037. {
  3038. "name": "symfony/http-client-contracts",
  3039. "version": "v2.3.1",
  3040. "source": {
  3041. "type": "git",
  3042. "url": "https://github.com/symfony/http-client-contracts.git",
  3043. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  3044. },
  3045. "dist": {
  3046. "type": "zip",
  3047. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  3048. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  3049. "shasum": ""
  3050. },
  3051. "require": {
  3052. "php": ">=7.2.5"
  3053. },
  3054. "suggest": {
  3055. "symfony/http-client-implementation": ""
  3056. },
  3057. "type": "library",
  3058. "extra": {
  3059. "branch-version": "2.3",
  3060. "branch-alias": {
  3061. "dev-main": "2.3-dev"
  3062. },
  3063. "thanks": {
  3064. "name": "symfony/contracts",
  3065. "url": "https://github.com/symfony/contracts"
  3066. }
  3067. },
  3068. "autoload": {
  3069. "psr-4": {
  3070. "Symfony\\Contracts\\HttpClient\\": ""
  3071. }
  3072. },
  3073. "notification-url": "https://packagist.org/downloads/",
  3074. "license": [
  3075. "MIT"
  3076. ],
  3077. "authors": [
  3078. {
  3079. "name": "Nicolas Grekas",
  3080. "email": "p@tchwork.com"
  3081. },
  3082. {
  3083. "name": "Symfony Community",
  3084. "homepage": "https://symfony.com/contributors"
  3085. }
  3086. ],
  3087. "description": "Generic abstractions related to HTTP clients",
  3088. "homepage": "https://symfony.com",
  3089. "keywords": [
  3090. "abstractions",
  3091. "contracts",
  3092. "decoupling",
  3093. "interfaces",
  3094. "interoperability",
  3095. "standards"
  3096. ],
  3097. "support": {
  3098. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  3099. },
  3100. "funding": [
  3101. {
  3102. "url": "https://symfony.com/sponsor",
  3103. "type": "custom"
  3104. },
  3105. {
  3106. "url": "https://github.com/fabpot",
  3107. "type": "github"
  3108. },
  3109. {
  3110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3111. "type": "tidelift"
  3112. }
  3113. ],
  3114. "time": "2020-10-14T17:08:19+00:00"
  3115. },
  3116. {
  3117. "name": "symfony/http-foundation",
  3118. "version": "v5.2.3",
  3119. "source": {
  3120. "type": "git",
  3121. "url": "https://github.com/symfony/http-foundation.git",
  3122. "reference": "20c554c0f03f7cde5ce230ed248470cccbc34c36"
  3123. },
  3124. "dist": {
  3125. "type": "zip",
  3126. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/20c554c0f03f7cde5ce230ed248470cccbc34c36",
  3127. "reference": "20c554c0f03f7cde5ce230ed248470cccbc34c36",
  3128. "shasum": ""
  3129. },
  3130. "require": {
  3131. "php": ">=7.2.5",
  3132. "symfony/deprecation-contracts": "^2.1",
  3133. "symfony/polyfill-mbstring": "~1.1",
  3134. "symfony/polyfill-php80": "^1.15"
  3135. },
  3136. "require-dev": {
  3137. "predis/predis": "~1.0",
  3138. "symfony/cache": "^4.4|^5.0",
  3139. "symfony/expression-language": "^4.4|^5.0",
  3140. "symfony/mime": "^4.4|^5.0"
  3141. },
  3142. "suggest": {
  3143. "symfony/mime": "To use the file extension guesser"
  3144. },
  3145. "type": "library",
  3146. "autoload": {
  3147. "psr-4": {
  3148. "Symfony\\Component\\HttpFoundation\\": ""
  3149. },
  3150. "exclude-from-classmap": [
  3151. "/Tests/"
  3152. ]
  3153. },
  3154. "notification-url": "https://packagist.org/downloads/",
  3155. "license": [
  3156. "MIT"
  3157. ],
  3158. "authors": [
  3159. {
  3160. "name": "Fabien Potencier",
  3161. "email": "fabien@symfony.com"
  3162. },
  3163. {
  3164. "name": "Symfony Community",
  3165. "homepage": "https://symfony.com/contributors"
  3166. }
  3167. ],
  3168. "description": "Defines an object-oriented layer for the HTTP specification",
  3169. "homepage": "https://symfony.com",
  3170. "support": {
  3171. "source": "https://github.com/symfony/http-foundation/tree/v5.2.3"
  3172. },
  3173. "funding": [
  3174. {
  3175. "url": "https://symfony.com/sponsor",
  3176. "type": "custom"
  3177. },
  3178. {
  3179. "url": "https://github.com/fabpot",
  3180. "type": "github"
  3181. },
  3182. {
  3183. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3184. "type": "tidelift"
  3185. }
  3186. ],
  3187. "time": "2021-02-03T04:42:09+00:00"
  3188. },
  3189. {
  3190. "name": "symfony/http-kernel",
  3191. "version": "v5.2.3",
  3192. "source": {
  3193. "type": "git",
  3194. "url": "https://github.com/symfony/http-kernel.git",
  3195. "reference": "89bac04f29e7b0b52f9fa6a4288ca7a8f90a1a05"
  3196. },
  3197. "dist": {
  3198. "type": "zip",
  3199. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/89bac04f29e7b0b52f9fa6a4288ca7a8f90a1a05",
  3200. "reference": "89bac04f29e7b0b52f9fa6a4288ca7a8f90a1a05",
  3201. "shasum": ""
  3202. },
  3203. "require": {
  3204. "php": ">=7.2.5",
  3205. "psr/log": "~1.0",
  3206. "symfony/deprecation-contracts": "^2.1",
  3207. "symfony/error-handler": "^4.4|^5.0",
  3208. "symfony/event-dispatcher": "^5.0",
  3209. "symfony/http-client-contracts": "^1.1|^2",
  3210. "symfony/http-foundation": "^4.4|^5.0",
  3211. "symfony/polyfill-ctype": "^1.8",
  3212. "symfony/polyfill-php73": "^1.9",
  3213. "symfony/polyfill-php80": "^1.15"
  3214. },
  3215. "conflict": {
  3216. "symfony/browser-kit": "<4.4",
  3217. "symfony/cache": "<5.0",
  3218. "symfony/config": "<5.0",
  3219. "symfony/console": "<4.4",
  3220. "symfony/dependency-injection": "<5.1.8",
  3221. "symfony/doctrine-bridge": "<5.0",
  3222. "symfony/form": "<5.0",
  3223. "symfony/http-client": "<5.0",
  3224. "symfony/mailer": "<5.0",
  3225. "symfony/messenger": "<5.0",
  3226. "symfony/translation": "<5.0",
  3227. "symfony/twig-bridge": "<5.0",
  3228. "symfony/validator": "<5.0",
  3229. "twig/twig": "<2.13"
  3230. },
  3231. "provide": {
  3232. "psr/log-implementation": "1.0"
  3233. },
  3234. "require-dev": {
  3235. "psr/cache": "~1.0",
  3236. "symfony/browser-kit": "^4.4|^5.0",
  3237. "symfony/config": "^5.0",
  3238. "symfony/console": "^4.4|^5.0",
  3239. "symfony/css-selector": "^4.4|^5.0",
  3240. "symfony/dependency-injection": "^5.1.8",
  3241. "symfony/dom-crawler": "^4.4|^5.0",
  3242. "symfony/expression-language": "^4.4|^5.0",
  3243. "symfony/finder": "^4.4|^5.0",
  3244. "symfony/process": "^4.4|^5.0",
  3245. "symfony/routing": "^4.4|^5.0",
  3246. "symfony/stopwatch": "^4.4|^5.0",
  3247. "symfony/translation": "^4.4|^5.0",
  3248. "symfony/translation-contracts": "^1.1|^2",
  3249. "twig/twig": "^2.13|^3.0.4"
  3250. },
  3251. "suggest": {
  3252. "symfony/browser-kit": "",
  3253. "symfony/config": "",
  3254. "symfony/console": "",
  3255. "symfony/dependency-injection": ""
  3256. },
  3257. "type": "library",
  3258. "autoload": {
  3259. "psr-4": {
  3260. "Symfony\\Component\\HttpKernel\\": ""
  3261. },
  3262. "exclude-from-classmap": [
  3263. "/Tests/"
  3264. ]
  3265. },
  3266. "notification-url": "https://packagist.org/downloads/",
  3267. "license": [
  3268. "MIT"
  3269. ],
  3270. "authors": [
  3271. {
  3272. "name": "Fabien Potencier",
  3273. "email": "fabien@symfony.com"
  3274. },
  3275. {
  3276. "name": "Symfony Community",
  3277. "homepage": "https://symfony.com/contributors"
  3278. }
  3279. ],
  3280. "description": "Provides a structured process for converting a Request into a Response",
  3281. "homepage": "https://symfony.com",
  3282. "support": {
  3283. "source": "https://github.com/symfony/http-kernel/tree/v5.2.3"
  3284. },
  3285. "funding": [
  3286. {
  3287. "url": "https://symfony.com/sponsor",
  3288. "type": "custom"
  3289. },
  3290. {
  3291. "url": "https://github.com/fabpot",
  3292. "type": "github"
  3293. },
  3294. {
  3295. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3296. "type": "tidelift"
  3297. }
  3298. ],
  3299. "time": "2021-02-03T04:51:58+00:00"
  3300. },
  3301. {
  3302. "name": "symfony/mime",
  3303. "version": "v5.2.3",
  3304. "source": {
  3305. "type": "git",
  3306. "url": "https://github.com/symfony/mime.git",
  3307. "reference": "7dee6a43493f39b51ff6c5bb2bd576fe40a76c86"
  3308. },
  3309. "dist": {
  3310. "type": "zip",
  3311. "url": "https://api.github.com/repos/symfony/mime/zipball/7dee6a43493f39b51ff6c5bb2bd576fe40a76c86",
  3312. "reference": "7dee6a43493f39b51ff6c5bb2bd576fe40a76c86",
  3313. "shasum": ""
  3314. },
  3315. "require": {
  3316. "php": ">=7.2.5",
  3317. "symfony/deprecation-contracts": "^2.1",
  3318. "symfony/polyfill-intl-idn": "^1.10",
  3319. "symfony/polyfill-mbstring": "^1.0",
  3320. "symfony/polyfill-php80": "^1.15"
  3321. },
  3322. "conflict": {
  3323. "phpdocumentor/reflection-docblock": "<3.2.2",
  3324. "phpdocumentor/type-resolver": "<1.4.0",
  3325. "symfony/mailer": "<4.4"
  3326. },
  3327. "require-dev": {
  3328. "egulias/email-validator": "^2.1.10",
  3329. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3330. "symfony/dependency-injection": "^4.4|^5.0",
  3331. "symfony/property-access": "^4.4|^5.1",
  3332. "symfony/property-info": "^4.4|^5.1",
  3333. "symfony/serializer": "^5.2"
  3334. },
  3335. "type": "library",
  3336. "autoload": {
  3337. "psr-4": {
  3338. "Symfony\\Component\\Mime\\": ""
  3339. },
  3340. "exclude-from-classmap": [
  3341. "/Tests/"
  3342. ]
  3343. },
  3344. "notification-url": "https://packagist.org/downloads/",
  3345. "license": [
  3346. "MIT"
  3347. ],
  3348. "authors": [
  3349. {
  3350. "name": "Fabien Potencier",
  3351. "email": "fabien@symfony.com"
  3352. },
  3353. {
  3354. "name": "Symfony Community",
  3355. "homepage": "https://symfony.com/contributors"
  3356. }
  3357. ],
  3358. "description": "Allows manipulating MIME messages",
  3359. "homepage": "https://symfony.com",
  3360. "keywords": [
  3361. "mime",
  3362. "mime-type"
  3363. ],
  3364. "support": {
  3365. "source": "https://github.com/symfony/mime/tree/v5.2.3"
  3366. },
  3367. "funding": [
  3368. {
  3369. "url": "https://symfony.com/sponsor",
  3370. "type": "custom"
  3371. },
  3372. {
  3373. "url": "https://github.com/fabpot",
  3374. "type": "github"
  3375. },
  3376. {
  3377. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3378. "type": "tidelift"
  3379. }
  3380. ],
  3381. "time": "2021-02-02T06:10:15+00:00"
  3382. },
  3383. {
  3384. "name": "symfony/polyfill-ctype",
  3385. "version": "v1.22.0",
  3386. "source": {
  3387. "type": "git",
  3388. "url": "https://github.com/symfony/polyfill-ctype.git",
  3389. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  3390. },
  3391. "dist": {
  3392. "type": "zip",
  3393. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  3394. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  3395. "shasum": ""
  3396. },
  3397. "require": {
  3398. "php": ">=7.1"
  3399. },
  3400. "suggest": {
  3401. "ext-ctype": "For best performance"
  3402. },
  3403. "type": "library",
  3404. "extra": {
  3405. "branch-alias": {
  3406. "dev-main": "1.22-dev"
  3407. },
  3408. "thanks": {
  3409. "name": "symfony/polyfill",
  3410. "url": "https://github.com/symfony/polyfill"
  3411. }
  3412. },
  3413. "autoload": {
  3414. "psr-4": {
  3415. "Symfony\\Polyfill\\Ctype\\": ""
  3416. },
  3417. "files": [
  3418. "bootstrap.php"
  3419. ]
  3420. },
  3421. "notification-url": "https://packagist.org/downloads/",
  3422. "license": [
  3423. "MIT"
  3424. ],
  3425. "authors": [
  3426. {
  3427. "name": "Gert de Pagter",
  3428. "email": "BackEndTea@gmail.com"
  3429. },
  3430. {
  3431. "name": "Symfony Community",
  3432. "homepage": "https://symfony.com/contributors"
  3433. }
  3434. ],
  3435. "description": "Symfony polyfill for ctype functions",
  3436. "homepage": "https://symfony.com",
  3437. "keywords": [
  3438. "compatibility",
  3439. "ctype",
  3440. "polyfill",
  3441. "portable"
  3442. ],
  3443. "support": {
  3444. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.0"
  3445. },
  3446. "funding": [
  3447. {
  3448. "url": "https://symfony.com/sponsor",
  3449. "type": "custom"
  3450. },
  3451. {
  3452. "url": "https://github.com/fabpot",
  3453. "type": "github"
  3454. },
  3455. {
  3456. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3457. "type": "tidelift"
  3458. }
  3459. ],
  3460. "time": "2021-01-07T16:49:33+00:00"
  3461. },
  3462. {
  3463. "name": "symfony/polyfill-iconv",
  3464. "version": "v1.22.0",
  3465. "source": {
  3466. "type": "git",
  3467. "url": "https://github.com/symfony/polyfill-iconv.git",
  3468. "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6"
  3469. },
  3470. "dist": {
  3471. "type": "zip",
  3472. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
  3473. "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
  3474. "shasum": ""
  3475. },
  3476. "require": {
  3477. "php": ">=7.1"
  3478. },
  3479. "suggest": {
  3480. "ext-iconv": "For best performance"
  3481. },
  3482. "type": "library",
  3483. "extra": {
  3484. "branch-alias": {
  3485. "dev-main": "1.22-dev"
  3486. },
  3487. "thanks": {
  3488. "name": "symfony/polyfill",
  3489. "url": "https://github.com/symfony/polyfill"
  3490. }
  3491. },
  3492. "autoload": {
  3493. "psr-4": {
  3494. "Symfony\\Polyfill\\Iconv\\": ""
  3495. },
  3496. "files": [
  3497. "bootstrap.php"
  3498. ]
  3499. },
  3500. "notification-url": "https://packagist.org/downloads/",
  3501. "license": [
  3502. "MIT"
  3503. ],
  3504. "authors": [
  3505. {
  3506. "name": "Nicolas Grekas",
  3507. "email": "p@tchwork.com"
  3508. },
  3509. {
  3510. "name": "Symfony Community",
  3511. "homepage": "https://symfony.com/contributors"
  3512. }
  3513. ],
  3514. "description": "Symfony polyfill for the Iconv extension",
  3515. "homepage": "https://symfony.com",
  3516. "keywords": [
  3517. "compatibility",
  3518. "iconv",
  3519. "polyfill",
  3520. "portable",
  3521. "shim"
  3522. ],
  3523. "support": {
  3524. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.0"
  3525. },
  3526. "funding": [
  3527. {
  3528. "url": "https://symfony.com/sponsor",
  3529. "type": "custom"
  3530. },
  3531. {
  3532. "url": "https://github.com/fabpot",
  3533. "type": "github"
  3534. },
  3535. {
  3536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3537. "type": "tidelift"
  3538. }
  3539. ],
  3540. "time": "2021-01-07T16:49:33+00:00"
  3541. },
  3542. {
  3543. "name": "symfony/polyfill-intl-grapheme",
  3544. "version": "v1.22.0",
  3545. "source": {
  3546. "type": "git",
  3547. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3548. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af"
  3549. },
  3550. "dist": {
  3551. "type": "zip",
  3552. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/267a9adeb8ecb8071040a740930e077cdfb987af",
  3553. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af",
  3554. "shasum": ""
  3555. },
  3556. "require": {
  3557. "php": ">=7.1"
  3558. },
  3559. "suggest": {
  3560. "ext-intl": "For best performance"
  3561. },
  3562. "type": "library",
  3563. "extra": {
  3564. "branch-alias": {
  3565. "dev-main": "1.22-dev"
  3566. },
  3567. "thanks": {
  3568. "name": "symfony/polyfill",
  3569. "url": "https://github.com/symfony/polyfill"
  3570. }
  3571. },
  3572. "autoload": {
  3573. "psr-4": {
  3574. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3575. },
  3576. "files": [
  3577. "bootstrap.php"
  3578. ]
  3579. },
  3580. "notification-url": "https://packagist.org/downloads/",
  3581. "license": [
  3582. "MIT"
  3583. ],
  3584. "authors": [
  3585. {
  3586. "name": "Nicolas Grekas",
  3587. "email": "p@tchwork.com"
  3588. },
  3589. {
  3590. "name": "Symfony Community",
  3591. "homepage": "https://symfony.com/contributors"
  3592. }
  3593. ],
  3594. "description": "Symfony polyfill for intl's grapheme_* functions",
  3595. "homepage": "https://symfony.com",
  3596. "keywords": [
  3597. "compatibility",
  3598. "grapheme",
  3599. "intl",
  3600. "polyfill",
  3601. "portable",
  3602. "shim"
  3603. ],
  3604. "support": {
  3605. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.0"
  3606. },
  3607. "funding": [
  3608. {
  3609. "url": "https://symfony.com/sponsor",
  3610. "type": "custom"
  3611. },
  3612. {
  3613. "url": "https://github.com/fabpot",
  3614. "type": "github"
  3615. },
  3616. {
  3617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3618. "type": "tidelift"
  3619. }
  3620. ],
  3621. "time": "2021-01-07T16:49:33+00:00"
  3622. },
  3623. {
  3624. "name": "symfony/polyfill-intl-idn",
  3625. "version": "v1.22.0",
  3626. "source": {
  3627. "type": "git",
  3628. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3629. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44"
  3630. },
  3631. "dist": {
  3632. "type": "zip",
  3633. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  3634. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  3635. "shasum": ""
  3636. },
  3637. "require": {
  3638. "php": ">=7.1",
  3639. "symfony/polyfill-intl-normalizer": "^1.10",
  3640. "symfony/polyfill-php72": "^1.10"
  3641. },
  3642. "suggest": {
  3643. "ext-intl": "For best performance"
  3644. },
  3645. "type": "library",
  3646. "extra": {
  3647. "branch-alias": {
  3648. "dev-main": "1.22-dev"
  3649. },
  3650. "thanks": {
  3651. "name": "symfony/polyfill",
  3652. "url": "https://github.com/symfony/polyfill"
  3653. }
  3654. },
  3655. "autoload": {
  3656. "psr-4": {
  3657. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3658. },
  3659. "files": [
  3660. "bootstrap.php"
  3661. ]
  3662. },
  3663. "notification-url": "https://packagist.org/downloads/",
  3664. "license": [
  3665. "MIT"
  3666. ],
  3667. "authors": [
  3668. {
  3669. "name": "Laurent Bassin",
  3670. "email": "laurent@bassin.info"
  3671. },
  3672. {
  3673. "name": "Trevor Rowbotham",
  3674. "email": "trevor.rowbotham@pm.me"
  3675. },
  3676. {
  3677. "name": "Symfony Community",
  3678. "homepage": "https://symfony.com/contributors"
  3679. }
  3680. ],
  3681. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3682. "homepage": "https://symfony.com",
  3683. "keywords": [
  3684. "compatibility",
  3685. "idn",
  3686. "intl",
  3687. "polyfill",
  3688. "portable",
  3689. "shim"
  3690. ],
  3691. "support": {
  3692. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.0"
  3693. },
  3694. "funding": [
  3695. {
  3696. "url": "https://symfony.com/sponsor",
  3697. "type": "custom"
  3698. },
  3699. {
  3700. "url": "https://github.com/fabpot",
  3701. "type": "github"
  3702. },
  3703. {
  3704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3705. "type": "tidelift"
  3706. }
  3707. ],
  3708. "time": "2021-01-07T16:49:33+00:00"
  3709. },
  3710. {
  3711. "name": "symfony/polyfill-intl-normalizer",
  3712. "version": "v1.22.0",
  3713. "source": {
  3714. "type": "git",
  3715. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3716. "reference": "6e971c891537eb617a00bb07a43d182a6915faba"
  3717. },
  3718. "dist": {
  3719. "type": "zip",
  3720. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/6e971c891537eb617a00bb07a43d182a6915faba",
  3721. "reference": "6e971c891537eb617a00bb07a43d182a6915faba",
  3722. "shasum": ""
  3723. },
  3724. "require": {
  3725. "php": ">=7.1"
  3726. },
  3727. "suggest": {
  3728. "ext-intl": "For best performance"
  3729. },
  3730. "type": "library",
  3731. "extra": {
  3732. "branch-alias": {
  3733. "dev-main": "1.22-dev"
  3734. },
  3735. "thanks": {
  3736. "name": "symfony/polyfill",
  3737. "url": "https://github.com/symfony/polyfill"
  3738. }
  3739. },
  3740. "autoload": {
  3741. "psr-4": {
  3742. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3743. },
  3744. "files": [
  3745. "bootstrap.php"
  3746. ],
  3747. "classmap": [
  3748. "Resources/stubs"
  3749. ]
  3750. },
  3751. "notification-url": "https://packagist.org/downloads/",
  3752. "license": [
  3753. "MIT"
  3754. ],
  3755. "authors": [
  3756. {
  3757. "name": "Nicolas Grekas",
  3758. "email": "p@tchwork.com"
  3759. },
  3760. {
  3761. "name": "Symfony Community",
  3762. "homepage": "https://symfony.com/contributors"
  3763. }
  3764. ],
  3765. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3766. "homepage": "https://symfony.com",
  3767. "keywords": [
  3768. "compatibility",
  3769. "intl",
  3770. "normalizer",
  3771. "polyfill",
  3772. "portable",
  3773. "shim"
  3774. ],
  3775. "support": {
  3776. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.0"
  3777. },
  3778. "funding": [
  3779. {
  3780. "url": "https://symfony.com/sponsor",
  3781. "type": "custom"
  3782. },
  3783. {
  3784. "url": "https://github.com/fabpot",
  3785. "type": "github"
  3786. },
  3787. {
  3788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3789. "type": "tidelift"
  3790. }
  3791. ],
  3792. "time": "2021-01-07T17:09:11+00:00"
  3793. },
  3794. {
  3795. "name": "symfony/polyfill-mbstring",
  3796. "version": "v1.22.0",
  3797. "source": {
  3798. "type": "git",
  3799. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3800. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13"
  3801. },
  3802. "dist": {
  3803. "type": "zip",
  3804. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  3805. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  3806. "shasum": ""
  3807. },
  3808. "require": {
  3809. "php": ">=7.1"
  3810. },
  3811. "suggest": {
  3812. "ext-mbstring": "For best performance"
  3813. },
  3814. "type": "library",
  3815. "extra": {
  3816. "branch-alias": {
  3817. "dev-main": "1.22-dev"
  3818. },
  3819. "thanks": {
  3820. "name": "symfony/polyfill",
  3821. "url": "https://github.com/symfony/polyfill"
  3822. }
  3823. },
  3824. "autoload": {
  3825. "psr-4": {
  3826. "Symfony\\Polyfill\\Mbstring\\": ""
  3827. },
  3828. "files": [
  3829. "bootstrap.php"
  3830. ]
  3831. },
  3832. "notification-url": "https://packagist.org/downloads/",
  3833. "license": [
  3834. "MIT"
  3835. ],
  3836. "authors": [
  3837. {
  3838. "name": "Nicolas Grekas",
  3839. "email": "p@tchwork.com"
  3840. },
  3841. {
  3842. "name": "Symfony Community",
  3843. "homepage": "https://symfony.com/contributors"
  3844. }
  3845. ],
  3846. "description": "Symfony polyfill for the Mbstring extension",
  3847. "homepage": "https://symfony.com",
  3848. "keywords": [
  3849. "compatibility",
  3850. "mbstring",
  3851. "polyfill",
  3852. "portable",
  3853. "shim"
  3854. ],
  3855. "support": {
  3856. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.0"
  3857. },
  3858. "funding": [
  3859. {
  3860. "url": "https://symfony.com/sponsor",
  3861. "type": "custom"
  3862. },
  3863. {
  3864. "url": "https://github.com/fabpot",
  3865. "type": "github"
  3866. },
  3867. {
  3868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3869. "type": "tidelift"
  3870. }
  3871. ],
  3872. "time": "2021-01-07T16:49:33+00:00"
  3873. },
  3874. {
  3875. "name": "symfony/polyfill-php72",
  3876. "version": "v1.22.0",
  3877. "source": {
  3878. "type": "git",
  3879. "url": "https://github.com/symfony/polyfill-php72.git",
  3880. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  3881. },
  3882. "dist": {
  3883. "type": "zip",
  3884. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  3885. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  3886. "shasum": ""
  3887. },
  3888. "require": {
  3889. "php": ">=7.1"
  3890. },
  3891. "type": "library",
  3892. "extra": {
  3893. "branch-alias": {
  3894. "dev-main": "1.22-dev"
  3895. },
  3896. "thanks": {
  3897. "name": "symfony/polyfill",
  3898. "url": "https://github.com/symfony/polyfill"
  3899. }
  3900. },
  3901. "autoload": {
  3902. "psr-4": {
  3903. "Symfony\\Polyfill\\Php72\\": ""
  3904. },
  3905. "files": [
  3906. "bootstrap.php"
  3907. ]
  3908. },
  3909. "notification-url": "https://packagist.org/downloads/",
  3910. "license": [
  3911. "MIT"
  3912. ],
  3913. "authors": [
  3914. {
  3915. "name": "Nicolas Grekas",
  3916. "email": "p@tchwork.com"
  3917. },
  3918. {
  3919. "name": "Symfony Community",
  3920. "homepage": "https://symfony.com/contributors"
  3921. }
  3922. ],
  3923. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3924. "homepage": "https://symfony.com",
  3925. "keywords": [
  3926. "compatibility",
  3927. "polyfill",
  3928. "portable",
  3929. "shim"
  3930. ],
  3931. "support": {
  3932. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.0"
  3933. },
  3934. "funding": [
  3935. {
  3936. "url": "https://symfony.com/sponsor",
  3937. "type": "custom"
  3938. },
  3939. {
  3940. "url": "https://github.com/fabpot",
  3941. "type": "github"
  3942. },
  3943. {
  3944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3945. "type": "tidelift"
  3946. }
  3947. ],
  3948. "time": "2021-01-07T16:49:33+00:00"
  3949. },
  3950. {
  3951. "name": "symfony/polyfill-php73",
  3952. "version": "v1.22.0",
  3953. "source": {
  3954. "type": "git",
  3955. "url": "https://github.com/symfony/polyfill-php73.git",
  3956. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  3957. },
  3958. "dist": {
  3959. "type": "zip",
  3960. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  3961. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  3962. "shasum": ""
  3963. },
  3964. "require": {
  3965. "php": ">=7.1"
  3966. },
  3967. "type": "library",
  3968. "extra": {
  3969. "branch-alias": {
  3970. "dev-main": "1.22-dev"
  3971. },
  3972. "thanks": {
  3973. "name": "symfony/polyfill",
  3974. "url": "https://github.com/symfony/polyfill"
  3975. }
  3976. },
  3977. "autoload": {
  3978. "psr-4": {
  3979. "Symfony\\Polyfill\\Php73\\": ""
  3980. },
  3981. "files": [
  3982. "bootstrap.php"
  3983. ],
  3984. "classmap": [
  3985. "Resources/stubs"
  3986. ]
  3987. },
  3988. "notification-url": "https://packagist.org/downloads/",
  3989. "license": [
  3990. "MIT"
  3991. ],
  3992. "authors": [
  3993. {
  3994. "name": "Nicolas Grekas",
  3995. "email": "p@tchwork.com"
  3996. },
  3997. {
  3998. "name": "Symfony Community",
  3999. "homepage": "https://symfony.com/contributors"
  4000. }
  4001. ],
  4002. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4003. "homepage": "https://symfony.com",
  4004. "keywords": [
  4005. "compatibility",
  4006. "polyfill",
  4007. "portable",
  4008. "shim"
  4009. ],
  4010. "support": {
  4011. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.0"
  4012. },
  4013. "funding": [
  4014. {
  4015. "url": "https://symfony.com/sponsor",
  4016. "type": "custom"
  4017. },
  4018. {
  4019. "url": "https://github.com/fabpot",
  4020. "type": "github"
  4021. },
  4022. {
  4023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4024. "type": "tidelift"
  4025. }
  4026. ],
  4027. "time": "2021-01-07T16:49:33+00:00"
  4028. },
  4029. {
  4030. "name": "symfony/polyfill-php80",
  4031. "version": "v1.22.0",
  4032. "source": {
  4033. "type": "git",
  4034. "url": "https://github.com/symfony/polyfill-php80.git",
  4035. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  4036. },
  4037. "dist": {
  4038. "type": "zip",
  4039. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  4040. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  4041. "shasum": ""
  4042. },
  4043. "require": {
  4044. "php": ">=7.1"
  4045. },
  4046. "type": "library",
  4047. "extra": {
  4048. "branch-alias": {
  4049. "dev-main": "1.22-dev"
  4050. },
  4051. "thanks": {
  4052. "name": "symfony/polyfill",
  4053. "url": "https://github.com/symfony/polyfill"
  4054. }
  4055. },
  4056. "autoload": {
  4057. "psr-4": {
  4058. "Symfony\\Polyfill\\Php80\\": ""
  4059. },
  4060. "files": [
  4061. "bootstrap.php"
  4062. ],
  4063. "classmap": [
  4064. "Resources/stubs"
  4065. ]
  4066. },
  4067. "notification-url": "https://packagist.org/downloads/",
  4068. "license": [
  4069. "MIT"
  4070. ],
  4071. "authors": [
  4072. {
  4073. "name": "Ion Bazan",
  4074. "email": "ion.bazan@gmail.com"
  4075. },
  4076. {
  4077. "name": "Nicolas Grekas",
  4078. "email": "p@tchwork.com"
  4079. },
  4080. {
  4081. "name": "Symfony Community",
  4082. "homepage": "https://symfony.com/contributors"
  4083. }
  4084. ],
  4085. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4086. "homepage": "https://symfony.com",
  4087. "keywords": [
  4088. "compatibility",
  4089. "polyfill",
  4090. "portable",
  4091. "shim"
  4092. ],
  4093. "support": {
  4094. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.0"
  4095. },
  4096. "funding": [
  4097. {
  4098. "url": "https://symfony.com/sponsor",
  4099. "type": "custom"
  4100. },
  4101. {
  4102. "url": "https://github.com/fabpot",
  4103. "type": "github"
  4104. },
  4105. {
  4106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4107. "type": "tidelift"
  4108. }
  4109. ],
  4110. "time": "2021-01-07T16:49:33+00:00"
  4111. },
  4112. {
  4113. "name": "symfony/process",
  4114. "version": "v5.2.3",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://github.com/symfony/process.git",
  4118. "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://api.github.com/repos/symfony/process/zipball/313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
  4123. "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
  4124. "shasum": ""
  4125. },
  4126. "require": {
  4127. "php": ">=7.2.5",
  4128. "symfony/polyfill-php80": "^1.15"
  4129. },
  4130. "type": "library",
  4131. "autoload": {
  4132. "psr-4": {
  4133. "Symfony\\Component\\Process\\": ""
  4134. },
  4135. "exclude-from-classmap": [
  4136. "/Tests/"
  4137. ]
  4138. },
  4139. "notification-url": "https://packagist.org/downloads/",
  4140. "license": [
  4141. "MIT"
  4142. ],
  4143. "authors": [
  4144. {
  4145. "name": "Fabien Potencier",
  4146. "email": "fabien@symfony.com"
  4147. },
  4148. {
  4149. "name": "Symfony Community",
  4150. "homepage": "https://symfony.com/contributors"
  4151. }
  4152. ],
  4153. "description": "Executes commands in sub-processes",
  4154. "homepage": "https://symfony.com",
  4155. "support": {
  4156. "source": "https://github.com/symfony/process/tree/v5.2.3"
  4157. },
  4158. "funding": [
  4159. {
  4160. "url": "https://symfony.com/sponsor",
  4161. "type": "custom"
  4162. },
  4163. {
  4164. "url": "https://github.com/fabpot",
  4165. "type": "github"
  4166. },
  4167. {
  4168. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4169. "type": "tidelift"
  4170. }
  4171. ],
  4172. "time": "2021-01-27T10:15:41+00:00"
  4173. },
  4174. {
  4175. "name": "symfony/routing",
  4176. "version": "v5.2.3",
  4177. "source": {
  4178. "type": "git",
  4179. "url": "https://github.com/symfony/routing.git",
  4180. "reference": "348b5917e56546c6d96adbf21d7f92c9ef563661"
  4181. },
  4182. "dist": {
  4183. "type": "zip",
  4184. "url": "https://api.github.com/repos/symfony/routing/zipball/348b5917e56546c6d96adbf21d7f92c9ef563661",
  4185. "reference": "348b5917e56546c6d96adbf21d7f92c9ef563661",
  4186. "shasum": ""
  4187. },
  4188. "require": {
  4189. "php": ">=7.2.5",
  4190. "symfony/deprecation-contracts": "^2.1",
  4191. "symfony/polyfill-php80": "^1.15"
  4192. },
  4193. "conflict": {
  4194. "symfony/config": "<5.0",
  4195. "symfony/dependency-injection": "<4.4",
  4196. "symfony/yaml": "<4.4"
  4197. },
  4198. "require-dev": {
  4199. "doctrine/annotations": "^1.10.4",
  4200. "psr/log": "~1.0",
  4201. "symfony/config": "^5.0",
  4202. "symfony/dependency-injection": "^4.4|^5.0",
  4203. "symfony/expression-language": "^4.4|^5.0",
  4204. "symfony/http-foundation": "^4.4|^5.0",
  4205. "symfony/yaml": "^4.4|^5.0"
  4206. },
  4207. "suggest": {
  4208. "doctrine/annotations": "For using the annotation loader",
  4209. "symfony/config": "For using the all-in-one router or any loader",
  4210. "symfony/expression-language": "For using expression matching",
  4211. "symfony/http-foundation": "For using a Symfony Request object",
  4212. "symfony/yaml": "For using the YAML loader"
  4213. },
  4214. "type": "library",
  4215. "autoload": {
  4216. "psr-4": {
  4217. "Symfony\\Component\\Routing\\": ""
  4218. },
  4219. "exclude-from-classmap": [
  4220. "/Tests/"
  4221. ]
  4222. },
  4223. "notification-url": "https://packagist.org/downloads/",
  4224. "license": [
  4225. "MIT"
  4226. ],
  4227. "authors": [
  4228. {
  4229. "name": "Fabien Potencier",
  4230. "email": "fabien@symfony.com"
  4231. },
  4232. {
  4233. "name": "Symfony Community",
  4234. "homepage": "https://symfony.com/contributors"
  4235. }
  4236. ],
  4237. "description": "Maps an HTTP request to a set of configuration variables",
  4238. "homepage": "https://symfony.com",
  4239. "keywords": [
  4240. "router",
  4241. "routing",
  4242. "uri",
  4243. "url"
  4244. ],
  4245. "support": {
  4246. "source": "https://github.com/symfony/routing/tree/v5.2.3"
  4247. },
  4248. "funding": [
  4249. {
  4250. "url": "https://symfony.com/sponsor",
  4251. "type": "custom"
  4252. },
  4253. {
  4254. "url": "https://github.com/fabpot",
  4255. "type": "github"
  4256. },
  4257. {
  4258. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4259. "type": "tidelift"
  4260. }
  4261. ],
  4262. "time": "2021-01-27T10:15:41+00:00"
  4263. },
  4264. {
  4265. "name": "symfony/service-contracts",
  4266. "version": "v2.2.0",
  4267. "source": {
  4268. "type": "git",
  4269. "url": "https://github.com/symfony/service-contracts.git",
  4270. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  4271. },
  4272. "dist": {
  4273. "type": "zip",
  4274. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  4275. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  4276. "shasum": ""
  4277. },
  4278. "require": {
  4279. "php": ">=7.2.5",
  4280. "psr/container": "^1.0"
  4281. },
  4282. "suggest": {
  4283. "symfony/service-implementation": ""
  4284. },
  4285. "type": "library",
  4286. "extra": {
  4287. "branch-alias": {
  4288. "dev-master": "2.2-dev"
  4289. },
  4290. "thanks": {
  4291. "name": "symfony/contracts",
  4292. "url": "https://github.com/symfony/contracts"
  4293. }
  4294. },
  4295. "autoload": {
  4296. "psr-4": {
  4297. "Symfony\\Contracts\\Service\\": ""
  4298. }
  4299. },
  4300. "notification-url": "https://packagist.org/downloads/",
  4301. "license": [
  4302. "MIT"
  4303. ],
  4304. "authors": [
  4305. {
  4306. "name": "Nicolas Grekas",
  4307. "email": "p@tchwork.com"
  4308. },
  4309. {
  4310. "name": "Symfony Community",
  4311. "homepage": "https://symfony.com/contributors"
  4312. }
  4313. ],
  4314. "description": "Generic abstractions related to writing services",
  4315. "homepage": "https://symfony.com",
  4316. "keywords": [
  4317. "abstractions",
  4318. "contracts",
  4319. "decoupling",
  4320. "interfaces",
  4321. "interoperability",
  4322. "standards"
  4323. ],
  4324. "support": {
  4325. "source": "https://github.com/symfony/service-contracts/tree/master"
  4326. },
  4327. "funding": [
  4328. {
  4329. "url": "https://symfony.com/sponsor",
  4330. "type": "custom"
  4331. },
  4332. {
  4333. "url": "https://github.com/fabpot",
  4334. "type": "github"
  4335. },
  4336. {
  4337. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4338. "type": "tidelift"
  4339. }
  4340. ],
  4341. "time": "2020-09-07T11:33:47+00:00"
  4342. },
  4343. {
  4344. "name": "symfony/string",
  4345. "version": "v5.2.3",
  4346. "source": {
  4347. "type": "git",
  4348. "url": "https://github.com/symfony/string.git",
  4349. "reference": "c95468897f408dd0aca2ff582074423dd0455122"
  4350. },
  4351. "dist": {
  4352. "type": "zip",
  4353. "url": "https://api.github.com/repos/symfony/string/zipball/c95468897f408dd0aca2ff582074423dd0455122",
  4354. "reference": "c95468897f408dd0aca2ff582074423dd0455122",
  4355. "shasum": ""
  4356. },
  4357. "require": {
  4358. "php": ">=7.2.5",
  4359. "symfony/polyfill-ctype": "~1.8",
  4360. "symfony/polyfill-intl-grapheme": "~1.0",
  4361. "symfony/polyfill-intl-normalizer": "~1.0",
  4362. "symfony/polyfill-mbstring": "~1.0",
  4363. "symfony/polyfill-php80": "~1.15"
  4364. },
  4365. "require-dev": {
  4366. "symfony/error-handler": "^4.4|^5.0",
  4367. "symfony/http-client": "^4.4|^5.0",
  4368. "symfony/translation-contracts": "^1.1|^2",
  4369. "symfony/var-exporter": "^4.4|^5.0"
  4370. },
  4371. "type": "library",
  4372. "autoload": {
  4373. "psr-4": {
  4374. "Symfony\\Component\\String\\": ""
  4375. },
  4376. "files": [
  4377. "Resources/functions.php"
  4378. ],
  4379. "exclude-from-classmap": [
  4380. "/Tests/"
  4381. ]
  4382. },
  4383. "notification-url": "https://packagist.org/downloads/",
  4384. "license": [
  4385. "MIT"
  4386. ],
  4387. "authors": [
  4388. {
  4389. "name": "Nicolas Grekas",
  4390. "email": "p@tchwork.com"
  4391. },
  4392. {
  4393. "name": "Symfony Community",
  4394. "homepage": "https://symfony.com/contributors"
  4395. }
  4396. ],
  4397. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4398. "homepage": "https://symfony.com",
  4399. "keywords": [
  4400. "grapheme",
  4401. "i18n",
  4402. "string",
  4403. "unicode",
  4404. "utf-8",
  4405. "utf8"
  4406. ],
  4407. "support": {
  4408. "source": "https://github.com/symfony/string/tree/v5.2.3"
  4409. },
  4410. "funding": [
  4411. {
  4412. "url": "https://symfony.com/sponsor",
  4413. "type": "custom"
  4414. },
  4415. {
  4416. "url": "https://github.com/fabpot",
  4417. "type": "github"
  4418. },
  4419. {
  4420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4421. "type": "tidelift"
  4422. }
  4423. ],
  4424. "time": "2021-01-25T15:14:59+00:00"
  4425. },
  4426. {
  4427. "name": "symfony/translation",
  4428. "version": "v5.2.3",
  4429. "source": {
  4430. "type": "git",
  4431. "url": "https://github.com/symfony/translation.git",
  4432. "reference": "c021864d4354ee55160ddcfd31dc477a1bc77949"
  4433. },
  4434. "dist": {
  4435. "type": "zip",
  4436. "url": "https://api.github.com/repos/symfony/translation/zipball/c021864d4354ee55160ddcfd31dc477a1bc77949",
  4437. "reference": "c021864d4354ee55160ddcfd31dc477a1bc77949",
  4438. "shasum": ""
  4439. },
  4440. "require": {
  4441. "php": ">=7.2.5",
  4442. "symfony/polyfill-mbstring": "~1.0",
  4443. "symfony/polyfill-php80": "^1.15",
  4444. "symfony/translation-contracts": "^2.3"
  4445. },
  4446. "conflict": {
  4447. "symfony/config": "<4.4",
  4448. "symfony/dependency-injection": "<5.0",
  4449. "symfony/http-kernel": "<5.0",
  4450. "symfony/twig-bundle": "<5.0",
  4451. "symfony/yaml": "<4.4"
  4452. },
  4453. "provide": {
  4454. "symfony/translation-implementation": "2.0"
  4455. },
  4456. "require-dev": {
  4457. "psr/log": "~1.0",
  4458. "symfony/config": "^4.4|^5.0",
  4459. "symfony/console": "^4.4|^5.0",
  4460. "symfony/dependency-injection": "^5.0",
  4461. "symfony/finder": "^4.4|^5.0",
  4462. "symfony/http-kernel": "^5.0",
  4463. "symfony/intl": "^4.4|^5.0",
  4464. "symfony/service-contracts": "^1.1.2|^2",
  4465. "symfony/yaml": "^4.4|^5.0"
  4466. },
  4467. "suggest": {
  4468. "psr/log-implementation": "To use logging capability in translator",
  4469. "symfony/config": "",
  4470. "symfony/yaml": ""
  4471. },
  4472. "type": "library",
  4473. "autoload": {
  4474. "files": [
  4475. "Resources/functions.php"
  4476. ],
  4477. "psr-4": {
  4478. "Symfony\\Component\\Translation\\": ""
  4479. },
  4480. "exclude-from-classmap": [
  4481. "/Tests/"
  4482. ]
  4483. },
  4484. "notification-url": "https://packagist.org/downloads/",
  4485. "license": [
  4486. "MIT"
  4487. ],
  4488. "authors": [
  4489. {
  4490. "name": "Fabien Potencier",
  4491. "email": "fabien@symfony.com"
  4492. },
  4493. {
  4494. "name": "Symfony Community",
  4495. "homepage": "https://symfony.com/contributors"
  4496. }
  4497. ],
  4498. "description": "Provides tools to internationalize your application",
  4499. "homepage": "https://symfony.com",
  4500. "support": {
  4501. "source": "https://github.com/symfony/translation/tree/v5.2.3"
  4502. },
  4503. "funding": [
  4504. {
  4505. "url": "https://symfony.com/sponsor",
  4506. "type": "custom"
  4507. },
  4508. {
  4509. "url": "https://github.com/fabpot",
  4510. "type": "github"
  4511. },
  4512. {
  4513. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4514. "type": "tidelift"
  4515. }
  4516. ],
  4517. "time": "2021-01-27T10:15:41+00:00"
  4518. },
  4519. {
  4520. "name": "symfony/translation-contracts",
  4521. "version": "v2.3.0",
  4522. "source": {
  4523. "type": "git",
  4524. "url": "https://github.com/symfony/translation-contracts.git",
  4525. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  4526. },
  4527. "dist": {
  4528. "type": "zip",
  4529. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  4530. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  4531. "shasum": ""
  4532. },
  4533. "require": {
  4534. "php": ">=7.2.5"
  4535. },
  4536. "suggest": {
  4537. "symfony/translation-implementation": ""
  4538. },
  4539. "type": "library",
  4540. "extra": {
  4541. "branch-alias": {
  4542. "dev-master": "2.3-dev"
  4543. },
  4544. "thanks": {
  4545. "name": "symfony/contracts",
  4546. "url": "https://github.com/symfony/contracts"
  4547. }
  4548. },
  4549. "autoload": {
  4550. "psr-4": {
  4551. "Symfony\\Contracts\\Translation\\": ""
  4552. }
  4553. },
  4554. "notification-url": "https://packagist.org/downloads/",
  4555. "license": [
  4556. "MIT"
  4557. ],
  4558. "authors": [
  4559. {
  4560. "name": "Nicolas Grekas",
  4561. "email": "p@tchwork.com"
  4562. },
  4563. {
  4564. "name": "Symfony Community",
  4565. "homepage": "https://symfony.com/contributors"
  4566. }
  4567. ],
  4568. "description": "Generic abstractions related to translation",
  4569. "homepage": "https://symfony.com",
  4570. "keywords": [
  4571. "abstractions",
  4572. "contracts",
  4573. "decoupling",
  4574. "interfaces",
  4575. "interoperability",
  4576. "standards"
  4577. ],
  4578. "support": {
  4579. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  4580. },
  4581. "funding": [
  4582. {
  4583. "url": "https://symfony.com/sponsor",
  4584. "type": "custom"
  4585. },
  4586. {
  4587. "url": "https://github.com/fabpot",
  4588. "type": "github"
  4589. },
  4590. {
  4591. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4592. "type": "tidelift"
  4593. }
  4594. ],
  4595. "time": "2020-09-28T13:05:58+00:00"
  4596. },
  4597. {
  4598. "name": "symfony/var-dumper",
  4599. "version": "v5.2.3",
  4600. "source": {
  4601. "type": "git",
  4602. "url": "https://github.com/symfony/var-dumper.git",
  4603. "reference": "72ca213014a92223a5d18651ce79ef441c12b694"
  4604. },
  4605. "dist": {
  4606. "type": "zip",
  4607. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/72ca213014a92223a5d18651ce79ef441c12b694",
  4608. "reference": "72ca213014a92223a5d18651ce79ef441c12b694",
  4609. "shasum": ""
  4610. },
  4611. "require": {
  4612. "php": ">=7.2.5",
  4613. "symfony/polyfill-mbstring": "~1.0",
  4614. "symfony/polyfill-php80": "^1.15"
  4615. },
  4616. "conflict": {
  4617. "phpunit/phpunit": "<5.4.3",
  4618. "symfony/console": "<4.4"
  4619. },
  4620. "require-dev": {
  4621. "ext-iconv": "*",
  4622. "symfony/console": "^4.4|^5.0",
  4623. "symfony/process": "^4.4|^5.0",
  4624. "twig/twig": "^2.13|^3.0.4"
  4625. },
  4626. "suggest": {
  4627. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4628. "ext-intl": "To show region name in time zone dump",
  4629. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4630. },
  4631. "bin": [
  4632. "Resources/bin/var-dump-server"
  4633. ],
  4634. "type": "library",
  4635. "autoload": {
  4636. "files": [
  4637. "Resources/functions/dump.php"
  4638. ],
  4639. "psr-4": {
  4640. "Symfony\\Component\\VarDumper\\": ""
  4641. },
  4642. "exclude-from-classmap": [
  4643. "/Tests/"
  4644. ]
  4645. },
  4646. "notification-url": "https://packagist.org/downloads/",
  4647. "license": [
  4648. "MIT"
  4649. ],
  4650. "authors": [
  4651. {
  4652. "name": "Nicolas Grekas",
  4653. "email": "p@tchwork.com"
  4654. },
  4655. {
  4656. "name": "Symfony Community",
  4657. "homepage": "https://symfony.com/contributors"
  4658. }
  4659. ],
  4660. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4661. "homepage": "https://symfony.com",
  4662. "keywords": [
  4663. "debug",
  4664. "dump"
  4665. ],
  4666. "support": {
  4667. "source": "https://github.com/symfony/var-dumper/tree/v5.2.3"
  4668. },
  4669. "funding": [
  4670. {
  4671. "url": "https://symfony.com/sponsor",
  4672. "type": "custom"
  4673. },
  4674. {
  4675. "url": "https://github.com/fabpot",
  4676. "type": "github"
  4677. },
  4678. {
  4679. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4680. "type": "tidelift"
  4681. }
  4682. ],
  4683. "time": "2021-01-27T10:15:41+00:00"
  4684. },
  4685. {
  4686. "name": "tijsverkoyen/css-to-inline-styles",
  4687. "version": "2.2.3",
  4688. "source": {
  4689. "type": "git",
  4690. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  4691. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  4692. },
  4693. "dist": {
  4694. "type": "zip",
  4695. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  4696. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  4697. "shasum": ""
  4698. },
  4699. "require": {
  4700. "ext-dom": "*",
  4701. "ext-libxml": "*",
  4702. "php": "^5.5 || ^7.0 || ^8.0",
  4703. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  4704. },
  4705. "require-dev": {
  4706. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  4707. },
  4708. "type": "library",
  4709. "extra": {
  4710. "branch-alias": {
  4711. "dev-master": "2.2.x-dev"
  4712. }
  4713. },
  4714. "autoload": {
  4715. "psr-4": {
  4716. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4717. }
  4718. },
  4719. "notification-url": "https://packagist.org/downloads/",
  4720. "license": [
  4721. "BSD-3-Clause"
  4722. ],
  4723. "authors": [
  4724. {
  4725. "name": "Tijs Verkoyen",
  4726. "email": "css_to_inline_styles@verkoyen.eu",
  4727. "role": "Developer"
  4728. }
  4729. ],
  4730. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  4731. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4732. "support": {
  4733. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  4734. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  4735. },
  4736. "time": "2020-07-13T06:12:54+00:00"
  4737. },
  4738. {
  4739. "name": "vlucas/phpdotenv",
  4740. "version": "v5.3.0",
  4741. "source": {
  4742. "type": "git",
  4743. "url": "https://github.com/vlucas/phpdotenv.git",
  4744. "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56"
  4745. },
  4746. "dist": {
  4747. "type": "zip",
  4748. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/b3eac5c7ac896e52deab4a99068e3f4ab12d9e56",
  4749. "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56",
  4750. "shasum": ""
  4751. },
  4752. "require": {
  4753. "ext-pcre": "*",
  4754. "graham-campbell/result-type": "^1.0.1",
  4755. "php": "^7.1.3 || ^8.0",
  4756. "phpoption/phpoption": "^1.7.4",
  4757. "symfony/polyfill-ctype": "^1.17",
  4758. "symfony/polyfill-mbstring": "^1.17",
  4759. "symfony/polyfill-php80": "^1.17"
  4760. },
  4761. "require-dev": {
  4762. "bamarni/composer-bin-plugin": "^1.4.1",
  4763. "ext-filter": "*",
  4764. "phpunit/phpunit": "^7.5.20 || ^8.5.14 || ^9.5.1"
  4765. },
  4766. "suggest": {
  4767. "ext-filter": "Required to use the boolean validator."
  4768. },
  4769. "type": "library",
  4770. "extra": {
  4771. "branch-alias": {
  4772. "dev-master": "5.3-dev"
  4773. }
  4774. },
  4775. "autoload": {
  4776. "psr-4": {
  4777. "Dotenv\\": "src/"
  4778. }
  4779. },
  4780. "notification-url": "https://packagist.org/downloads/",
  4781. "license": [
  4782. "BSD-3-Clause"
  4783. ],
  4784. "authors": [
  4785. {
  4786. "name": "Graham Campbell",
  4787. "email": "graham@alt-three.com",
  4788. "homepage": "https://gjcampbell.co.uk/"
  4789. },
  4790. {
  4791. "name": "Vance Lucas",
  4792. "email": "vance@vancelucas.com",
  4793. "homepage": "https://vancelucas.com/"
  4794. }
  4795. ],
  4796. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4797. "keywords": [
  4798. "dotenv",
  4799. "env",
  4800. "environment"
  4801. ],
  4802. "support": {
  4803. "issues": "https://github.com/vlucas/phpdotenv/issues",
  4804. "source": "https://github.com/vlucas/phpdotenv/tree/v5.3.0"
  4805. },
  4806. "funding": [
  4807. {
  4808. "url": "https://github.com/GrahamCampbell",
  4809. "type": "github"
  4810. },
  4811. {
  4812. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  4813. "type": "tidelift"
  4814. }
  4815. ],
  4816. "time": "2021-01-20T15:23:13+00:00"
  4817. },
  4818. {
  4819. "name": "voku/portable-ascii",
  4820. "version": "1.5.6",
  4821. "source": {
  4822. "type": "git",
  4823. "url": "https://github.com/voku/portable-ascii.git",
  4824. "reference": "80953678b19901e5165c56752d087fc11526017c"
  4825. },
  4826. "dist": {
  4827. "type": "zip",
  4828. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  4829. "reference": "80953678b19901e5165c56752d087fc11526017c",
  4830. "shasum": ""
  4831. },
  4832. "require": {
  4833. "php": ">=7.0.0"
  4834. },
  4835. "require-dev": {
  4836. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  4837. },
  4838. "suggest": {
  4839. "ext-intl": "Use Intl for transliterator_transliterate() support"
  4840. },
  4841. "type": "library",
  4842. "autoload": {
  4843. "psr-4": {
  4844. "voku\\": "src/voku/"
  4845. }
  4846. },
  4847. "notification-url": "https://packagist.org/downloads/",
  4848. "license": [
  4849. "MIT"
  4850. ],
  4851. "authors": [
  4852. {
  4853. "name": "Lars Moelleken",
  4854. "homepage": "http://www.moelleken.org/"
  4855. }
  4856. ],
  4857. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  4858. "homepage": "https://github.com/voku/portable-ascii",
  4859. "keywords": [
  4860. "ascii",
  4861. "clean",
  4862. "php"
  4863. ],
  4864. "support": {
  4865. "issues": "https://github.com/voku/portable-ascii/issues",
  4866. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  4867. },
  4868. "funding": [
  4869. {
  4870. "url": "https://www.paypal.me/moelleken",
  4871. "type": "custom"
  4872. },
  4873. {
  4874. "url": "https://github.com/voku",
  4875. "type": "github"
  4876. },
  4877. {
  4878. "url": "https://opencollective.com/portable-ascii",
  4879. "type": "open_collective"
  4880. },
  4881. {
  4882. "url": "https://www.patreon.com/voku",
  4883. "type": "patreon"
  4884. },
  4885. {
  4886. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  4887. "type": "tidelift"
  4888. }
  4889. ],
  4890. "time": "2020-11-12T00:07:28+00:00"
  4891. },
  4892. {
  4893. "name": "webmozart/assert",
  4894. "version": "1.9.1",
  4895. "source": {
  4896. "type": "git",
  4897. "url": "https://github.com/webmozarts/assert.git",
  4898. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  4899. },
  4900. "dist": {
  4901. "type": "zip",
  4902. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  4903. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  4904. "shasum": ""
  4905. },
  4906. "require": {
  4907. "php": "^5.3.3 || ^7.0 || ^8.0",
  4908. "symfony/polyfill-ctype": "^1.8"
  4909. },
  4910. "conflict": {
  4911. "phpstan/phpstan": "<0.12.20",
  4912. "vimeo/psalm": "<3.9.1"
  4913. },
  4914. "require-dev": {
  4915. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  4916. },
  4917. "type": "library",
  4918. "autoload": {
  4919. "psr-4": {
  4920. "Webmozart\\Assert\\": "src/"
  4921. }
  4922. },
  4923. "notification-url": "https://packagist.org/downloads/",
  4924. "license": [
  4925. "MIT"
  4926. ],
  4927. "authors": [
  4928. {
  4929. "name": "Bernhard Schussek",
  4930. "email": "bschussek@gmail.com"
  4931. }
  4932. ],
  4933. "description": "Assertions to validate method input/output with nice error messages.",
  4934. "keywords": [
  4935. "assert",
  4936. "check",
  4937. "validate"
  4938. ],
  4939. "support": {
  4940. "issues": "https://github.com/webmozarts/assert/issues",
  4941. "source": "https://github.com/webmozarts/assert/tree/1.9.1"
  4942. },
  4943. "time": "2020-07-08T17:02:28+00:00"
  4944. }
  4945. ],
  4946. "packages-dev": [
  4947. {
  4948. "name": "barryvdh/laravel-debugbar",
  4949. "version": "v3.5.2",
  4950. "source": {
  4951. "type": "git",
  4952. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  4953. "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b"
  4954. },
  4955. "dist": {
  4956. "type": "zip",
  4957. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/cae0a8d1cb89b0f0522f65e60465e16d738e069b",
  4958. "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b",
  4959. "shasum": ""
  4960. },
  4961. "require": {
  4962. "illuminate/routing": "^6|^7|^8",
  4963. "illuminate/session": "^6|^7|^8",
  4964. "illuminate/support": "^6|^7|^8",
  4965. "maximebf/debugbar": "^1.16.3",
  4966. "php": ">=7.2",
  4967. "symfony/debug": "^4.3|^5",
  4968. "symfony/finder": "^4.3|^5"
  4969. },
  4970. "require-dev": {
  4971. "mockery/mockery": "^1.3.3",
  4972. "orchestra/testbench-dusk": "^4|^5|^6",
  4973. "phpunit/phpunit": "^8.5|^9.0",
  4974. "squizlabs/php_codesniffer": "^3.5"
  4975. },
  4976. "type": "library",
  4977. "extra": {
  4978. "branch-alias": {
  4979. "dev-master": "3.5-dev"
  4980. },
  4981. "laravel": {
  4982. "providers": [
  4983. "Barryvdh\\Debugbar\\ServiceProvider"
  4984. ],
  4985. "aliases": {
  4986. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  4987. }
  4988. }
  4989. },
  4990. "autoload": {
  4991. "psr-4": {
  4992. "Barryvdh\\Debugbar\\": "src/"
  4993. },
  4994. "files": [
  4995. "src/helpers.php"
  4996. ]
  4997. },
  4998. "notification-url": "https://packagist.org/downloads/",
  4999. "license": [
  5000. "MIT"
  5001. ],
  5002. "authors": [
  5003. {
  5004. "name": "Barry vd. Heuvel",
  5005. "email": "barryvdh@gmail.com"
  5006. }
  5007. ],
  5008. "description": "PHP Debugbar integration for Laravel",
  5009. "keywords": [
  5010. "debug",
  5011. "debugbar",
  5012. "laravel",
  5013. "profiler",
  5014. "webprofiler"
  5015. ],
  5016. "support": {
  5017. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  5018. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.2"
  5019. },
  5020. "funding": [
  5021. {
  5022. "url": "https://github.com/barryvdh",
  5023. "type": "github"
  5024. }
  5025. ],
  5026. "time": "2021-01-06T14:21:44+00:00"
  5027. },
  5028. {
  5029. "name": "doctrine/instantiator",
  5030. "version": "1.4.0",
  5031. "source": {
  5032. "type": "git",
  5033. "url": "https://github.com/doctrine/instantiator.git",
  5034. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  5035. },
  5036. "dist": {
  5037. "type": "zip",
  5038. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  5039. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  5040. "shasum": ""
  5041. },
  5042. "require": {
  5043. "php": "^7.1 || ^8.0"
  5044. },
  5045. "require-dev": {
  5046. "doctrine/coding-standard": "^8.0",
  5047. "ext-pdo": "*",
  5048. "ext-phar": "*",
  5049. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  5050. "phpstan/phpstan": "^0.12",
  5051. "phpstan/phpstan-phpunit": "^0.12",
  5052. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5053. },
  5054. "type": "library",
  5055. "autoload": {
  5056. "psr-4": {
  5057. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5058. }
  5059. },
  5060. "notification-url": "https://packagist.org/downloads/",
  5061. "license": [
  5062. "MIT"
  5063. ],
  5064. "authors": [
  5065. {
  5066. "name": "Marco Pivetta",
  5067. "email": "ocramius@gmail.com",
  5068. "homepage": "https://ocramius.github.io/"
  5069. }
  5070. ],
  5071. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5072. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  5073. "keywords": [
  5074. "constructor",
  5075. "instantiate"
  5076. ],
  5077. "support": {
  5078. "issues": "https://github.com/doctrine/instantiator/issues",
  5079. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  5080. },
  5081. "funding": [
  5082. {
  5083. "url": "https://www.doctrine-project.org/sponsorship.html",
  5084. "type": "custom"
  5085. },
  5086. {
  5087. "url": "https://www.patreon.com/phpdoctrine",
  5088. "type": "patreon"
  5089. },
  5090. {
  5091. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  5092. "type": "tidelift"
  5093. }
  5094. ],
  5095. "time": "2020-11-10T18:47:58+00:00"
  5096. },
  5097. {
  5098. "name": "facade/flare-client-php",
  5099. "version": "1.3.7",
  5100. "source": {
  5101. "type": "git",
  5102. "url": "https://github.com/facade/flare-client-php.git",
  5103. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  5104. },
  5105. "dist": {
  5106. "type": "zip",
  5107. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  5108. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  5109. "shasum": ""
  5110. },
  5111. "require": {
  5112. "facade/ignition-contracts": "~1.0",
  5113. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  5114. "php": "^7.1|^8.0",
  5115. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  5116. "symfony/mime": "^3.4|^4.0|^5.1",
  5117. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  5118. },
  5119. "require-dev": {
  5120. "friendsofphp/php-cs-fixer": "^2.14",
  5121. "phpunit/phpunit": "^7.5.16",
  5122. "spatie/phpunit-snapshot-assertions": "^2.0"
  5123. },
  5124. "type": "library",
  5125. "extra": {
  5126. "branch-alias": {
  5127. "dev-master": "1.0-dev"
  5128. }
  5129. },
  5130. "autoload": {
  5131. "psr-4": {
  5132. "Facade\\FlareClient\\": "src"
  5133. },
  5134. "files": [
  5135. "src/helpers.php"
  5136. ]
  5137. },
  5138. "notification-url": "https://packagist.org/downloads/",
  5139. "license": [
  5140. "MIT"
  5141. ],
  5142. "description": "Send PHP errors to Flare",
  5143. "homepage": "https://github.com/facade/flare-client-php",
  5144. "keywords": [
  5145. "exception",
  5146. "facade",
  5147. "flare",
  5148. "reporting"
  5149. ],
  5150. "support": {
  5151. "issues": "https://github.com/facade/flare-client-php/issues",
  5152. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  5153. },
  5154. "funding": [
  5155. {
  5156. "url": "https://github.com/spatie",
  5157. "type": "github"
  5158. }
  5159. ],
  5160. "time": "2020-10-21T16:02:39+00:00"
  5161. },
  5162. {
  5163. "name": "facade/ignition",
  5164. "version": "2.5.11",
  5165. "source": {
  5166. "type": "git",
  5167. "url": "https://github.com/facade/ignition.git",
  5168. "reference": "e91d67353054bf827c64687fcac5ea44e4dcec54"
  5169. },
  5170. "dist": {
  5171. "type": "zip",
  5172. "url": "https://api.github.com/repos/facade/ignition/zipball/e91d67353054bf827c64687fcac5ea44e4dcec54",
  5173. "reference": "e91d67353054bf827c64687fcac5ea44e4dcec54",
  5174. "shasum": ""
  5175. },
  5176. "require": {
  5177. "ext-json": "*",
  5178. "ext-mbstring": "*",
  5179. "facade/flare-client-php": "^1.3.7",
  5180. "facade/ignition-contracts": "^1.0.2",
  5181. "filp/whoops": "^2.4",
  5182. "illuminate/support": "^7.0|^8.0",
  5183. "monolog/monolog": "^2.0",
  5184. "php": "^7.2.5|^8.0",
  5185. "symfony/console": "^5.0",
  5186. "symfony/var-dumper": "^5.0"
  5187. },
  5188. "require-dev": {
  5189. "friendsofphp/php-cs-fixer": "^2.14",
  5190. "mockery/mockery": "^1.3",
  5191. "orchestra/testbench": "^5.0|^6.0",
  5192. "psalm/plugin-laravel": "^1.2"
  5193. },
  5194. "suggest": {
  5195. "laravel/telescope": "^3.1"
  5196. },
  5197. "type": "library",
  5198. "extra": {
  5199. "branch-alias": {
  5200. "dev-master": "2.x-dev"
  5201. },
  5202. "laravel": {
  5203. "providers": [
  5204. "Facade\\Ignition\\IgnitionServiceProvider"
  5205. ],
  5206. "aliases": {
  5207. "Flare": "Facade\\Ignition\\Facades\\Flare"
  5208. }
  5209. }
  5210. },
  5211. "autoload": {
  5212. "psr-4": {
  5213. "Facade\\Ignition\\": "src"
  5214. },
  5215. "files": [
  5216. "src/helpers.php"
  5217. ]
  5218. },
  5219. "notification-url": "https://packagist.org/downloads/",
  5220. "license": [
  5221. "MIT"
  5222. ],
  5223. "description": "A beautiful error page for Laravel applications.",
  5224. "homepage": "https://github.com/facade/ignition",
  5225. "keywords": [
  5226. "error",
  5227. "flare",
  5228. "laravel",
  5229. "page"
  5230. ],
  5231. "support": {
  5232. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  5233. "forum": "https://twitter.com/flareappio",
  5234. "issues": "https://github.com/facade/ignition/issues",
  5235. "source": "https://github.com/facade/ignition"
  5236. },
  5237. "time": "2021-02-05T12:52:11+00:00"
  5238. },
  5239. {
  5240. "name": "facade/ignition-contracts",
  5241. "version": "1.0.2",
  5242. "source": {
  5243. "type": "git",
  5244. "url": "https://github.com/facade/ignition-contracts.git",
  5245. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  5246. },
  5247. "dist": {
  5248. "type": "zip",
  5249. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5250. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5251. "shasum": ""
  5252. },
  5253. "require": {
  5254. "php": "^7.3|^8.0"
  5255. },
  5256. "require-dev": {
  5257. "friendsofphp/php-cs-fixer": "^v2.15.8",
  5258. "phpunit/phpunit": "^9.3.11",
  5259. "vimeo/psalm": "^3.17.1"
  5260. },
  5261. "type": "library",
  5262. "autoload": {
  5263. "psr-4": {
  5264. "Facade\\IgnitionContracts\\": "src"
  5265. }
  5266. },
  5267. "notification-url": "https://packagist.org/downloads/",
  5268. "license": [
  5269. "MIT"
  5270. ],
  5271. "authors": [
  5272. {
  5273. "name": "Freek Van der Herten",
  5274. "email": "freek@spatie.be",
  5275. "homepage": "https://flareapp.io",
  5276. "role": "Developer"
  5277. }
  5278. ],
  5279. "description": "Solution contracts for Ignition",
  5280. "homepage": "https://github.com/facade/ignition-contracts",
  5281. "keywords": [
  5282. "contracts",
  5283. "flare",
  5284. "ignition"
  5285. ],
  5286. "support": {
  5287. "issues": "https://github.com/facade/ignition-contracts/issues",
  5288. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  5289. },
  5290. "time": "2020-10-16T08:27:54+00:00"
  5291. },
  5292. {
  5293. "name": "fakerphp/faker",
  5294. "version": "v1.13.0",
  5295. "source": {
  5296. "type": "git",
  5297. "url": "https://github.com/FakerPHP/Faker.git",
  5298. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913"
  5299. },
  5300. "dist": {
  5301. "type": "zip",
  5302. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ab3f5364d01f2c2c16113442fb987d26e4004913",
  5303. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913",
  5304. "shasum": ""
  5305. },
  5306. "require": {
  5307. "php": "^7.1 || ^8.0"
  5308. },
  5309. "conflict": {
  5310. "fzaninotto/faker": "*"
  5311. },
  5312. "require-dev": {
  5313. "bamarni/composer-bin-plugin": "^1.4.1",
  5314. "ext-intl": "*",
  5315. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  5316. },
  5317. "type": "library",
  5318. "autoload": {
  5319. "psr-4": {
  5320. "Faker\\": "src/Faker/"
  5321. }
  5322. },
  5323. "notification-url": "https://packagist.org/downloads/",
  5324. "license": [
  5325. "MIT"
  5326. ],
  5327. "authors": [
  5328. {
  5329. "name": "François Zaninotto"
  5330. }
  5331. ],
  5332. "description": "Faker is a PHP library that generates fake data for you.",
  5333. "keywords": [
  5334. "data",
  5335. "faker",
  5336. "fixtures"
  5337. ],
  5338. "support": {
  5339. "issues": "https://github.com/FakerPHP/Faker/issues",
  5340. "source": "https://github.com/FakerPHP/Faker/tree/v1.13.0"
  5341. },
  5342. "time": "2020-12-18T16:50:48+00:00"
  5343. },
  5344. {
  5345. "name": "filp/whoops",
  5346. "version": "2.9.2",
  5347. "source": {
  5348. "type": "git",
  5349. "url": "https://github.com/filp/whoops.git",
  5350. "reference": "df7933820090489623ce0be5e85c7e693638e536"
  5351. },
  5352. "dist": {
  5353. "type": "zip",
  5354. "url": "https://api.github.com/repos/filp/whoops/zipball/df7933820090489623ce0be5e85c7e693638e536",
  5355. "reference": "df7933820090489623ce0be5e85c7e693638e536",
  5356. "shasum": ""
  5357. },
  5358. "require": {
  5359. "php": "^5.5.9 || ^7.0 || ^8.0",
  5360. "psr/log": "^1.0.1"
  5361. },
  5362. "require-dev": {
  5363. "mockery/mockery": "^0.9 || ^1.0",
  5364. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  5365. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  5366. },
  5367. "suggest": {
  5368. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  5369. "whoops/soap": "Formats errors as SOAP responses"
  5370. },
  5371. "type": "library",
  5372. "extra": {
  5373. "branch-alias": {
  5374. "dev-master": "2.7-dev"
  5375. }
  5376. },
  5377. "autoload": {
  5378. "psr-4": {
  5379. "Whoops\\": "src/Whoops/"
  5380. }
  5381. },
  5382. "notification-url": "https://packagist.org/downloads/",
  5383. "license": [
  5384. "MIT"
  5385. ],
  5386. "authors": [
  5387. {
  5388. "name": "Filipe Dobreira",
  5389. "homepage": "https://github.com/filp",
  5390. "role": "Developer"
  5391. }
  5392. ],
  5393. "description": "php error handling for cool kids",
  5394. "homepage": "https://filp.github.io/whoops/",
  5395. "keywords": [
  5396. "error",
  5397. "exception",
  5398. "handling",
  5399. "library",
  5400. "throwable",
  5401. "whoops"
  5402. ],
  5403. "support": {
  5404. "issues": "https://github.com/filp/whoops/issues",
  5405. "source": "https://github.com/filp/whoops/tree/2.9.2"
  5406. },
  5407. "funding": [
  5408. {
  5409. "url": "https://github.com/denis-sokolov",
  5410. "type": "github"
  5411. }
  5412. ],
  5413. "time": "2021-01-24T12:00:00+00:00"
  5414. },
  5415. {
  5416. "name": "hamcrest/hamcrest-php",
  5417. "version": "v2.0.1",
  5418. "source": {
  5419. "type": "git",
  5420. "url": "https://github.com/hamcrest/hamcrest-php.git",
  5421. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  5422. },
  5423. "dist": {
  5424. "type": "zip",
  5425. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5426. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5427. "shasum": ""
  5428. },
  5429. "require": {
  5430. "php": "^5.3|^7.0|^8.0"
  5431. },
  5432. "replace": {
  5433. "cordoval/hamcrest-php": "*",
  5434. "davedevelopment/hamcrest-php": "*",
  5435. "kodova/hamcrest-php": "*"
  5436. },
  5437. "require-dev": {
  5438. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  5439. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  5440. },
  5441. "type": "library",
  5442. "extra": {
  5443. "branch-alias": {
  5444. "dev-master": "2.1-dev"
  5445. }
  5446. },
  5447. "autoload": {
  5448. "classmap": [
  5449. "hamcrest"
  5450. ]
  5451. },
  5452. "notification-url": "https://packagist.org/downloads/",
  5453. "license": [
  5454. "BSD-3-Clause"
  5455. ],
  5456. "description": "This is the PHP port of Hamcrest Matchers",
  5457. "keywords": [
  5458. "test"
  5459. ],
  5460. "support": {
  5461. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  5462. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  5463. },
  5464. "time": "2020-07-09T08:09:16+00:00"
  5465. },
  5466. {
  5467. "name": "laravel/sail",
  5468. "version": "v1.3.1",
  5469. "source": {
  5470. "type": "git",
  5471. "url": "https://github.com/laravel/sail.git",
  5472. "reference": "a18519e96c32894ac3f8775fa8eb6de5750aca5a"
  5473. },
  5474. "dist": {
  5475. "type": "zip",
  5476. "url": "https://api.github.com/repos/laravel/sail/zipball/a18519e96c32894ac3f8775fa8eb6de5750aca5a",
  5477. "reference": "a18519e96c32894ac3f8775fa8eb6de5750aca5a",
  5478. "shasum": ""
  5479. },
  5480. "require": {
  5481. "illuminate/contracts": "^8.0|^9.0",
  5482. "illuminate/support": "^8.0|^9.0",
  5483. "php": "^7.3|^8.0"
  5484. },
  5485. "bin": [
  5486. "bin/sail"
  5487. ],
  5488. "type": "library",
  5489. "extra": {
  5490. "branch-alias": {
  5491. "dev-master": "1.x-dev"
  5492. },
  5493. "laravel": {
  5494. "providers": [
  5495. "Laravel\\Sail\\SailServiceProvider"
  5496. ]
  5497. }
  5498. },
  5499. "autoload": {
  5500. "psr-4": {
  5501. "Laravel\\Sail\\": "src/"
  5502. }
  5503. },
  5504. "notification-url": "https://packagist.org/downloads/",
  5505. "license": [
  5506. "MIT"
  5507. ],
  5508. "authors": [
  5509. {
  5510. "name": "Taylor Otwell",
  5511. "email": "taylor@laravel.com"
  5512. }
  5513. ],
  5514. "description": "Docker files for running a basic Laravel application.",
  5515. "keywords": [
  5516. "docker",
  5517. "laravel"
  5518. ],
  5519. "support": {
  5520. "issues": "https://github.com/laravel/sail/issues",
  5521. "source": "https://github.com/laravel/sail"
  5522. },
  5523. "time": "2021-02-09T16:44:58+00:00"
  5524. },
  5525. {
  5526. "name": "maximebf/debugbar",
  5527. "version": "v1.16.5",
  5528. "source": {
  5529. "type": "git",
  5530. "url": "https://github.com/maximebf/php-debugbar.git",
  5531. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  5532. },
  5533. "dist": {
  5534. "type": "zip",
  5535. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  5536. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  5537. "shasum": ""
  5538. },
  5539. "require": {
  5540. "php": "^7.1|^8",
  5541. "psr/log": "^1.0",
  5542. "symfony/var-dumper": "^2.6|^3|^4|^5"
  5543. },
  5544. "require-dev": {
  5545. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  5546. },
  5547. "suggest": {
  5548. "kriswallsmith/assetic": "The best way to manage assets",
  5549. "monolog/monolog": "Log using Monolog",
  5550. "predis/predis": "Redis storage"
  5551. },
  5552. "type": "library",
  5553. "extra": {
  5554. "branch-alias": {
  5555. "dev-master": "1.16-dev"
  5556. }
  5557. },
  5558. "autoload": {
  5559. "psr-4": {
  5560. "DebugBar\\": "src/DebugBar/"
  5561. }
  5562. },
  5563. "notification-url": "https://packagist.org/downloads/",
  5564. "license": [
  5565. "MIT"
  5566. ],
  5567. "authors": [
  5568. {
  5569. "name": "Maxime Bouroumeau-Fuseau",
  5570. "email": "maxime.bouroumeau@gmail.com",
  5571. "homepage": "http://maximebf.com"
  5572. },
  5573. {
  5574. "name": "Barry vd. Heuvel",
  5575. "email": "barryvdh@gmail.com"
  5576. }
  5577. ],
  5578. "description": "Debug bar in the browser for php application",
  5579. "homepage": "https://github.com/maximebf/php-debugbar",
  5580. "keywords": [
  5581. "debug",
  5582. "debugbar"
  5583. ],
  5584. "support": {
  5585. "issues": "https://github.com/maximebf/php-debugbar/issues",
  5586. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  5587. },
  5588. "time": "2020-12-07T11:07:24+00:00"
  5589. },
  5590. {
  5591. "name": "mockery/mockery",
  5592. "version": "1.4.2",
  5593. "source": {
  5594. "type": "git",
  5595. "url": "https://github.com/mockery/mockery.git",
  5596. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  5597. },
  5598. "dist": {
  5599. "type": "zip",
  5600. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  5601. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  5602. "shasum": ""
  5603. },
  5604. "require": {
  5605. "hamcrest/hamcrest-php": "^2.0.1",
  5606. "lib-pcre": ">=7.0",
  5607. "php": "^7.3 || ^8.0"
  5608. },
  5609. "conflict": {
  5610. "phpunit/phpunit": "<8.0"
  5611. },
  5612. "require-dev": {
  5613. "phpunit/phpunit": "^8.5 || ^9.3"
  5614. },
  5615. "type": "library",
  5616. "extra": {
  5617. "branch-alias": {
  5618. "dev-master": "1.4.x-dev"
  5619. }
  5620. },
  5621. "autoload": {
  5622. "psr-0": {
  5623. "Mockery": "library/"
  5624. }
  5625. },
  5626. "notification-url": "https://packagist.org/downloads/",
  5627. "license": [
  5628. "BSD-3-Clause"
  5629. ],
  5630. "authors": [
  5631. {
  5632. "name": "Pádraic Brady",
  5633. "email": "padraic.brady@gmail.com",
  5634. "homepage": "http://blog.astrumfutura.com"
  5635. },
  5636. {
  5637. "name": "Dave Marshall",
  5638. "email": "dave.marshall@atstsolutions.co.uk",
  5639. "homepage": "http://davedevelopment.co.uk"
  5640. }
  5641. ],
  5642. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5643. "homepage": "https://github.com/mockery/mockery",
  5644. "keywords": [
  5645. "BDD",
  5646. "TDD",
  5647. "library",
  5648. "mock",
  5649. "mock objects",
  5650. "mockery",
  5651. "stub",
  5652. "test",
  5653. "test double",
  5654. "testing"
  5655. ],
  5656. "support": {
  5657. "issues": "https://github.com/mockery/mockery/issues",
  5658. "source": "https://github.com/mockery/mockery/tree/master"
  5659. },
  5660. "time": "2020-08-11T18:10:13+00:00"
  5661. },
  5662. {
  5663. "name": "myclabs/deep-copy",
  5664. "version": "1.10.2",
  5665. "source": {
  5666. "type": "git",
  5667. "url": "https://github.com/myclabs/DeepCopy.git",
  5668. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  5669. },
  5670. "dist": {
  5671. "type": "zip",
  5672. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  5673. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  5674. "shasum": ""
  5675. },
  5676. "require": {
  5677. "php": "^7.1 || ^8.0"
  5678. },
  5679. "replace": {
  5680. "myclabs/deep-copy": "self.version"
  5681. },
  5682. "require-dev": {
  5683. "doctrine/collections": "^1.0",
  5684. "doctrine/common": "^2.6",
  5685. "phpunit/phpunit": "^7.1"
  5686. },
  5687. "type": "library",
  5688. "autoload": {
  5689. "psr-4": {
  5690. "DeepCopy\\": "src/DeepCopy/"
  5691. },
  5692. "files": [
  5693. "src/DeepCopy/deep_copy.php"
  5694. ]
  5695. },
  5696. "notification-url": "https://packagist.org/downloads/",
  5697. "license": [
  5698. "MIT"
  5699. ],
  5700. "description": "Create deep copies (clones) of your objects",
  5701. "keywords": [
  5702. "clone",
  5703. "copy",
  5704. "duplicate",
  5705. "object",
  5706. "object graph"
  5707. ],
  5708. "support": {
  5709. "issues": "https://github.com/myclabs/DeepCopy/issues",
  5710. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  5711. },
  5712. "funding": [
  5713. {
  5714. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  5715. "type": "tidelift"
  5716. }
  5717. ],
  5718. "time": "2020-11-13T09:40:50+00:00"
  5719. },
  5720. {
  5721. "name": "nunomaduro/collision",
  5722. "version": "v5.3.0",
  5723. "source": {
  5724. "type": "git",
  5725. "url": "https://github.com/nunomaduro/collision.git",
  5726. "reference": "aca63581f380f63a492b1e3114604e411e39133a"
  5727. },
  5728. "dist": {
  5729. "type": "zip",
  5730. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/aca63581f380f63a492b1e3114604e411e39133a",
  5731. "reference": "aca63581f380f63a492b1e3114604e411e39133a",
  5732. "shasum": ""
  5733. },
  5734. "require": {
  5735. "facade/ignition-contracts": "^1.0",
  5736. "filp/whoops": "^2.7.2",
  5737. "php": "^7.3 || ^8.0",
  5738. "symfony/console": "^5.0"
  5739. },
  5740. "require-dev": {
  5741. "brianium/paratest": "^6.1",
  5742. "fideloper/proxy": "^4.4.1",
  5743. "friendsofphp/php-cs-fixer": "^2.17.3",
  5744. "fruitcake/laravel-cors": "^2.0.3",
  5745. "laravel/framework": "^9.0",
  5746. "nunomaduro/larastan": "^0.6.2",
  5747. "nunomaduro/mock-final-classes": "^1.0",
  5748. "orchestra/testbench": "^7.0",
  5749. "phpstan/phpstan": "^0.12.64",
  5750. "phpunit/phpunit": "^9.5.0"
  5751. },
  5752. "type": "library",
  5753. "extra": {
  5754. "laravel": {
  5755. "providers": [
  5756. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5757. ]
  5758. }
  5759. },
  5760. "autoload": {
  5761. "psr-4": {
  5762. "NunoMaduro\\Collision\\": "src/"
  5763. }
  5764. },
  5765. "notification-url": "https://packagist.org/downloads/",
  5766. "license": [
  5767. "MIT"
  5768. ],
  5769. "authors": [
  5770. {
  5771. "name": "Nuno Maduro",
  5772. "email": "enunomaduro@gmail.com"
  5773. }
  5774. ],
  5775. "description": "Cli error handling for console/command-line PHP applications.",
  5776. "keywords": [
  5777. "artisan",
  5778. "cli",
  5779. "command-line",
  5780. "console",
  5781. "error",
  5782. "handling",
  5783. "laravel",
  5784. "laravel-zero",
  5785. "php",
  5786. "symfony"
  5787. ],
  5788. "support": {
  5789. "issues": "https://github.com/nunomaduro/collision/issues",
  5790. "source": "https://github.com/nunomaduro/collision"
  5791. },
  5792. "funding": [
  5793. {
  5794. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  5795. "type": "custom"
  5796. },
  5797. {
  5798. "url": "https://github.com/nunomaduro",
  5799. "type": "github"
  5800. },
  5801. {
  5802. "url": "https://www.patreon.com/nunomaduro",
  5803. "type": "patreon"
  5804. }
  5805. ],
  5806. "time": "2021-01-25T15:34:13+00:00"
  5807. },
  5808. {
  5809. "name": "phar-io/manifest",
  5810. "version": "2.0.1",
  5811. "source": {
  5812. "type": "git",
  5813. "url": "https://github.com/phar-io/manifest.git",
  5814. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  5815. },
  5816. "dist": {
  5817. "type": "zip",
  5818. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  5819. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  5820. "shasum": ""
  5821. },
  5822. "require": {
  5823. "ext-dom": "*",
  5824. "ext-phar": "*",
  5825. "ext-xmlwriter": "*",
  5826. "phar-io/version": "^3.0.1",
  5827. "php": "^7.2 || ^8.0"
  5828. },
  5829. "type": "library",
  5830. "extra": {
  5831. "branch-alias": {
  5832. "dev-master": "2.0.x-dev"
  5833. }
  5834. },
  5835. "autoload": {
  5836. "classmap": [
  5837. "src/"
  5838. ]
  5839. },
  5840. "notification-url": "https://packagist.org/downloads/",
  5841. "license": [
  5842. "BSD-3-Clause"
  5843. ],
  5844. "authors": [
  5845. {
  5846. "name": "Arne Blankerts",
  5847. "email": "arne@blankerts.de",
  5848. "role": "Developer"
  5849. },
  5850. {
  5851. "name": "Sebastian Heuer",
  5852. "email": "sebastian@phpeople.de",
  5853. "role": "Developer"
  5854. },
  5855. {
  5856. "name": "Sebastian Bergmann",
  5857. "email": "sebastian@phpunit.de",
  5858. "role": "Developer"
  5859. }
  5860. ],
  5861. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5862. "support": {
  5863. "issues": "https://github.com/phar-io/manifest/issues",
  5864. "source": "https://github.com/phar-io/manifest/tree/master"
  5865. },
  5866. "time": "2020-06-27T14:33:11+00:00"
  5867. },
  5868. {
  5869. "name": "phar-io/version",
  5870. "version": "3.0.4",
  5871. "source": {
  5872. "type": "git",
  5873. "url": "https://github.com/phar-io/version.git",
  5874. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451"
  5875. },
  5876. "dist": {
  5877. "type": "zip",
  5878. "url": "https://api.github.com/repos/phar-io/version/zipball/e4782611070e50613683d2b9a57730e9a3ba5451",
  5879. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451",
  5880. "shasum": ""
  5881. },
  5882. "require": {
  5883. "php": "^7.2 || ^8.0"
  5884. },
  5885. "type": "library",
  5886. "autoload": {
  5887. "classmap": [
  5888. "src/"
  5889. ]
  5890. },
  5891. "notification-url": "https://packagist.org/downloads/",
  5892. "license": [
  5893. "BSD-3-Clause"
  5894. ],
  5895. "authors": [
  5896. {
  5897. "name": "Arne Blankerts",
  5898. "email": "arne@blankerts.de",
  5899. "role": "Developer"
  5900. },
  5901. {
  5902. "name": "Sebastian Heuer",
  5903. "email": "sebastian@phpeople.de",
  5904. "role": "Developer"
  5905. },
  5906. {
  5907. "name": "Sebastian Bergmann",
  5908. "email": "sebastian@phpunit.de",
  5909. "role": "Developer"
  5910. }
  5911. ],
  5912. "description": "Library for handling version information and constraints",
  5913. "support": {
  5914. "issues": "https://github.com/phar-io/version/issues",
  5915. "source": "https://github.com/phar-io/version/tree/3.0.4"
  5916. },
  5917. "time": "2020-12-13T23:18:30+00:00"
  5918. },
  5919. {
  5920. "name": "phpdocumentor/reflection-common",
  5921. "version": "2.2.0",
  5922. "source": {
  5923. "type": "git",
  5924. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5925. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  5926. },
  5927. "dist": {
  5928. "type": "zip",
  5929. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5930. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5931. "shasum": ""
  5932. },
  5933. "require": {
  5934. "php": "^7.2 || ^8.0"
  5935. },
  5936. "type": "library",
  5937. "extra": {
  5938. "branch-alias": {
  5939. "dev-2.x": "2.x-dev"
  5940. }
  5941. },
  5942. "autoload": {
  5943. "psr-4": {
  5944. "phpDocumentor\\Reflection\\": "src/"
  5945. }
  5946. },
  5947. "notification-url": "https://packagist.org/downloads/",
  5948. "license": [
  5949. "MIT"
  5950. ],
  5951. "authors": [
  5952. {
  5953. "name": "Jaap van Otterdijk",
  5954. "email": "opensource@ijaap.nl"
  5955. }
  5956. ],
  5957. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5958. "homepage": "http://www.phpdoc.org",
  5959. "keywords": [
  5960. "FQSEN",
  5961. "phpDocumentor",
  5962. "phpdoc",
  5963. "reflection",
  5964. "static analysis"
  5965. ],
  5966. "support": {
  5967. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  5968. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  5969. },
  5970. "time": "2020-06-27T09:03:43+00:00"
  5971. },
  5972. {
  5973. "name": "phpdocumentor/reflection-docblock",
  5974. "version": "5.2.2",
  5975. "source": {
  5976. "type": "git",
  5977. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5978. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  5979. },
  5980. "dist": {
  5981. "type": "zip",
  5982. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  5983. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  5984. "shasum": ""
  5985. },
  5986. "require": {
  5987. "ext-filter": "*",
  5988. "php": "^7.2 || ^8.0",
  5989. "phpdocumentor/reflection-common": "^2.2",
  5990. "phpdocumentor/type-resolver": "^1.3",
  5991. "webmozart/assert": "^1.9.1"
  5992. },
  5993. "require-dev": {
  5994. "mockery/mockery": "~1.3.2"
  5995. },
  5996. "type": "library",
  5997. "extra": {
  5998. "branch-alias": {
  5999. "dev-master": "5.x-dev"
  6000. }
  6001. },
  6002. "autoload": {
  6003. "psr-4": {
  6004. "phpDocumentor\\Reflection\\": "src"
  6005. }
  6006. },
  6007. "notification-url": "https://packagist.org/downloads/",
  6008. "license": [
  6009. "MIT"
  6010. ],
  6011. "authors": [
  6012. {
  6013. "name": "Mike van Riel",
  6014. "email": "me@mikevanriel.com"
  6015. },
  6016. {
  6017. "name": "Jaap van Otterdijk",
  6018. "email": "account@ijaap.nl"
  6019. }
  6020. ],
  6021. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  6022. "support": {
  6023. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  6024. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  6025. },
  6026. "time": "2020-09-03T19:13:55+00:00"
  6027. },
  6028. {
  6029. "name": "phpdocumentor/type-resolver",
  6030. "version": "1.4.0",
  6031. "source": {
  6032. "type": "git",
  6033. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  6034. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  6035. },
  6036. "dist": {
  6037. "type": "zip",
  6038. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  6039. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  6040. "shasum": ""
  6041. },
  6042. "require": {
  6043. "php": "^7.2 || ^8.0",
  6044. "phpdocumentor/reflection-common": "^2.0"
  6045. },
  6046. "require-dev": {
  6047. "ext-tokenizer": "*"
  6048. },
  6049. "type": "library",
  6050. "extra": {
  6051. "branch-alias": {
  6052. "dev-1.x": "1.x-dev"
  6053. }
  6054. },
  6055. "autoload": {
  6056. "psr-4": {
  6057. "phpDocumentor\\Reflection\\": "src"
  6058. }
  6059. },
  6060. "notification-url": "https://packagist.org/downloads/",
  6061. "license": [
  6062. "MIT"
  6063. ],
  6064. "authors": [
  6065. {
  6066. "name": "Mike van Riel",
  6067. "email": "me@mikevanriel.com"
  6068. }
  6069. ],
  6070. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  6071. "support": {
  6072. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  6073. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  6074. },
  6075. "time": "2020-09-17T18:55:26+00:00"
  6076. },
  6077. {
  6078. "name": "phpspec/prophecy",
  6079. "version": "1.12.2",
  6080. "source": {
  6081. "type": "git",
  6082. "url": "https://github.com/phpspec/prophecy.git",
  6083. "reference": "245710e971a030f42e08f4912863805570f23d39"
  6084. },
  6085. "dist": {
  6086. "type": "zip",
  6087. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
  6088. "reference": "245710e971a030f42e08f4912863805570f23d39",
  6089. "shasum": ""
  6090. },
  6091. "require": {
  6092. "doctrine/instantiator": "^1.2",
  6093. "php": "^7.2 || ~8.0, <8.1",
  6094. "phpdocumentor/reflection-docblock": "^5.2",
  6095. "sebastian/comparator": "^3.0 || ^4.0",
  6096. "sebastian/recursion-context": "^3.0 || ^4.0"
  6097. },
  6098. "require-dev": {
  6099. "phpspec/phpspec": "^6.0",
  6100. "phpunit/phpunit": "^8.0 || ^9.0"
  6101. },
  6102. "type": "library",
  6103. "extra": {
  6104. "branch-alias": {
  6105. "dev-master": "1.11.x-dev"
  6106. }
  6107. },
  6108. "autoload": {
  6109. "psr-4": {
  6110. "Prophecy\\": "src/Prophecy"
  6111. }
  6112. },
  6113. "notification-url": "https://packagist.org/downloads/",
  6114. "license": [
  6115. "MIT"
  6116. ],
  6117. "authors": [
  6118. {
  6119. "name": "Konstantin Kudryashov",
  6120. "email": "ever.zet@gmail.com",
  6121. "homepage": "http://everzet.com"
  6122. },
  6123. {
  6124. "name": "Marcello Duarte",
  6125. "email": "marcello.duarte@gmail.com"
  6126. }
  6127. ],
  6128. "description": "Highly opinionated mocking framework for PHP 5.3+",
  6129. "homepage": "https://github.com/phpspec/prophecy",
  6130. "keywords": [
  6131. "Double",
  6132. "Dummy",
  6133. "fake",
  6134. "mock",
  6135. "spy",
  6136. "stub"
  6137. ],
  6138. "support": {
  6139. "issues": "https://github.com/phpspec/prophecy/issues",
  6140. "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
  6141. },
  6142. "time": "2020-12-19T10:15:11+00:00"
  6143. },
  6144. {
  6145. "name": "phpunit/php-code-coverage",
  6146. "version": "9.2.5",
  6147. "source": {
  6148. "type": "git",
  6149. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6150. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
  6151. },
  6152. "dist": {
  6153. "type": "zip",
  6154. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
  6155. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
  6156. "shasum": ""
  6157. },
  6158. "require": {
  6159. "ext-dom": "*",
  6160. "ext-libxml": "*",
  6161. "ext-xmlwriter": "*",
  6162. "nikic/php-parser": "^4.10.2",
  6163. "php": ">=7.3",
  6164. "phpunit/php-file-iterator": "^3.0.3",
  6165. "phpunit/php-text-template": "^2.0.2",
  6166. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  6167. "sebastian/complexity": "^2.0",
  6168. "sebastian/environment": "^5.1.2",
  6169. "sebastian/lines-of-code": "^1.0.3",
  6170. "sebastian/version": "^3.0.1",
  6171. "theseer/tokenizer": "^1.2.0"
  6172. },
  6173. "require-dev": {
  6174. "phpunit/phpunit": "^9.3"
  6175. },
  6176. "suggest": {
  6177. "ext-pcov": "*",
  6178. "ext-xdebug": "*"
  6179. },
  6180. "type": "library",
  6181. "extra": {
  6182. "branch-alias": {
  6183. "dev-master": "9.2-dev"
  6184. }
  6185. },
  6186. "autoload": {
  6187. "classmap": [
  6188. "src/"
  6189. ]
  6190. },
  6191. "notification-url": "https://packagist.org/downloads/",
  6192. "license": [
  6193. "BSD-3-Clause"
  6194. ],
  6195. "authors": [
  6196. {
  6197. "name": "Sebastian Bergmann",
  6198. "email": "sebastian@phpunit.de",
  6199. "role": "lead"
  6200. }
  6201. ],
  6202. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6203. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6204. "keywords": [
  6205. "coverage",
  6206. "testing",
  6207. "xunit"
  6208. ],
  6209. "support": {
  6210. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  6211. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
  6212. },
  6213. "funding": [
  6214. {
  6215. "url": "https://github.com/sebastianbergmann",
  6216. "type": "github"
  6217. }
  6218. ],
  6219. "time": "2020-11-28T06:44:49+00:00"
  6220. },
  6221. {
  6222. "name": "phpunit/php-file-iterator",
  6223. "version": "3.0.5",
  6224. "source": {
  6225. "type": "git",
  6226. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6227. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  6228. },
  6229. "dist": {
  6230. "type": "zip",
  6231. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  6232. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  6233. "shasum": ""
  6234. },
  6235. "require": {
  6236. "php": ">=7.3"
  6237. },
  6238. "require-dev": {
  6239. "phpunit/phpunit": "^9.3"
  6240. },
  6241. "type": "library",
  6242. "extra": {
  6243. "branch-alias": {
  6244. "dev-master": "3.0-dev"
  6245. }
  6246. },
  6247. "autoload": {
  6248. "classmap": [
  6249. "src/"
  6250. ]
  6251. },
  6252. "notification-url": "https://packagist.org/downloads/",
  6253. "license": [
  6254. "BSD-3-Clause"
  6255. ],
  6256. "authors": [
  6257. {
  6258. "name": "Sebastian Bergmann",
  6259. "email": "sebastian@phpunit.de",
  6260. "role": "lead"
  6261. }
  6262. ],
  6263. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6264. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6265. "keywords": [
  6266. "filesystem",
  6267. "iterator"
  6268. ],
  6269. "support": {
  6270. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  6271. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  6272. },
  6273. "funding": [
  6274. {
  6275. "url": "https://github.com/sebastianbergmann",
  6276. "type": "github"
  6277. }
  6278. ],
  6279. "time": "2020-09-28T05:57:25+00:00"
  6280. },
  6281. {
  6282. "name": "phpunit/php-invoker",
  6283. "version": "3.1.1",
  6284. "source": {
  6285. "type": "git",
  6286. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  6287. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  6288. },
  6289. "dist": {
  6290. "type": "zip",
  6291. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6292. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6293. "shasum": ""
  6294. },
  6295. "require": {
  6296. "php": ">=7.3"
  6297. },
  6298. "require-dev": {
  6299. "ext-pcntl": "*",
  6300. "phpunit/phpunit": "^9.3"
  6301. },
  6302. "suggest": {
  6303. "ext-pcntl": "*"
  6304. },
  6305. "type": "library",
  6306. "extra": {
  6307. "branch-alias": {
  6308. "dev-master": "3.1-dev"
  6309. }
  6310. },
  6311. "autoload": {
  6312. "classmap": [
  6313. "src/"
  6314. ]
  6315. },
  6316. "notification-url": "https://packagist.org/downloads/",
  6317. "license": [
  6318. "BSD-3-Clause"
  6319. ],
  6320. "authors": [
  6321. {
  6322. "name": "Sebastian Bergmann",
  6323. "email": "sebastian@phpunit.de",
  6324. "role": "lead"
  6325. }
  6326. ],
  6327. "description": "Invoke callables with a timeout",
  6328. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6329. "keywords": [
  6330. "process"
  6331. ],
  6332. "support": {
  6333. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  6334. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  6335. },
  6336. "funding": [
  6337. {
  6338. "url": "https://github.com/sebastianbergmann",
  6339. "type": "github"
  6340. }
  6341. ],
  6342. "time": "2020-09-28T05:58:55+00:00"
  6343. },
  6344. {
  6345. "name": "phpunit/php-text-template",
  6346. "version": "2.0.4",
  6347. "source": {
  6348. "type": "git",
  6349. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6350. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  6351. },
  6352. "dist": {
  6353. "type": "zip",
  6354. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6355. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6356. "shasum": ""
  6357. },
  6358. "require": {
  6359. "php": ">=7.3"
  6360. },
  6361. "require-dev": {
  6362. "phpunit/phpunit": "^9.3"
  6363. },
  6364. "type": "library",
  6365. "extra": {
  6366. "branch-alias": {
  6367. "dev-master": "2.0-dev"
  6368. }
  6369. },
  6370. "autoload": {
  6371. "classmap": [
  6372. "src/"
  6373. ]
  6374. },
  6375. "notification-url": "https://packagist.org/downloads/",
  6376. "license": [
  6377. "BSD-3-Clause"
  6378. ],
  6379. "authors": [
  6380. {
  6381. "name": "Sebastian Bergmann",
  6382. "email": "sebastian@phpunit.de",
  6383. "role": "lead"
  6384. }
  6385. ],
  6386. "description": "Simple template engine.",
  6387. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6388. "keywords": [
  6389. "template"
  6390. ],
  6391. "support": {
  6392. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  6393. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  6394. },
  6395. "funding": [
  6396. {
  6397. "url": "https://github.com/sebastianbergmann",
  6398. "type": "github"
  6399. }
  6400. ],
  6401. "time": "2020-10-26T05:33:50+00:00"
  6402. },
  6403. {
  6404. "name": "phpunit/php-timer",
  6405. "version": "5.0.3",
  6406. "source": {
  6407. "type": "git",
  6408. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6409. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  6410. },
  6411. "dist": {
  6412. "type": "zip",
  6413. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6414. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6415. "shasum": ""
  6416. },
  6417. "require": {
  6418. "php": ">=7.3"
  6419. },
  6420. "require-dev": {
  6421. "phpunit/phpunit": "^9.3"
  6422. },
  6423. "type": "library",
  6424. "extra": {
  6425. "branch-alias": {
  6426. "dev-master": "5.0-dev"
  6427. }
  6428. },
  6429. "autoload": {
  6430. "classmap": [
  6431. "src/"
  6432. ]
  6433. },
  6434. "notification-url": "https://packagist.org/downloads/",
  6435. "license": [
  6436. "BSD-3-Clause"
  6437. ],
  6438. "authors": [
  6439. {
  6440. "name": "Sebastian Bergmann",
  6441. "email": "sebastian@phpunit.de",
  6442. "role": "lead"
  6443. }
  6444. ],
  6445. "description": "Utility class for timing",
  6446. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6447. "keywords": [
  6448. "timer"
  6449. ],
  6450. "support": {
  6451. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  6452. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  6453. },
  6454. "funding": [
  6455. {
  6456. "url": "https://github.com/sebastianbergmann",
  6457. "type": "github"
  6458. }
  6459. ],
  6460. "time": "2020-10-26T13:16:10+00:00"
  6461. },
  6462. {
  6463. "name": "phpunit/phpunit",
  6464. "version": "9.5.2",
  6465. "source": {
  6466. "type": "git",
  6467. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6468. "reference": "f661659747f2f87f9e72095bb207bceb0f151cb4"
  6469. },
  6470. "dist": {
  6471. "type": "zip",
  6472. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f661659747f2f87f9e72095bb207bceb0f151cb4",
  6473. "reference": "f661659747f2f87f9e72095bb207bceb0f151cb4",
  6474. "shasum": ""
  6475. },
  6476. "require": {
  6477. "doctrine/instantiator": "^1.3.1",
  6478. "ext-dom": "*",
  6479. "ext-json": "*",
  6480. "ext-libxml": "*",
  6481. "ext-mbstring": "*",
  6482. "ext-xml": "*",
  6483. "ext-xmlwriter": "*",
  6484. "myclabs/deep-copy": "^1.10.1",
  6485. "phar-io/manifest": "^2.0.1",
  6486. "phar-io/version": "^3.0.2",
  6487. "php": ">=7.3",
  6488. "phpspec/prophecy": "^1.12.1",
  6489. "phpunit/php-code-coverage": "^9.2.3",
  6490. "phpunit/php-file-iterator": "^3.0.5",
  6491. "phpunit/php-invoker": "^3.1.1",
  6492. "phpunit/php-text-template": "^2.0.3",
  6493. "phpunit/php-timer": "^5.0.2",
  6494. "sebastian/cli-parser": "^1.0.1",
  6495. "sebastian/code-unit": "^1.0.6",
  6496. "sebastian/comparator": "^4.0.5",
  6497. "sebastian/diff": "^4.0.3",
  6498. "sebastian/environment": "^5.1.3",
  6499. "sebastian/exporter": "^4.0.3",
  6500. "sebastian/global-state": "^5.0.1",
  6501. "sebastian/object-enumerator": "^4.0.3",
  6502. "sebastian/resource-operations": "^3.0.3",
  6503. "sebastian/type": "^2.3",
  6504. "sebastian/version": "^3.0.2"
  6505. },
  6506. "require-dev": {
  6507. "ext-pdo": "*",
  6508. "phpspec/prophecy-phpunit": "^2.0.1"
  6509. },
  6510. "suggest": {
  6511. "ext-soap": "*",
  6512. "ext-xdebug": "*"
  6513. },
  6514. "bin": [
  6515. "phpunit"
  6516. ],
  6517. "type": "library",
  6518. "extra": {
  6519. "branch-alias": {
  6520. "dev-master": "9.5-dev"
  6521. }
  6522. },
  6523. "autoload": {
  6524. "classmap": [
  6525. "src/"
  6526. ],
  6527. "files": [
  6528. "src/Framework/Assert/Functions.php"
  6529. ]
  6530. },
  6531. "notification-url": "https://packagist.org/downloads/",
  6532. "license": [
  6533. "BSD-3-Clause"
  6534. ],
  6535. "authors": [
  6536. {
  6537. "name": "Sebastian Bergmann",
  6538. "email": "sebastian@phpunit.de",
  6539. "role": "lead"
  6540. }
  6541. ],
  6542. "description": "The PHP Unit Testing framework.",
  6543. "homepage": "https://phpunit.de/",
  6544. "keywords": [
  6545. "phpunit",
  6546. "testing",
  6547. "xunit"
  6548. ],
  6549. "support": {
  6550. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  6551. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.2"
  6552. },
  6553. "funding": [
  6554. {
  6555. "url": "https://phpunit.de/donate.html",
  6556. "type": "custom"
  6557. },
  6558. {
  6559. "url": "https://github.com/sebastianbergmann",
  6560. "type": "github"
  6561. }
  6562. ],
  6563. "time": "2021-02-02T14:45:58+00:00"
  6564. },
  6565. {
  6566. "name": "sebastian/cli-parser",
  6567. "version": "1.0.1",
  6568. "source": {
  6569. "type": "git",
  6570. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  6571. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  6572. },
  6573. "dist": {
  6574. "type": "zip",
  6575. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6576. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6577. "shasum": ""
  6578. },
  6579. "require": {
  6580. "php": ">=7.3"
  6581. },
  6582. "require-dev": {
  6583. "phpunit/phpunit": "^9.3"
  6584. },
  6585. "type": "library",
  6586. "extra": {
  6587. "branch-alias": {
  6588. "dev-master": "1.0-dev"
  6589. }
  6590. },
  6591. "autoload": {
  6592. "classmap": [
  6593. "src/"
  6594. ]
  6595. },
  6596. "notification-url": "https://packagist.org/downloads/",
  6597. "license": [
  6598. "BSD-3-Clause"
  6599. ],
  6600. "authors": [
  6601. {
  6602. "name": "Sebastian Bergmann",
  6603. "email": "sebastian@phpunit.de",
  6604. "role": "lead"
  6605. }
  6606. ],
  6607. "description": "Library for parsing CLI options",
  6608. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  6609. "support": {
  6610. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  6611. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  6612. },
  6613. "funding": [
  6614. {
  6615. "url": "https://github.com/sebastianbergmann",
  6616. "type": "github"
  6617. }
  6618. ],
  6619. "time": "2020-09-28T06:08:49+00:00"
  6620. },
  6621. {
  6622. "name": "sebastian/code-unit",
  6623. "version": "1.0.8",
  6624. "source": {
  6625. "type": "git",
  6626. "url": "https://github.com/sebastianbergmann/code-unit.git",
  6627. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  6628. },
  6629. "dist": {
  6630. "type": "zip",
  6631. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6632. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6633. "shasum": ""
  6634. },
  6635. "require": {
  6636. "php": ">=7.3"
  6637. },
  6638. "require-dev": {
  6639. "phpunit/phpunit": "^9.3"
  6640. },
  6641. "type": "library",
  6642. "extra": {
  6643. "branch-alias": {
  6644. "dev-master": "1.0-dev"
  6645. }
  6646. },
  6647. "autoload": {
  6648. "classmap": [
  6649. "src/"
  6650. ]
  6651. },
  6652. "notification-url": "https://packagist.org/downloads/",
  6653. "license": [
  6654. "BSD-3-Clause"
  6655. ],
  6656. "authors": [
  6657. {
  6658. "name": "Sebastian Bergmann",
  6659. "email": "sebastian@phpunit.de",
  6660. "role": "lead"
  6661. }
  6662. ],
  6663. "description": "Collection of value objects that represent the PHP code units",
  6664. "homepage": "https://github.com/sebastianbergmann/code-unit",
  6665. "support": {
  6666. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  6667. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  6668. },
  6669. "funding": [
  6670. {
  6671. "url": "https://github.com/sebastianbergmann",
  6672. "type": "github"
  6673. }
  6674. ],
  6675. "time": "2020-10-26T13:08:54+00:00"
  6676. },
  6677. {
  6678. "name": "sebastian/code-unit-reverse-lookup",
  6679. "version": "2.0.3",
  6680. "source": {
  6681. "type": "git",
  6682. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6683. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  6684. },
  6685. "dist": {
  6686. "type": "zip",
  6687. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6688. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6689. "shasum": ""
  6690. },
  6691. "require": {
  6692. "php": ">=7.3"
  6693. },
  6694. "require-dev": {
  6695. "phpunit/phpunit": "^9.3"
  6696. },
  6697. "type": "library",
  6698. "extra": {
  6699. "branch-alias": {
  6700. "dev-master": "2.0-dev"
  6701. }
  6702. },
  6703. "autoload": {
  6704. "classmap": [
  6705. "src/"
  6706. ]
  6707. },
  6708. "notification-url": "https://packagist.org/downloads/",
  6709. "license": [
  6710. "BSD-3-Clause"
  6711. ],
  6712. "authors": [
  6713. {
  6714. "name": "Sebastian Bergmann",
  6715. "email": "sebastian@phpunit.de"
  6716. }
  6717. ],
  6718. "description": "Looks up which function or method a line of code belongs to",
  6719. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6720. "support": {
  6721. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  6722. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  6723. },
  6724. "funding": [
  6725. {
  6726. "url": "https://github.com/sebastianbergmann",
  6727. "type": "github"
  6728. }
  6729. ],
  6730. "time": "2020-09-28T05:30:19+00:00"
  6731. },
  6732. {
  6733. "name": "sebastian/comparator",
  6734. "version": "4.0.6",
  6735. "source": {
  6736. "type": "git",
  6737. "url": "https://github.com/sebastianbergmann/comparator.git",
  6738. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  6739. },
  6740. "dist": {
  6741. "type": "zip",
  6742. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  6743. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  6744. "shasum": ""
  6745. },
  6746. "require": {
  6747. "php": ">=7.3",
  6748. "sebastian/diff": "^4.0",
  6749. "sebastian/exporter": "^4.0"
  6750. },
  6751. "require-dev": {
  6752. "phpunit/phpunit": "^9.3"
  6753. },
  6754. "type": "library",
  6755. "extra": {
  6756. "branch-alias": {
  6757. "dev-master": "4.0-dev"
  6758. }
  6759. },
  6760. "autoload": {
  6761. "classmap": [
  6762. "src/"
  6763. ]
  6764. },
  6765. "notification-url": "https://packagist.org/downloads/",
  6766. "license": [
  6767. "BSD-3-Clause"
  6768. ],
  6769. "authors": [
  6770. {
  6771. "name": "Sebastian Bergmann",
  6772. "email": "sebastian@phpunit.de"
  6773. },
  6774. {
  6775. "name": "Jeff Welch",
  6776. "email": "whatthejeff@gmail.com"
  6777. },
  6778. {
  6779. "name": "Volker Dusch",
  6780. "email": "github@wallbash.com"
  6781. },
  6782. {
  6783. "name": "Bernhard Schussek",
  6784. "email": "bschussek@2bepublished.at"
  6785. }
  6786. ],
  6787. "description": "Provides the functionality to compare PHP values for equality",
  6788. "homepage": "https://github.com/sebastianbergmann/comparator",
  6789. "keywords": [
  6790. "comparator",
  6791. "compare",
  6792. "equality"
  6793. ],
  6794. "support": {
  6795. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  6796. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  6797. },
  6798. "funding": [
  6799. {
  6800. "url": "https://github.com/sebastianbergmann",
  6801. "type": "github"
  6802. }
  6803. ],
  6804. "time": "2020-10-26T15:49:45+00:00"
  6805. },
  6806. {
  6807. "name": "sebastian/complexity",
  6808. "version": "2.0.2",
  6809. "source": {
  6810. "type": "git",
  6811. "url": "https://github.com/sebastianbergmann/complexity.git",
  6812. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  6813. },
  6814. "dist": {
  6815. "type": "zip",
  6816. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  6817. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  6818. "shasum": ""
  6819. },
  6820. "require": {
  6821. "nikic/php-parser": "^4.7",
  6822. "php": ">=7.3"
  6823. },
  6824. "require-dev": {
  6825. "phpunit/phpunit": "^9.3"
  6826. },
  6827. "type": "library",
  6828. "extra": {
  6829. "branch-alias": {
  6830. "dev-master": "2.0-dev"
  6831. }
  6832. },
  6833. "autoload": {
  6834. "classmap": [
  6835. "src/"
  6836. ]
  6837. },
  6838. "notification-url": "https://packagist.org/downloads/",
  6839. "license": [
  6840. "BSD-3-Clause"
  6841. ],
  6842. "authors": [
  6843. {
  6844. "name": "Sebastian Bergmann",
  6845. "email": "sebastian@phpunit.de",
  6846. "role": "lead"
  6847. }
  6848. ],
  6849. "description": "Library for calculating the complexity of PHP code units",
  6850. "homepage": "https://github.com/sebastianbergmann/complexity",
  6851. "support": {
  6852. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  6853. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  6854. },
  6855. "funding": [
  6856. {
  6857. "url": "https://github.com/sebastianbergmann",
  6858. "type": "github"
  6859. }
  6860. ],
  6861. "time": "2020-10-26T15:52:27+00:00"
  6862. },
  6863. {
  6864. "name": "sebastian/diff",
  6865. "version": "4.0.4",
  6866. "source": {
  6867. "type": "git",
  6868. "url": "https://github.com/sebastianbergmann/diff.git",
  6869. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  6870. },
  6871. "dist": {
  6872. "type": "zip",
  6873. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  6874. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  6875. "shasum": ""
  6876. },
  6877. "require": {
  6878. "php": ">=7.3"
  6879. },
  6880. "require-dev": {
  6881. "phpunit/phpunit": "^9.3",
  6882. "symfony/process": "^4.2 || ^5"
  6883. },
  6884. "type": "library",
  6885. "extra": {
  6886. "branch-alias": {
  6887. "dev-master": "4.0-dev"
  6888. }
  6889. },
  6890. "autoload": {
  6891. "classmap": [
  6892. "src/"
  6893. ]
  6894. },
  6895. "notification-url": "https://packagist.org/downloads/",
  6896. "license": [
  6897. "BSD-3-Clause"
  6898. ],
  6899. "authors": [
  6900. {
  6901. "name": "Sebastian Bergmann",
  6902. "email": "sebastian@phpunit.de"
  6903. },
  6904. {
  6905. "name": "Kore Nordmann",
  6906. "email": "mail@kore-nordmann.de"
  6907. }
  6908. ],
  6909. "description": "Diff implementation",
  6910. "homepage": "https://github.com/sebastianbergmann/diff",
  6911. "keywords": [
  6912. "diff",
  6913. "udiff",
  6914. "unidiff",
  6915. "unified diff"
  6916. ],
  6917. "support": {
  6918. "issues": "https://github.com/sebastianbergmann/diff/issues",
  6919. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  6920. },
  6921. "funding": [
  6922. {
  6923. "url": "https://github.com/sebastianbergmann",
  6924. "type": "github"
  6925. }
  6926. ],
  6927. "time": "2020-10-26T13:10:38+00:00"
  6928. },
  6929. {
  6930. "name": "sebastian/environment",
  6931. "version": "5.1.3",
  6932. "source": {
  6933. "type": "git",
  6934. "url": "https://github.com/sebastianbergmann/environment.git",
  6935. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  6936. },
  6937. "dist": {
  6938. "type": "zip",
  6939. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  6940. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  6941. "shasum": ""
  6942. },
  6943. "require": {
  6944. "php": ">=7.3"
  6945. },
  6946. "require-dev": {
  6947. "phpunit/phpunit": "^9.3"
  6948. },
  6949. "suggest": {
  6950. "ext-posix": "*"
  6951. },
  6952. "type": "library",
  6953. "extra": {
  6954. "branch-alias": {
  6955. "dev-master": "5.1-dev"
  6956. }
  6957. },
  6958. "autoload": {
  6959. "classmap": [
  6960. "src/"
  6961. ]
  6962. },
  6963. "notification-url": "https://packagist.org/downloads/",
  6964. "license": [
  6965. "BSD-3-Clause"
  6966. ],
  6967. "authors": [
  6968. {
  6969. "name": "Sebastian Bergmann",
  6970. "email": "sebastian@phpunit.de"
  6971. }
  6972. ],
  6973. "description": "Provides functionality to handle HHVM/PHP environments",
  6974. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6975. "keywords": [
  6976. "Xdebug",
  6977. "environment",
  6978. "hhvm"
  6979. ],
  6980. "support": {
  6981. "issues": "https://github.com/sebastianbergmann/environment/issues",
  6982. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  6983. },
  6984. "funding": [
  6985. {
  6986. "url": "https://github.com/sebastianbergmann",
  6987. "type": "github"
  6988. }
  6989. ],
  6990. "time": "2020-09-28T05:52:38+00:00"
  6991. },
  6992. {
  6993. "name": "sebastian/exporter",
  6994. "version": "4.0.3",
  6995. "source": {
  6996. "type": "git",
  6997. "url": "https://github.com/sebastianbergmann/exporter.git",
  6998. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  6999. },
  7000. "dist": {
  7001. "type": "zip",
  7002. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  7003. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  7004. "shasum": ""
  7005. },
  7006. "require": {
  7007. "php": ">=7.3",
  7008. "sebastian/recursion-context": "^4.0"
  7009. },
  7010. "require-dev": {
  7011. "ext-mbstring": "*",
  7012. "phpunit/phpunit": "^9.3"
  7013. },
  7014. "type": "library",
  7015. "extra": {
  7016. "branch-alias": {
  7017. "dev-master": "4.0-dev"
  7018. }
  7019. },
  7020. "autoload": {
  7021. "classmap": [
  7022. "src/"
  7023. ]
  7024. },
  7025. "notification-url": "https://packagist.org/downloads/",
  7026. "license": [
  7027. "BSD-3-Clause"
  7028. ],
  7029. "authors": [
  7030. {
  7031. "name": "Sebastian Bergmann",
  7032. "email": "sebastian@phpunit.de"
  7033. },
  7034. {
  7035. "name": "Jeff Welch",
  7036. "email": "whatthejeff@gmail.com"
  7037. },
  7038. {
  7039. "name": "Volker Dusch",
  7040. "email": "github@wallbash.com"
  7041. },
  7042. {
  7043. "name": "Adam Harvey",
  7044. "email": "aharvey@php.net"
  7045. },
  7046. {
  7047. "name": "Bernhard Schussek",
  7048. "email": "bschussek@gmail.com"
  7049. }
  7050. ],
  7051. "description": "Provides the functionality to export PHP variables for visualization",
  7052. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7053. "keywords": [
  7054. "export",
  7055. "exporter"
  7056. ],
  7057. "support": {
  7058. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7059. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  7060. },
  7061. "funding": [
  7062. {
  7063. "url": "https://github.com/sebastianbergmann",
  7064. "type": "github"
  7065. }
  7066. ],
  7067. "time": "2020-09-28T05:24:23+00:00"
  7068. },
  7069. {
  7070. "name": "sebastian/global-state",
  7071. "version": "5.0.2",
  7072. "source": {
  7073. "type": "git",
  7074. "url": "https://github.com/sebastianbergmann/global-state.git",
  7075. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  7076. },
  7077. "dist": {
  7078. "type": "zip",
  7079. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  7080. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  7081. "shasum": ""
  7082. },
  7083. "require": {
  7084. "php": ">=7.3",
  7085. "sebastian/object-reflector": "^2.0",
  7086. "sebastian/recursion-context": "^4.0"
  7087. },
  7088. "require-dev": {
  7089. "ext-dom": "*",
  7090. "phpunit/phpunit": "^9.3"
  7091. },
  7092. "suggest": {
  7093. "ext-uopz": "*"
  7094. },
  7095. "type": "library",
  7096. "extra": {
  7097. "branch-alias": {
  7098. "dev-master": "5.0-dev"
  7099. }
  7100. },
  7101. "autoload": {
  7102. "classmap": [
  7103. "src/"
  7104. ]
  7105. },
  7106. "notification-url": "https://packagist.org/downloads/",
  7107. "license": [
  7108. "BSD-3-Clause"
  7109. ],
  7110. "authors": [
  7111. {
  7112. "name": "Sebastian Bergmann",
  7113. "email": "sebastian@phpunit.de"
  7114. }
  7115. ],
  7116. "description": "Snapshotting of global state",
  7117. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7118. "keywords": [
  7119. "global state"
  7120. ],
  7121. "support": {
  7122. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  7123. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  7124. },
  7125. "funding": [
  7126. {
  7127. "url": "https://github.com/sebastianbergmann",
  7128. "type": "github"
  7129. }
  7130. ],
  7131. "time": "2020-10-26T15:55:19+00:00"
  7132. },
  7133. {
  7134. "name": "sebastian/lines-of-code",
  7135. "version": "1.0.3",
  7136. "source": {
  7137. "type": "git",
  7138. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  7139. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  7140. },
  7141. "dist": {
  7142. "type": "zip",
  7143. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7144. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7145. "shasum": ""
  7146. },
  7147. "require": {
  7148. "nikic/php-parser": "^4.6",
  7149. "php": ">=7.3"
  7150. },
  7151. "require-dev": {
  7152. "phpunit/phpunit": "^9.3"
  7153. },
  7154. "type": "library",
  7155. "extra": {
  7156. "branch-alias": {
  7157. "dev-master": "1.0-dev"
  7158. }
  7159. },
  7160. "autoload": {
  7161. "classmap": [
  7162. "src/"
  7163. ]
  7164. },
  7165. "notification-url": "https://packagist.org/downloads/",
  7166. "license": [
  7167. "BSD-3-Clause"
  7168. ],
  7169. "authors": [
  7170. {
  7171. "name": "Sebastian Bergmann",
  7172. "email": "sebastian@phpunit.de",
  7173. "role": "lead"
  7174. }
  7175. ],
  7176. "description": "Library for counting the lines of code in PHP source code",
  7177. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  7178. "support": {
  7179. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  7180. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  7181. },
  7182. "funding": [
  7183. {
  7184. "url": "https://github.com/sebastianbergmann",
  7185. "type": "github"
  7186. }
  7187. ],
  7188. "time": "2020-11-28T06:42:11+00:00"
  7189. },
  7190. {
  7191. "name": "sebastian/object-enumerator",
  7192. "version": "4.0.4",
  7193. "source": {
  7194. "type": "git",
  7195. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7196. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  7197. },
  7198. "dist": {
  7199. "type": "zip",
  7200. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  7201. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  7202. "shasum": ""
  7203. },
  7204. "require": {
  7205. "php": ">=7.3",
  7206. "sebastian/object-reflector": "^2.0",
  7207. "sebastian/recursion-context": "^4.0"
  7208. },
  7209. "require-dev": {
  7210. "phpunit/phpunit": "^9.3"
  7211. },
  7212. "type": "library",
  7213. "extra": {
  7214. "branch-alias": {
  7215. "dev-master": "4.0-dev"
  7216. }
  7217. },
  7218. "autoload": {
  7219. "classmap": [
  7220. "src/"
  7221. ]
  7222. },
  7223. "notification-url": "https://packagist.org/downloads/",
  7224. "license": [
  7225. "BSD-3-Clause"
  7226. ],
  7227. "authors": [
  7228. {
  7229. "name": "Sebastian Bergmann",
  7230. "email": "sebastian@phpunit.de"
  7231. }
  7232. ],
  7233. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7234. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7235. "support": {
  7236. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7237. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  7238. },
  7239. "funding": [
  7240. {
  7241. "url": "https://github.com/sebastianbergmann",
  7242. "type": "github"
  7243. }
  7244. ],
  7245. "time": "2020-10-26T13:12:34+00:00"
  7246. },
  7247. {
  7248. "name": "sebastian/object-reflector",
  7249. "version": "2.0.4",
  7250. "source": {
  7251. "type": "git",
  7252. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7253. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  7254. },
  7255. "dist": {
  7256. "type": "zip",
  7257. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7258. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7259. "shasum": ""
  7260. },
  7261. "require": {
  7262. "php": ">=7.3"
  7263. },
  7264. "require-dev": {
  7265. "phpunit/phpunit": "^9.3"
  7266. },
  7267. "type": "library",
  7268. "extra": {
  7269. "branch-alias": {
  7270. "dev-master": "2.0-dev"
  7271. }
  7272. },
  7273. "autoload": {
  7274. "classmap": [
  7275. "src/"
  7276. ]
  7277. },
  7278. "notification-url": "https://packagist.org/downloads/",
  7279. "license": [
  7280. "BSD-3-Clause"
  7281. ],
  7282. "authors": [
  7283. {
  7284. "name": "Sebastian Bergmann",
  7285. "email": "sebastian@phpunit.de"
  7286. }
  7287. ],
  7288. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7289. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7290. "support": {
  7291. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7292. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  7293. },
  7294. "funding": [
  7295. {
  7296. "url": "https://github.com/sebastianbergmann",
  7297. "type": "github"
  7298. }
  7299. ],
  7300. "time": "2020-10-26T13:14:26+00:00"
  7301. },
  7302. {
  7303. "name": "sebastian/recursion-context",
  7304. "version": "4.0.4",
  7305. "source": {
  7306. "type": "git",
  7307. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7308. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  7309. },
  7310. "dist": {
  7311. "type": "zip",
  7312. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  7313. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  7314. "shasum": ""
  7315. },
  7316. "require": {
  7317. "php": ">=7.3"
  7318. },
  7319. "require-dev": {
  7320. "phpunit/phpunit": "^9.3"
  7321. },
  7322. "type": "library",
  7323. "extra": {
  7324. "branch-alias": {
  7325. "dev-master": "4.0-dev"
  7326. }
  7327. },
  7328. "autoload": {
  7329. "classmap": [
  7330. "src/"
  7331. ]
  7332. },
  7333. "notification-url": "https://packagist.org/downloads/",
  7334. "license": [
  7335. "BSD-3-Clause"
  7336. ],
  7337. "authors": [
  7338. {
  7339. "name": "Sebastian Bergmann",
  7340. "email": "sebastian@phpunit.de"
  7341. },
  7342. {
  7343. "name": "Jeff Welch",
  7344. "email": "whatthejeff@gmail.com"
  7345. },
  7346. {
  7347. "name": "Adam Harvey",
  7348. "email": "aharvey@php.net"
  7349. }
  7350. ],
  7351. "description": "Provides functionality to recursively process PHP variables",
  7352. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7353. "support": {
  7354. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  7355. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  7356. },
  7357. "funding": [
  7358. {
  7359. "url": "https://github.com/sebastianbergmann",
  7360. "type": "github"
  7361. }
  7362. ],
  7363. "time": "2020-10-26T13:17:30+00:00"
  7364. },
  7365. {
  7366. "name": "sebastian/resource-operations",
  7367. "version": "3.0.3",
  7368. "source": {
  7369. "type": "git",
  7370. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7371. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  7372. },
  7373. "dist": {
  7374. "type": "zip",
  7375. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7376. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7377. "shasum": ""
  7378. },
  7379. "require": {
  7380. "php": ">=7.3"
  7381. },
  7382. "require-dev": {
  7383. "phpunit/phpunit": "^9.0"
  7384. },
  7385. "type": "library",
  7386. "extra": {
  7387. "branch-alias": {
  7388. "dev-master": "3.0-dev"
  7389. }
  7390. },
  7391. "autoload": {
  7392. "classmap": [
  7393. "src/"
  7394. ]
  7395. },
  7396. "notification-url": "https://packagist.org/downloads/",
  7397. "license": [
  7398. "BSD-3-Clause"
  7399. ],
  7400. "authors": [
  7401. {
  7402. "name": "Sebastian Bergmann",
  7403. "email": "sebastian@phpunit.de"
  7404. }
  7405. ],
  7406. "description": "Provides a list of PHP built-in functions that operate on resources",
  7407. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7408. "support": {
  7409. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  7410. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  7411. },
  7412. "funding": [
  7413. {
  7414. "url": "https://github.com/sebastianbergmann",
  7415. "type": "github"
  7416. }
  7417. ],
  7418. "time": "2020-09-28T06:45:17+00:00"
  7419. },
  7420. {
  7421. "name": "sebastian/type",
  7422. "version": "2.3.1",
  7423. "source": {
  7424. "type": "git",
  7425. "url": "https://github.com/sebastianbergmann/type.git",
  7426. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  7427. },
  7428. "dist": {
  7429. "type": "zip",
  7430. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  7431. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  7432. "shasum": ""
  7433. },
  7434. "require": {
  7435. "php": ">=7.3"
  7436. },
  7437. "require-dev": {
  7438. "phpunit/phpunit": "^9.3"
  7439. },
  7440. "type": "library",
  7441. "extra": {
  7442. "branch-alias": {
  7443. "dev-master": "2.3-dev"
  7444. }
  7445. },
  7446. "autoload": {
  7447. "classmap": [
  7448. "src/"
  7449. ]
  7450. },
  7451. "notification-url": "https://packagist.org/downloads/",
  7452. "license": [
  7453. "BSD-3-Clause"
  7454. ],
  7455. "authors": [
  7456. {
  7457. "name": "Sebastian Bergmann",
  7458. "email": "sebastian@phpunit.de",
  7459. "role": "lead"
  7460. }
  7461. ],
  7462. "description": "Collection of value objects that represent the types of the PHP type system",
  7463. "homepage": "https://github.com/sebastianbergmann/type",
  7464. "support": {
  7465. "issues": "https://github.com/sebastianbergmann/type/issues",
  7466. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  7467. },
  7468. "funding": [
  7469. {
  7470. "url": "https://github.com/sebastianbergmann",
  7471. "type": "github"
  7472. }
  7473. ],
  7474. "time": "2020-10-26T13:18:59+00:00"
  7475. },
  7476. {
  7477. "name": "sebastian/version",
  7478. "version": "3.0.2",
  7479. "source": {
  7480. "type": "git",
  7481. "url": "https://github.com/sebastianbergmann/version.git",
  7482. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  7483. },
  7484. "dist": {
  7485. "type": "zip",
  7486. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  7487. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  7488. "shasum": ""
  7489. },
  7490. "require": {
  7491. "php": ">=7.3"
  7492. },
  7493. "type": "library",
  7494. "extra": {
  7495. "branch-alias": {
  7496. "dev-master": "3.0-dev"
  7497. }
  7498. },
  7499. "autoload": {
  7500. "classmap": [
  7501. "src/"
  7502. ]
  7503. },
  7504. "notification-url": "https://packagist.org/downloads/",
  7505. "license": [
  7506. "BSD-3-Clause"
  7507. ],
  7508. "authors": [
  7509. {
  7510. "name": "Sebastian Bergmann",
  7511. "email": "sebastian@phpunit.de",
  7512. "role": "lead"
  7513. }
  7514. ],
  7515. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7516. "homepage": "https://github.com/sebastianbergmann/version",
  7517. "support": {
  7518. "issues": "https://github.com/sebastianbergmann/version/issues",
  7519. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  7520. },
  7521. "funding": [
  7522. {
  7523. "url": "https://github.com/sebastianbergmann",
  7524. "type": "github"
  7525. }
  7526. ],
  7527. "time": "2020-09-28T06:39:44+00:00"
  7528. },
  7529. {
  7530. "name": "symfony/debug",
  7531. "version": "v4.4.19",
  7532. "source": {
  7533. "type": "git",
  7534. "url": "https://github.com/symfony/debug.git",
  7535. "reference": "af4987aa4a5630e9615be9d9c3ed1b0f24ca449c"
  7536. },
  7537. "dist": {
  7538. "type": "zip",
  7539. "url": "https://api.github.com/repos/symfony/debug/zipball/af4987aa4a5630e9615be9d9c3ed1b0f24ca449c",
  7540. "reference": "af4987aa4a5630e9615be9d9c3ed1b0f24ca449c",
  7541. "shasum": ""
  7542. },
  7543. "require": {
  7544. "php": ">=7.1.3",
  7545. "psr/log": "~1.0",
  7546. "symfony/polyfill-php80": "^1.15"
  7547. },
  7548. "conflict": {
  7549. "symfony/http-kernel": "<3.4"
  7550. },
  7551. "require-dev": {
  7552. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  7553. },
  7554. "type": "library",
  7555. "autoload": {
  7556. "psr-4": {
  7557. "Symfony\\Component\\Debug\\": ""
  7558. },
  7559. "exclude-from-classmap": [
  7560. "/Tests/"
  7561. ]
  7562. },
  7563. "notification-url": "https://packagist.org/downloads/",
  7564. "license": [
  7565. "MIT"
  7566. ],
  7567. "authors": [
  7568. {
  7569. "name": "Fabien Potencier",
  7570. "email": "fabien@symfony.com"
  7571. },
  7572. {
  7573. "name": "Symfony Community",
  7574. "homepage": "https://symfony.com/contributors"
  7575. }
  7576. ],
  7577. "description": "Provides tools to ease debugging PHP code",
  7578. "homepage": "https://symfony.com",
  7579. "support": {
  7580. "source": "https://github.com/symfony/debug/tree/v4.4.19"
  7581. },
  7582. "funding": [
  7583. {
  7584. "url": "https://symfony.com/sponsor",
  7585. "type": "custom"
  7586. },
  7587. {
  7588. "url": "https://github.com/fabpot",
  7589. "type": "github"
  7590. },
  7591. {
  7592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7593. "type": "tidelift"
  7594. }
  7595. ],
  7596. "time": "2021-01-27T09:09:26+00:00"
  7597. },
  7598. {
  7599. "name": "theseer/tokenizer",
  7600. "version": "1.2.0",
  7601. "source": {
  7602. "type": "git",
  7603. "url": "https://github.com/theseer/tokenizer.git",
  7604. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  7605. },
  7606. "dist": {
  7607. "type": "zip",
  7608. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  7609. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  7610. "shasum": ""
  7611. },
  7612. "require": {
  7613. "ext-dom": "*",
  7614. "ext-tokenizer": "*",
  7615. "ext-xmlwriter": "*",
  7616. "php": "^7.2 || ^8.0"
  7617. },
  7618. "type": "library",
  7619. "autoload": {
  7620. "classmap": [
  7621. "src/"
  7622. ]
  7623. },
  7624. "notification-url": "https://packagist.org/downloads/",
  7625. "license": [
  7626. "BSD-3-Clause"
  7627. ],
  7628. "authors": [
  7629. {
  7630. "name": "Arne Blankerts",
  7631. "email": "arne@blankerts.de",
  7632. "role": "Developer"
  7633. }
  7634. ],
  7635. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7636. "support": {
  7637. "issues": "https://github.com/theseer/tokenizer/issues",
  7638. "source": "https://github.com/theseer/tokenizer/tree/master"
  7639. },
  7640. "funding": [
  7641. {
  7642. "url": "https://github.com/theseer",
  7643. "type": "github"
  7644. }
  7645. ],
  7646. "time": "2020-07-12T23:59:07+00:00"
  7647. }
  7648. ],
  7649. "aliases": [],
  7650. "minimum-stability": "dev",
  7651. "stability-flags": [],
  7652. "prefer-stable": true,
  7653. "prefer-lowest": false,
  7654. "platform": {
  7655. "php": "^7.3|^8.0"
  7656. },
  7657. "platform-dev": [],
  7658. "plugin-api-version": "2.0.0"
  7659. }