composer.lock 310 KB

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