composer.lock 273 KB

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