composer.lock 283 KB

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