composer.lock 316 KB

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