composer.lock 381 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662
  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": "b4e8636675b2f11d5f8de08125c4fcb3",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.8",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  20. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "dasprid/enum": "^1.0.3",
  25. "ext-iconv": "*",
  26. "php": "^7.1 || ^8.0"
  27. },
  28. "require-dev": {
  29. "phly/keep-a-changelog": "^2.1",
  30. "phpunit/phpunit": "^7 | ^8 | ^9",
  31. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  32. "squizlabs/php_codesniffer": "^3.4"
  33. },
  34. "suggest": {
  35. "ext-imagick": "to generate QR code images"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "psr-4": {
  40. "BaconQrCode\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "BSD-2-Clause"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Ben Scholzen 'DASPRiD'",
  50. "email": "mail@dasprids.de",
  51. "homepage": "https://dasprids.de/",
  52. "role": "Developer"
  53. }
  54. ],
  55. "description": "BaconQrCode is a QR code generator for PHP.",
  56. "homepage": "https://github.com/Bacon/BaconQrCode",
  57. "support": {
  58. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  59. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  60. },
  61. "time": "2022-12-07T17:46:57+00:00"
  62. },
  63. {
  64. "name": "brick/math",
  65. "version": "0.12.1",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/brick/math.git",
  69. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  74. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "php": "^8.1"
  79. },
  80. "require-dev": {
  81. "php-coveralls/php-coveralls": "^2.2",
  82. "phpunit/phpunit": "^10.1",
  83. "vimeo/psalm": "5.16.0"
  84. },
  85. "type": "library",
  86. "autoload": {
  87. "psr-4": {
  88. "Brick\\Math\\": "src/"
  89. }
  90. },
  91. "notification-url": "https://packagist.org/downloads/",
  92. "license": [
  93. "MIT"
  94. ],
  95. "description": "Arbitrary-precision arithmetic library",
  96. "keywords": [
  97. "Arbitrary-precision",
  98. "BigInteger",
  99. "BigRational",
  100. "arithmetic",
  101. "bigdecimal",
  102. "bignum",
  103. "bignumber",
  104. "brick",
  105. "decimal",
  106. "integer",
  107. "math",
  108. "mathematics",
  109. "rational"
  110. ],
  111. "support": {
  112. "issues": "https://github.com/brick/math/issues",
  113. "source": "https://github.com/brick/math/tree/0.12.1"
  114. },
  115. "funding": [
  116. {
  117. "url": "https://github.com/BenMorel",
  118. "type": "github"
  119. }
  120. ],
  121. "time": "2023-11-29T23:19:16+00:00"
  122. },
  123. {
  124. "name": "carbonphp/carbon-doctrine-types",
  125. "version": "3.2.0",
  126. "source": {
  127. "type": "git",
  128. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  129. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  130. },
  131. "dist": {
  132. "type": "zip",
  133. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  134. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  135. "shasum": ""
  136. },
  137. "require": {
  138. "php": "^8.1"
  139. },
  140. "conflict": {
  141. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  142. },
  143. "require-dev": {
  144. "doctrine/dbal": "^4.0.0",
  145. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  146. "phpunit/phpunit": "^10.3"
  147. },
  148. "type": "library",
  149. "autoload": {
  150. "psr-4": {
  151. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  152. }
  153. },
  154. "notification-url": "https://packagist.org/downloads/",
  155. "license": [
  156. "MIT"
  157. ],
  158. "authors": [
  159. {
  160. "name": "KyleKatarn",
  161. "email": "kylekatarnls@gmail.com"
  162. }
  163. ],
  164. "description": "Types to use Carbon in Doctrine",
  165. "keywords": [
  166. "carbon",
  167. "date",
  168. "datetime",
  169. "doctrine",
  170. "time"
  171. ],
  172. "support": {
  173. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  174. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  175. },
  176. "funding": [
  177. {
  178. "url": "https://github.com/kylekatarnls",
  179. "type": "github"
  180. },
  181. {
  182. "url": "https://opencollective.com/Carbon",
  183. "type": "open_collective"
  184. },
  185. {
  186. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  187. "type": "tidelift"
  188. }
  189. ],
  190. "time": "2024-02-09T16:56:22+00:00"
  191. },
  192. {
  193. "name": "dasprid/enum",
  194. "version": "1.0.6",
  195. "source": {
  196. "type": "git",
  197. "url": "https://github.com/DASPRiD/Enum.git",
  198. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90"
  199. },
  200. "dist": {
  201. "type": "zip",
  202. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  203. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  204. "shasum": ""
  205. },
  206. "require": {
  207. "php": ">=7.1 <9.0"
  208. },
  209. "require-dev": {
  210. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  211. "squizlabs/php_codesniffer": "*"
  212. },
  213. "type": "library",
  214. "autoload": {
  215. "psr-4": {
  216. "DASPRiD\\Enum\\": "src/"
  217. }
  218. },
  219. "notification-url": "https://packagist.org/downloads/",
  220. "license": [
  221. "BSD-2-Clause"
  222. ],
  223. "authors": [
  224. {
  225. "name": "Ben Scholzen 'DASPRiD'",
  226. "email": "mail@dasprids.de",
  227. "homepage": "https://dasprids.de/",
  228. "role": "Developer"
  229. }
  230. ],
  231. "description": "PHP 7.1 enum implementation",
  232. "keywords": [
  233. "enum",
  234. "map"
  235. ],
  236. "support": {
  237. "issues": "https://github.com/DASPRiD/Enum/issues",
  238. "source": "https://github.com/DASPRiD/Enum/tree/1.0.6"
  239. },
  240. "time": "2024-08-09T14:30:48+00:00"
  241. },
  242. {
  243. "name": "dflydev/dot-access-data",
  244. "version": "v3.0.3",
  245. "source": {
  246. "type": "git",
  247. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  248. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  249. },
  250. "dist": {
  251. "type": "zip",
  252. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  253. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  254. "shasum": ""
  255. },
  256. "require": {
  257. "php": "^7.1 || ^8.0"
  258. },
  259. "require-dev": {
  260. "phpstan/phpstan": "^0.12.42",
  261. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  262. "scrutinizer/ocular": "1.6.0",
  263. "squizlabs/php_codesniffer": "^3.5",
  264. "vimeo/psalm": "^4.0.0"
  265. },
  266. "type": "library",
  267. "extra": {
  268. "branch-alias": {
  269. "dev-main": "3.x-dev"
  270. }
  271. },
  272. "autoload": {
  273. "psr-4": {
  274. "Dflydev\\DotAccessData\\": "src/"
  275. }
  276. },
  277. "notification-url": "https://packagist.org/downloads/",
  278. "license": [
  279. "MIT"
  280. ],
  281. "authors": [
  282. {
  283. "name": "Dragonfly Development Inc.",
  284. "email": "info@dflydev.com",
  285. "homepage": "http://dflydev.com"
  286. },
  287. {
  288. "name": "Beau Simensen",
  289. "email": "beau@dflydev.com",
  290. "homepage": "http://beausimensen.com"
  291. },
  292. {
  293. "name": "Carlos Frutos",
  294. "email": "carlos@kiwing.it",
  295. "homepage": "https://github.com/cfrutos"
  296. },
  297. {
  298. "name": "Colin O'Dell",
  299. "email": "colinodell@gmail.com",
  300. "homepage": "https://www.colinodell.com"
  301. }
  302. ],
  303. "description": "Given a deep data structure, access data by dot notation.",
  304. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  305. "keywords": [
  306. "access",
  307. "data",
  308. "dot",
  309. "notation"
  310. ],
  311. "support": {
  312. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  313. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  314. },
  315. "time": "2024-07-08T12:26:09+00:00"
  316. },
  317. {
  318. "name": "doctrine/inflector",
  319. "version": "2.0.10",
  320. "source": {
  321. "type": "git",
  322. "url": "https://github.com/doctrine/inflector.git",
  323. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  324. },
  325. "dist": {
  326. "type": "zip",
  327. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  328. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  329. "shasum": ""
  330. },
  331. "require": {
  332. "php": "^7.2 || ^8.0"
  333. },
  334. "require-dev": {
  335. "doctrine/coding-standard": "^11.0",
  336. "phpstan/phpstan": "^1.8",
  337. "phpstan/phpstan-phpunit": "^1.1",
  338. "phpstan/phpstan-strict-rules": "^1.3",
  339. "phpunit/phpunit": "^8.5 || ^9.5",
  340. "vimeo/psalm": "^4.25 || ^5.4"
  341. },
  342. "type": "library",
  343. "autoload": {
  344. "psr-4": {
  345. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  346. }
  347. },
  348. "notification-url": "https://packagist.org/downloads/",
  349. "license": [
  350. "MIT"
  351. ],
  352. "authors": [
  353. {
  354. "name": "Guilherme Blanco",
  355. "email": "guilhermeblanco@gmail.com"
  356. },
  357. {
  358. "name": "Roman Borschel",
  359. "email": "roman@code-factory.org"
  360. },
  361. {
  362. "name": "Benjamin Eberlei",
  363. "email": "kontakt@beberlei.de"
  364. },
  365. {
  366. "name": "Jonathan Wage",
  367. "email": "jonwage@gmail.com"
  368. },
  369. {
  370. "name": "Johannes Schmitt",
  371. "email": "schmittjoh@gmail.com"
  372. }
  373. ],
  374. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  375. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  376. "keywords": [
  377. "inflection",
  378. "inflector",
  379. "lowercase",
  380. "manipulation",
  381. "php",
  382. "plural",
  383. "singular",
  384. "strings",
  385. "uppercase",
  386. "words"
  387. ],
  388. "support": {
  389. "issues": "https://github.com/doctrine/inflector/issues",
  390. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  391. },
  392. "funding": [
  393. {
  394. "url": "https://www.doctrine-project.org/sponsorship.html",
  395. "type": "custom"
  396. },
  397. {
  398. "url": "https://www.patreon.com/phpdoctrine",
  399. "type": "patreon"
  400. },
  401. {
  402. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  403. "type": "tidelift"
  404. }
  405. ],
  406. "time": "2024-02-18T20:23:39+00:00"
  407. },
  408. {
  409. "name": "doctrine/lexer",
  410. "version": "3.0.1",
  411. "source": {
  412. "type": "git",
  413. "url": "https://github.com/doctrine/lexer.git",
  414. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  415. },
  416. "dist": {
  417. "type": "zip",
  418. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  419. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  420. "shasum": ""
  421. },
  422. "require": {
  423. "php": "^8.1"
  424. },
  425. "require-dev": {
  426. "doctrine/coding-standard": "^12",
  427. "phpstan/phpstan": "^1.10",
  428. "phpunit/phpunit": "^10.5",
  429. "psalm/plugin-phpunit": "^0.18.3",
  430. "vimeo/psalm": "^5.21"
  431. },
  432. "type": "library",
  433. "autoload": {
  434. "psr-4": {
  435. "Doctrine\\Common\\Lexer\\": "src"
  436. }
  437. },
  438. "notification-url": "https://packagist.org/downloads/",
  439. "license": [
  440. "MIT"
  441. ],
  442. "authors": [
  443. {
  444. "name": "Guilherme Blanco",
  445. "email": "guilhermeblanco@gmail.com"
  446. },
  447. {
  448. "name": "Roman Borschel",
  449. "email": "roman@code-factory.org"
  450. },
  451. {
  452. "name": "Johannes Schmitt",
  453. "email": "schmittjoh@gmail.com"
  454. }
  455. ],
  456. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  457. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  458. "keywords": [
  459. "annotations",
  460. "docblock",
  461. "lexer",
  462. "parser",
  463. "php"
  464. ],
  465. "support": {
  466. "issues": "https://github.com/doctrine/lexer/issues",
  467. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  468. },
  469. "funding": [
  470. {
  471. "url": "https://www.doctrine-project.org/sponsorship.html",
  472. "type": "custom"
  473. },
  474. {
  475. "url": "https://www.patreon.com/phpdoctrine",
  476. "type": "patreon"
  477. },
  478. {
  479. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  480. "type": "tidelift"
  481. }
  482. ],
  483. "time": "2024-02-05T11:56:58+00:00"
  484. },
  485. {
  486. "name": "dragonmantank/cron-expression",
  487. "version": "v3.4.0",
  488. "source": {
  489. "type": "git",
  490. "url": "https://github.com/dragonmantank/cron-expression.git",
  491. "reference": "8c784d071debd117328803d86b2097615b457500"
  492. },
  493. "dist": {
  494. "type": "zip",
  495. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  496. "reference": "8c784d071debd117328803d86b2097615b457500",
  497. "shasum": ""
  498. },
  499. "require": {
  500. "php": "^7.2|^8.0",
  501. "webmozart/assert": "^1.0"
  502. },
  503. "replace": {
  504. "mtdowling/cron-expression": "^1.0"
  505. },
  506. "require-dev": {
  507. "phpstan/extension-installer": "^1.0",
  508. "phpstan/phpstan": "^1.0",
  509. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  510. },
  511. "type": "library",
  512. "extra": {
  513. "branch-alias": {
  514. "dev-master": "3.x-dev"
  515. }
  516. },
  517. "autoload": {
  518. "psr-4": {
  519. "Cron\\": "src/Cron/"
  520. }
  521. },
  522. "notification-url": "https://packagist.org/downloads/",
  523. "license": [
  524. "MIT"
  525. ],
  526. "authors": [
  527. {
  528. "name": "Chris Tankersley",
  529. "email": "chris@ctankersley.com",
  530. "homepage": "https://github.com/dragonmantank"
  531. }
  532. ],
  533. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  534. "keywords": [
  535. "cron",
  536. "schedule"
  537. ],
  538. "support": {
  539. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  540. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  541. },
  542. "funding": [
  543. {
  544. "url": "https://github.com/dragonmantank",
  545. "type": "github"
  546. }
  547. ],
  548. "time": "2024-10-09T13:47:03+00:00"
  549. },
  550. {
  551. "name": "egulias/email-validator",
  552. "version": "4.0.2",
  553. "source": {
  554. "type": "git",
  555. "url": "https://github.com/egulias/EmailValidator.git",
  556. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  557. },
  558. "dist": {
  559. "type": "zip",
  560. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  561. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  562. "shasum": ""
  563. },
  564. "require": {
  565. "doctrine/lexer": "^2.0 || ^3.0",
  566. "php": ">=8.1",
  567. "symfony/polyfill-intl-idn": "^1.26"
  568. },
  569. "require-dev": {
  570. "phpunit/phpunit": "^10.2",
  571. "vimeo/psalm": "^5.12"
  572. },
  573. "suggest": {
  574. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  575. },
  576. "type": "library",
  577. "extra": {
  578. "branch-alias": {
  579. "dev-master": "4.0.x-dev"
  580. }
  581. },
  582. "autoload": {
  583. "psr-4": {
  584. "Egulias\\EmailValidator\\": "src"
  585. }
  586. },
  587. "notification-url": "https://packagist.org/downloads/",
  588. "license": [
  589. "MIT"
  590. ],
  591. "authors": [
  592. {
  593. "name": "Eduardo Gulias Davis"
  594. }
  595. ],
  596. "description": "A library for validating emails against several RFCs",
  597. "homepage": "https://github.com/egulias/EmailValidator",
  598. "keywords": [
  599. "email",
  600. "emailvalidation",
  601. "emailvalidator",
  602. "validation",
  603. "validator"
  604. ],
  605. "support": {
  606. "issues": "https://github.com/egulias/EmailValidator/issues",
  607. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  608. },
  609. "funding": [
  610. {
  611. "url": "https://github.com/egulias",
  612. "type": "github"
  613. }
  614. ],
  615. "time": "2023-10-06T06:47:41+00:00"
  616. },
  617. {
  618. "name": "erusev/parsedown",
  619. "version": "1.7.4",
  620. "source": {
  621. "type": "git",
  622. "url": "https://github.com/erusev/parsedown.git",
  623. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  624. },
  625. "dist": {
  626. "type": "zip",
  627. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  628. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  629. "shasum": ""
  630. },
  631. "require": {
  632. "ext-mbstring": "*",
  633. "php": ">=5.3.0"
  634. },
  635. "require-dev": {
  636. "phpunit/phpunit": "^4.8.35"
  637. },
  638. "type": "library",
  639. "autoload": {
  640. "psr-0": {
  641. "Parsedown": ""
  642. }
  643. },
  644. "notification-url": "https://packagist.org/downloads/",
  645. "license": [
  646. "MIT"
  647. ],
  648. "authors": [
  649. {
  650. "name": "Emanuil Rusev",
  651. "email": "hello@erusev.com",
  652. "homepage": "http://erusev.com"
  653. }
  654. ],
  655. "description": "Parser for Markdown.",
  656. "homepage": "http://parsedown.org",
  657. "keywords": [
  658. "markdown",
  659. "parser"
  660. ],
  661. "support": {
  662. "issues": "https://github.com/erusev/parsedown/issues",
  663. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  664. },
  665. "time": "2019-12-30T22:54:17+00:00"
  666. },
  667. {
  668. "name": "fakerphp/faker",
  669. "version": "v1.24.1",
  670. "source": {
  671. "type": "git",
  672. "url": "https://github.com/FakerPHP/Faker.git",
  673. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  674. },
  675. "dist": {
  676. "type": "zip",
  677. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  678. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  679. "shasum": ""
  680. },
  681. "require": {
  682. "php": "^7.4 || ^8.0",
  683. "psr/container": "^1.0 || ^2.0",
  684. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  685. },
  686. "conflict": {
  687. "fzaninotto/faker": "*"
  688. },
  689. "require-dev": {
  690. "bamarni/composer-bin-plugin": "^1.4.1",
  691. "doctrine/persistence": "^1.3 || ^2.0",
  692. "ext-intl": "*",
  693. "phpunit/phpunit": "^9.5.26",
  694. "symfony/phpunit-bridge": "^5.4.16"
  695. },
  696. "suggest": {
  697. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  698. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  699. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  700. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  701. "ext-mbstring": "Required for multibyte Unicode string functionality."
  702. },
  703. "type": "library",
  704. "autoload": {
  705. "psr-4": {
  706. "Faker\\": "src/Faker/"
  707. }
  708. },
  709. "notification-url": "https://packagist.org/downloads/",
  710. "license": [
  711. "MIT"
  712. ],
  713. "authors": [
  714. {
  715. "name": "François Zaninotto"
  716. }
  717. ],
  718. "description": "Faker is a PHP library that generates fake data for you.",
  719. "keywords": [
  720. "data",
  721. "faker",
  722. "fixtures"
  723. ],
  724. "support": {
  725. "issues": "https://github.com/FakerPHP/Faker/issues",
  726. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  727. },
  728. "time": "2024-11-21T13:46:39+00:00"
  729. },
  730. {
  731. "name": "filp/whoops",
  732. "version": "2.16.0",
  733. "source": {
  734. "type": "git",
  735. "url": "https://github.com/filp/whoops.git",
  736. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  737. },
  738. "dist": {
  739. "type": "zip",
  740. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  741. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  742. "shasum": ""
  743. },
  744. "require": {
  745. "php": "^7.1 || ^8.0",
  746. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  747. },
  748. "require-dev": {
  749. "mockery/mockery": "^1.0",
  750. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  751. "symfony/var-dumper": "^4.0 || ^5.0"
  752. },
  753. "suggest": {
  754. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  755. "whoops/soap": "Formats errors as SOAP responses"
  756. },
  757. "type": "library",
  758. "extra": {
  759. "branch-alias": {
  760. "dev-master": "2.7-dev"
  761. }
  762. },
  763. "autoload": {
  764. "psr-4": {
  765. "Whoops\\": "src/Whoops/"
  766. }
  767. },
  768. "notification-url": "https://packagist.org/downloads/",
  769. "license": [
  770. "MIT"
  771. ],
  772. "authors": [
  773. {
  774. "name": "Filipe Dobreira",
  775. "homepage": "https://github.com/filp",
  776. "role": "Developer"
  777. }
  778. ],
  779. "description": "php error handling for cool kids",
  780. "homepage": "https://filp.github.io/whoops/",
  781. "keywords": [
  782. "error",
  783. "exception",
  784. "handling",
  785. "library",
  786. "throwable",
  787. "whoops"
  788. ],
  789. "support": {
  790. "issues": "https://github.com/filp/whoops/issues",
  791. "source": "https://github.com/filp/whoops/tree/2.16.0"
  792. },
  793. "funding": [
  794. {
  795. "url": "https://github.com/denis-sokolov",
  796. "type": "github"
  797. }
  798. ],
  799. "time": "2024-09-25T12:00:00+00:00"
  800. },
  801. {
  802. "name": "fruitcake/php-cors",
  803. "version": "v1.3.0",
  804. "source": {
  805. "type": "git",
  806. "url": "https://github.com/fruitcake/php-cors.git",
  807. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  808. },
  809. "dist": {
  810. "type": "zip",
  811. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  812. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  813. "shasum": ""
  814. },
  815. "require": {
  816. "php": "^7.4|^8.0",
  817. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  818. },
  819. "require-dev": {
  820. "phpstan/phpstan": "^1.4",
  821. "phpunit/phpunit": "^9",
  822. "squizlabs/php_codesniffer": "^3.5"
  823. },
  824. "type": "library",
  825. "extra": {
  826. "branch-alias": {
  827. "dev-master": "1.2-dev"
  828. }
  829. },
  830. "autoload": {
  831. "psr-4": {
  832. "Fruitcake\\Cors\\": "src/"
  833. }
  834. },
  835. "notification-url": "https://packagist.org/downloads/",
  836. "license": [
  837. "MIT"
  838. ],
  839. "authors": [
  840. {
  841. "name": "Fruitcake",
  842. "homepage": "https://fruitcake.nl"
  843. },
  844. {
  845. "name": "Barryvdh",
  846. "email": "barryvdh@gmail.com"
  847. }
  848. ],
  849. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  850. "homepage": "https://github.com/fruitcake/php-cors",
  851. "keywords": [
  852. "cors",
  853. "laravel",
  854. "symfony"
  855. ],
  856. "support": {
  857. "issues": "https://github.com/fruitcake/php-cors/issues",
  858. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  859. },
  860. "funding": [
  861. {
  862. "url": "https://fruitcake.nl",
  863. "type": "custom"
  864. },
  865. {
  866. "url": "https://github.com/barryvdh",
  867. "type": "github"
  868. }
  869. ],
  870. "time": "2023-10-12T05:21:21+00:00"
  871. },
  872. {
  873. "name": "graham-campbell/result-type",
  874. "version": "v1.1.3",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  878. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  883. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  884. "shasum": ""
  885. },
  886. "require": {
  887. "php": "^7.2.5 || ^8.0",
  888. "phpoption/phpoption": "^1.9.3"
  889. },
  890. "require-dev": {
  891. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  892. },
  893. "type": "library",
  894. "autoload": {
  895. "psr-4": {
  896. "GrahamCampbell\\ResultType\\": "src/"
  897. }
  898. },
  899. "notification-url": "https://packagist.org/downloads/",
  900. "license": [
  901. "MIT"
  902. ],
  903. "authors": [
  904. {
  905. "name": "Graham Campbell",
  906. "email": "hello@gjcampbell.co.uk",
  907. "homepage": "https://github.com/GrahamCampbell"
  908. }
  909. ],
  910. "description": "An Implementation Of The Result Type",
  911. "keywords": [
  912. "Graham Campbell",
  913. "GrahamCampbell",
  914. "Result Type",
  915. "Result-Type",
  916. "result"
  917. ],
  918. "support": {
  919. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  920. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  921. },
  922. "funding": [
  923. {
  924. "url": "https://github.com/GrahamCampbell",
  925. "type": "github"
  926. },
  927. {
  928. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  929. "type": "tidelift"
  930. }
  931. ],
  932. "time": "2024-07-20T21:45:45+00:00"
  933. },
  934. {
  935. "name": "guzzlehttp/guzzle",
  936. "version": "7.9.2",
  937. "source": {
  938. "type": "git",
  939. "url": "https://github.com/guzzle/guzzle.git",
  940. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  941. },
  942. "dist": {
  943. "type": "zip",
  944. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  945. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  946. "shasum": ""
  947. },
  948. "require": {
  949. "ext-json": "*",
  950. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  951. "guzzlehttp/psr7": "^2.7.0",
  952. "php": "^7.2.5 || ^8.0",
  953. "psr/http-client": "^1.0",
  954. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  955. },
  956. "provide": {
  957. "psr/http-client-implementation": "1.0"
  958. },
  959. "require-dev": {
  960. "bamarni/composer-bin-plugin": "^1.8.2",
  961. "ext-curl": "*",
  962. "guzzle/client-integration-tests": "3.0.2",
  963. "php-http/message-factory": "^1.1",
  964. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  965. "psr/log": "^1.1 || ^2.0 || ^3.0"
  966. },
  967. "suggest": {
  968. "ext-curl": "Required for CURL handler support",
  969. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  970. "psr/log": "Required for using the Log middleware"
  971. },
  972. "type": "library",
  973. "extra": {
  974. "bamarni-bin": {
  975. "bin-links": true,
  976. "forward-command": false
  977. }
  978. },
  979. "autoload": {
  980. "files": [
  981. "src/functions_include.php"
  982. ],
  983. "psr-4": {
  984. "GuzzleHttp\\": "src/"
  985. }
  986. },
  987. "notification-url": "https://packagist.org/downloads/",
  988. "license": [
  989. "MIT"
  990. ],
  991. "authors": [
  992. {
  993. "name": "Graham Campbell",
  994. "email": "hello@gjcampbell.co.uk",
  995. "homepage": "https://github.com/GrahamCampbell"
  996. },
  997. {
  998. "name": "Michael Dowling",
  999. "email": "mtdowling@gmail.com",
  1000. "homepage": "https://github.com/mtdowling"
  1001. },
  1002. {
  1003. "name": "Jeremy Lindblom",
  1004. "email": "jeremeamia@gmail.com",
  1005. "homepage": "https://github.com/jeremeamia"
  1006. },
  1007. {
  1008. "name": "George Mponos",
  1009. "email": "gmponos@gmail.com",
  1010. "homepage": "https://github.com/gmponos"
  1011. },
  1012. {
  1013. "name": "Tobias Nyholm",
  1014. "email": "tobias.nyholm@gmail.com",
  1015. "homepage": "https://github.com/Nyholm"
  1016. },
  1017. {
  1018. "name": "Márk Sági-Kazár",
  1019. "email": "mark.sagikazar@gmail.com",
  1020. "homepage": "https://github.com/sagikazarmark"
  1021. },
  1022. {
  1023. "name": "Tobias Schultze",
  1024. "email": "webmaster@tubo-world.de",
  1025. "homepage": "https://github.com/Tobion"
  1026. }
  1027. ],
  1028. "description": "Guzzle is a PHP HTTP client library",
  1029. "keywords": [
  1030. "client",
  1031. "curl",
  1032. "framework",
  1033. "http",
  1034. "http client",
  1035. "psr-18",
  1036. "psr-7",
  1037. "rest",
  1038. "web service"
  1039. ],
  1040. "support": {
  1041. "issues": "https://github.com/guzzle/guzzle/issues",
  1042. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1043. },
  1044. "funding": [
  1045. {
  1046. "url": "https://github.com/GrahamCampbell",
  1047. "type": "github"
  1048. },
  1049. {
  1050. "url": "https://github.com/Nyholm",
  1051. "type": "github"
  1052. },
  1053. {
  1054. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1055. "type": "tidelift"
  1056. }
  1057. ],
  1058. "time": "2024-07-24T11:22:20+00:00"
  1059. },
  1060. {
  1061. "name": "guzzlehttp/promises",
  1062. "version": "2.0.4",
  1063. "source": {
  1064. "type": "git",
  1065. "url": "https://github.com/guzzle/promises.git",
  1066. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  1067. },
  1068. "dist": {
  1069. "type": "zip",
  1070. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1071. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1072. "shasum": ""
  1073. },
  1074. "require": {
  1075. "php": "^7.2.5 || ^8.0"
  1076. },
  1077. "require-dev": {
  1078. "bamarni/composer-bin-plugin": "^1.8.2",
  1079. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1080. },
  1081. "type": "library",
  1082. "extra": {
  1083. "bamarni-bin": {
  1084. "bin-links": true,
  1085. "forward-command": false
  1086. }
  1087. },
  1088. "autoload": {
  1089. "psr-4": {
  1090. "GuzzleHttp\\Promise\\": "src/"
  1091. }
  1092. },
  1093. "notification-url": "https://packagist.org/downloads/",
  1094. "license": [
  1095. "MIT"
  1096. ],
  1097. "authors": [
  1098. {
  1099. "name": "Graham Campbell",
  1100. "email": "hello@gjcampbell.co.uk",
  1101. "homepage": "https://github.com/GrahamCampbell"
  1102. },
  1103. {
  1104. "name": "Michael Dowling",
  1105. "email": "mtdowling@gmail.com",
  1106. "homepage": "https://github.com/mtdowling"
  1107. },
  1108. {
  1109. "name": "Tobias Nyholm",
  1110. "email": "tobias.nyholm@gmail.com",
  1111. "homepage": "https://github.com/Nyholm"
  1112. },
  1113. {
  1114. "name": "Tobias Schultze",
  1115. "email": "webmaster@tubo-world.de",
  1116. "homepage": "https://github.com/Tobion"
  1117. }
  1118. ],
  1119. "description": "Guzzle promises library",
  1120. "keywords": [
  1121. "promise"
  1122. ],
  1123. "support": {
  1124. "issues": "https://github.com/guzzle/promises/issues",
  1125. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  1126. },
  1127. "funding": [
  1128. {
  1129. "url": "https://github.com/GrahamCampbell",
  1130. "type": "github"
  1131. },
  1132. {
  1133. "url": "https://github.com/Nyholm",
  1134. "type": "github"
  1135. },
  1136. {
  1137. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1138. "type": "tidelift"
  1139. }
  1140. ],
  1141. "time": "2024-10-17T10:06:22+00:00"
  1142. },
  1143. {
  1144. "name": "guzzlehttp/psr7",
  1145. "version": "2.7.0",
  1146. "source": {
  1147. "type": "git",
  1148. "url": "https://github.com/guzzle/psr7.git",
  1149. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1150. },
  1151. "dist": {
  1152. "type": "zip",
  1153. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1154. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1155. "shasum": ""
  1156. },
  1157. "require": {
  1158. "php": "^7.2.5 || ^8.0",
  1159. "psr/http-factory": "^1.0",
  1160. "psr/http-message": "^1.1 || ^2.0",
  1161. "ralouphie/getallheaders": "^3.0"
  1162. },
  1163. "provide": {
  1164. "psr/http-factory-implementation": "1.0",
  1165. "psr/http-message-implementation": "1.0"
  1166. },
  1167. "require-dev": {
  1168. "bamarni/composer-bin-plugin": "^1.8.2",
  1169. "http-interop/http-factory-tests": "0.9.0",
  1170. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1171. },
  1172. "suggest": {
  1173. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1174. },
  1175. "type": "library",
  1176. "extra": {
  1177. "bamarni-bin": {
  1178. "bin-links": true,
  1179. "forward-command": false
  1180. }
  1181. },
  1182. "autoload": {
  1183. "psr-4": {
  1184. "GuzzleHttp\\Psr7\\": "src/"
  1185. }
  1186. },
  1187. "notification-url": "https://packagist.org/downloads/",
  1188. "license": [
  1189. "MIT"
  1190. ],
  1191. "authors": [
  1192. {
  1193. "name": "Graham Campbell",
  1194. "email": "hello@gjcampbell.co.uk",
  1195. "homepage": "https://github.com/GrahamCampbell"
  1196. },
  1197. {
  1198. "name": "Michael Dowling",
  1199. "email": "mtdowling@gmail.com",
  1200. "homepage": "https://github.com/mtdowling"
  1201. },
  1202. {
  1203. "name": "George Mponos",
  1204. "email": "gmponos@gmail.com",
  1205. "homepage": "https://github.com/gmponos"
  1206. },
  1207. {
  1208. "name": "Tobias Nyholm",
  1209. "email": "tobias.nyholm@gmail.com",
  1210. "homepage": "https://github.com/Nyholm"
  1211. },
  1212. {
  1213. "name": "Márk Sági-Kazár",
  1214. "email": "mark.sagikazar@gmail.com",
  1215. "homepage": "https://github.com/sagikazarmark"
  1216. },
  1217. {
  1218. "name": "Tobias Schultze",
  1219. "email": "webmaster@tubo-world.de",
  1220. "homepage": "https://github.com/Tobion"
  1221. },
  1222. {
  1223. "name": "Márk Sági-Kazár",
  1224. "email": "mark.sagikazar@gmail.com",
  1225. "homepage": "https://sagikazarmark.hu"
  1226. }
  1227. ],
  1228. "description": "PSR-7 message implementation that also provides common utility methods",
  1229. "keywords": [
  1230. "http",
  1231. "message",
  1232. "psr-7",
  1233. "request",
  1234. "response",
  1235. "stream",
  1236. "uri",
  1237. "url"
  1238. ],
  1239. "support": {
  1240. "issues": "https://github.com/guzzle/psr7/issues",
  1241. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1242. },
  1243. "funding": [
  1244. {
  1245. "url": "https://github.com/GrahamCampbell",
  1246. "type": "github"
  1247. },
  1248. {
  1249. "url": "https://github.com/Nyholm",
  1250. "type": "github"
  1251. },
  1252. {
  1253. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1254. "type": "tidelift"
  1255. }
  1256. ],
  1257. "time": "2024-07-18T11:15:46+00:00"
  1258. },
  1259. {
  1260. "name": "guzzlehttp/uri-template",
  1261. "version": "v1.0.3",
  1262. "source": {
  1263. "type": "git",
  1264. "url": "https://github.com/guzzle/uri-template.git",
  1265. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1266. },
  1267. "dist": {
  1268. "type": "zip",
  1269. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1270. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1271. "shasum": ""
  1272. },
  1273. "require": {
  1274. "php": "^7.2.5 || ^8.0",
  1275. "symfony/polyfill-php80": "^1.24"
  1276. },
  1277. "require-dev": {
  1278. "bamarni/composer-bin-plugin": "^1.8.2",
  1279. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1280. "uri-template/tests": "1.0.0"
  1281. },
  1282. "type": "library",
  1283. "extra": {
  1284. "bamarni-bin": {
  1285. "bin-links": true,
  1286. "forward-command": false
  1287. }
  1288. },
  1289. "autoload": {
  1290. "psr-4": {
  1291. "GuzzleHttp\\UriTemplate\\": "src"
  1292. }
  1293. },
  1294. "notification-url": "https://packagist.org/downloads/",
  1295. "license": [
  1296. "MIT"
  1297. ],
  1298. "authors": [
  1299. {
  1300. "name": "Graham Campbell",
  1301. "email": "hello@gjcampbell.co.uk",
  1302. "homepage": "https://github.com/GrahamCampbell"
  1303. },
  1304. {
  1305. "name": "Michael Dowling",
  1306. "email": "mtdowling@gmail.com",
  1307. "homepage": "https://github.com/mtdowling"
  1308. },
  1309. {
  1310. "name": "George Mponos",
  1311. "email": "gmponos@gmail.com",
  1312. "homepage": "https://github.com/gmponos"
  1313. },
  1314. {
  1315. "name": "Tobias Nyholm",
  1316. "email": "tobias.nyholm@gmail.com",
  1317. "homepage": "https://github.com/Nyholm"
  1318. }
  1319. ],
  1320. "description": "A polyfill class for uri_template of PHP",
  1321. "keywords": [
  1322. "guzzlehttp",
  1323. "uri-template"
  1324. ],
  1325. "support": {
  1326. "issues": "https://github.com/guzzle/uri-template/issues",
  1327. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  1328. },
  1329. "funding": [
  1330. {
  1331. "url": "https://github.com/GrahamCampbell",
  1332. "type": "github"
  1333. },
  1334. {
  1335. "url": "https://github.com/Nyholm",
  1336. "type": "github"
  1337. },
  1338. {
  1339. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1340. "type": "tidelift"
  1341. }
  1342. ],
  1343. "time": "2023-12-03T19:50:20+00:00"
  1344. },
  1345. {
  1346. "name": "huifurepo/dg-php-sdk",
  1347. "version": "2.0.14",
  1348. "source": {
  1349. "type": "git",
  1350. "url": "https://github.com/huifurepo/bspay-php-sdk.git",
  1351. "reference": "b64924cbd9dfd7490164eff926bf651e48f8ae2c"
  1352. },
  1353. "dist": {
  1354. "type": "zip",
  1355. "url": "https://api.github.com/repos/huifurepo/bspay-php-sdk/zipball/b64924cbd9dfd7490164eff926bf651e48f8ae2c",
  1356. "reference": "b64924cbd9dfd7490164eff926bf651e48f8ae2c",
  1357. "shasum": ""
  1358. },
  1359. "type": "library",
  1360. "notification-url": "https://packagist.org/downloads/",
  1361. "license": [
  1362. "MIT"
  1363. ],
  1364. "description": "汇付天下斗拱SDK-PHP版",
  1365. "support": {
  1366. "issues": "https://github.com/huifurepo/bspay-php-sdk/issues",
  1367. "source": "https://github.com/huifurepo/bspay-php-sdk/tree/2.0.14"
  1368. },
  1369. "time": "2024-11-07T10:27:56+00:00"
  1370. },
  1371. {
  1372. "name": "iconify/json",
  1373. "version": "2.2.276",
  1374. "source": {
  1375. "type": "git",
  1376. "url": "https://github.com/iconify/icon-sets.git",
  1377. "reference": "aea1e648b6d28c7f95c3afb0eaf1338cffb0d980"
  1378. },
  1379. "dist": {
  1380. "type": "zip",
  1381. "url": "https://api.github.com/repos/iconify/icon-sets/zipball/aea1e648b6d28c7f95c3afb0eaf1338cffb0d980",
  1382. "reference": "aea1e648b6d28c7f95c3afb0eaf1338cffb0d980",
  1383. "shasum": ""
  1384. },
  1385. "type": "library",
  1386. "autoload": {
  1387. "psr-4": {
  1388. "Iconify\\IconsJSON\\": "lib"
  1389. }
  1390. },
  1391. "notification-url": "https://packagist.org/downloads/",
  1392. "license": [
  1393. "MIT"
  1394. ],
  1395. "description": "Iconify icons collection in JSON format",
  1396. "homepage": "https://iconify.design/icon-sets/",
  1397. "support": {
  1398. "issues": "https://github.com/iconify/icon-sets/issues",
  1399. "source": "https://github.com/iconify/icon-sets/tree/2.2.276"
  1400. },
  1401. "time": "2024-11-25T06:57:03+00:00"
  1402. },
  1403. {
  1404. "name": "iwzh/owl-scheduling",
  1405. "version": "1.0.2",
  1406. "source": {
  1407. "type": "git",
  1408. "url": "https://gitee.com/wzhec/owl-scheduling",
  1409. "reference": "61478147d286fddb2e0634c4d11acda862db851d"
  1410. },
  1411. "require": {
  1412. "php": ">=8.0",
  1413. "slowlyo/owl-admin": "*"
  1414. },
  1415. "type": "library",
  1416. "extra": {
  1417. "owl-admin": "Iwzh\\owlScheduling\\OwlSchedulingServiceProvider",
  1418. "laravel": {
  1419. "providers": [
  1420. "Iwzh\\owlScheduling\\OwlSchedulingServiceProvider"
  1421. ]
  1422. }
  1423. },
  1424. "autoload": {
  1425. "psr-4": {
  1426. "Iwzh\\owlScheduling\\": "src/"
  1427. }
  1428. },
  1429. "notification-url": "https://packagist.org/downloads/",
  1430. "license": [
  1431. "MIT"
  1432. ],
  1433. "authors": [
  1434. {
  1435. "name": "wzh",
  1436. "email": "wzhec@foxmail.com"
  1437. }
  1438. ],
  1439. "description": "OwlAdmin扩展:方便管理 laravel 的定时任务",
  1440. "homepage": "https://gitee.com/wzhec/owl-scheduling",
  1441. "keywords": [
  1442. "extension",
  1443. "owl-admin"
  1444. ],
  1445. "time": "2023-05-12T02:57:41+00:00"
  1446. },
  1447. {
  1448. "name": "knuckleswtf/scribe",
  1449. "version": "4.38.0",
  1450. "source": {
  1451. "type": "git",
  1452. "url": "https://github.com/knuckleswtf/scribe.git",
  1453. "reference": "da667aafb6804b4b599ac6506bb178bfa5434802"
  1454. },
  1455. "dist": {
  1456. "type": "zip",
  1457. "url": "https://api.github.com/repos/knuckleswtf/scribe/zipball/da667aafb6804b4b599ac6506bb178bfa5434802",
  1458. "reference": "da667aafb6804b4b599ac6506bb178bfa5434802",
  1459. "shasum": ""
  1460. },
  1461. "require": {
  1462. "erusev/parsedown": "1.7.4",
  1463. "ext-fileinfo": "*",
  1464. "ext-json": "*",
  1465. "ext-pdo": "*",
  1466. "fakerphp/faker": "^1.9.1",
  1467. "illuminate/console": "^8.0|^9.0|^10.0|^11.0",
  1468. "illuminate/routing": "^8.0|^9.0|^10.0|^11.0",
  1469. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1470. "league/flysystem": "^1.1.4|^2.1.1|^3.0",
  1471. "mpociot/reflection-docblock": "^1.0.1",
  1472. "nikic/php-parser": "^5.0",
  1473. "nunomaduro/collision": "^5.10|^6.0|^7.0|^8.0",
  1474. "php": ">=8.0",
  1475. "ramsey/uuid": "^4.2.2",
  1476. "shalvah/clara": "^3.1.0",
  1477. "shalvah/upgrader": ">=0.6.0",
  1478. "spatie/data-transfer-object": "^2.6|^3.0",
  1479. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  1480. "symfony/yaml": "^5.4|^6.0|^7.0"
  1481. },
  1482. "replace": {
  1483. "mpociot/laravel-apidoc-generator": "*"
  1484. },
  1485. "require-dev": {
  1486. "brianium/paratest": "^6.0",
  1487. "dms/phpunit-arraysubset-asserts": "^0.4",
  1488. "laravel/legacy-factories": "^1.3.0",
  1489. "laravel/lumen-framework": "^8.0|^9.0|^10.0",
  1490. "league/fractal": "^0.20",
  1491. "nikic/fast-route": "^1.3",
  1492. "orchestra/testbench": "^6.0|^7.0|^8.0",
  1493. "pestphp/pest": "^1.21",
  1494. "phpstan/phpstan": "^1.0",
  1495. "phpunit/phpunit": "^9.0|^10.0",
  1496. "symfony/css-selector": "^5.4|^6.0",
  1497. "symfony/dom-crawler": "^5.4|^6.0"
  1498. },
  1499. "type": "library",
  1500. "extra": {
  1501. "laravel": {
  1502. "providers": [
  1503. "Knuckles\\Scribe\\ScribeServiceProvider"
  1504. ]
  1505. }
  1506. },
  1507. "autoload": {
  1508. "psr-4": {
  1509. "Knuckles\\Camel\\": "camel/",
  1510. "Knuckles\\Scribe\\": "src/"
  1511. }
  1512. },
  1513. "notification-url": "https://packagist.org/downloads/",
  1514. "license": [
  1515. "MIT"
  1516. ],
  1517. "authors": [
  1518. {
  1519. "name": "Shalvah"
  1520. }
  1521. ],
  1522. "description": "Generate API documentation for humans from your Laravel codebase.✍",
  1523. "homepage": "http://github.com/knuckleswtf/scribe",
  1524. "keywords": [
  1525. "api",
  1526. "dingo",
  1527. "documentation",
  1528. "laravel"
  1529. ],
  1530. "support": {
  1531. "issues": "https://github.com/knuckleswtf/scribe/issues",
  1532. "source": "https://github.com/knuckleswtf/scribe/tree/4.38.0"
  1533. },
  1534. "funding": [
  1535. {
  1536. "url": "https://patreon.com/shalvah",
  1537. "type": "patreon"
  1538. }
  1539. ],
  1540. "time": "2024-10-18T20:16:40+00:00"
  1541. },
  1542. {
  1543. "name": "laravel/framework",
  1544. "version": "v11.30.0",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/laravel/framework.git",
  1548. "reference": "dff716442d9c229d716be82ccc9a7de52eb97193"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/laravel/framework/zipball/dff716442d9c229d716be82ccc9a7de52eb97193",
  1553. "reference": "dff716442d9c229d716be82ccc9a7de52eb97193",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  1558. "composer-runtime-api": "^2.2",
  1559. "doctrine/inflector": "^2.0.5",
  1560. "dragonmantank/cron-expression": "^3.3.2",
  1561. "egulias/email-validator": "^3.2.1|^4.0",
  1562. "ext-ctype": "*",
  1563. "ext-filter": "*",
  1564. "ext-hash": "*",
  1565. "ext-mbstring": "*",
  1566. "ext-openssl": "*",
  1567. "ext-session": "*",
  1568. "ext-tokenizer": "*",
  1569. "fruitcake/php-cors": "^1.3",
  1570. "guzzlehttp/guzzle": "^7.8",
  1571. "guzzlehttp/uri-template": "^1.0",
  1572. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  1573. "laravel/serializable-closure": "^1.3",
  1574. "league/commonmark": "^2.2.1",
  1575. "league/flysystem": "^3.8.0",
  1576. "monolog/monolog": "^3.0",
  1577. "nesbot/carbon": "^2.72.2|^3.0",
  1578. "nunomaduro/termwind": "^2.0",
  1579. "php": "^8.2",
  1580. "psr/container": "^1.1.1|^2.0.1",
  1581. "psr/log": "^1.0|^2.0|^3.0",
  1582. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1583. "ramsey/uuid": "^4.7",
  1584. "symfony/console": "^7.0",
  1585. "symfony/error-handler": "^7.0",
  1586. "symfony/finder": "^7.0",
  1587. "symfony/http-foundation": "^7.0",
  1588. "symfony/http-kernel": "^7.0",
  1589. "symfony/mailer": "^7.0",
  1590. "symfony/mime": "^7.0",
  1591. "symfony/polyfill-php83": "^1.28",
  1592. "symfony/process": "^7.0",
  1593. "symfony/routing": "^7.0",
  1594. "symfony/uid": "^7.0",
  1595. "symfony/var-dumper": "^7.0",
  1596. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1597. "vlucas/phpdotenv": "^5.4.1",
  1598. "voku/portable-ascii": "^2.0"
  1599. },
  1600. "conflict": {
  1601. "mockery/mockery": "1.6.8",
  1602. "tightenco/collect": "<5.5.33"
  1603. },
  1604. "provide": {
  1605. "psr/container-implementation": "1.1|2.0",
  1606. "psr/log-implementation": "1.0|2.0|3.0",
  1607. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1608. },
  1609. "replace": {
  1610. "illuminate/auth": "self.version",
  1611. "illuminate/broadcasting": "self.version",
  1612. "illuminate/bus": "self.version",
  1613. "illuminate/cache": "self.version",
  1614. "illuminate/collections": "self.version",
  1615. "illuminate/concurrency": "self.version",
  1616. "illuminate/conditionable": "self.version",
  1617. "illuminate/config": "self.version",
  1618. "illuminate/console": "self.version",
  1619. "illuminate/container": "self.version",
  1620. "illuminate/contracts": "self.version",
  1621. "illuminate/cookie": "self.version",
  1622. "illuminate/database": "self.version",
  1623. "illuminate/encryption": "self.version",
  1624. "illuminate/events": "self.version",
  1625. "illuminate/filesystem": "self.version",
  1626. "illuminate/hashing": "self.version",
  1627. "illuminate/http": "self.version",
  1628. "illuminate/log": "self.version",
  1629. "illuminate/macroable": "self.version",
  1630. "illuminate/mail": "self.version",
  1631. "illuminate/notifications": "self.version",
  1632. "illuminate/pagination": "self.version",
  1633. "illuminate/pipeline": "self.version",
  1634. "illuminate/process": "self.version",
  1635. "illuminate/queue": "self.version",
  1636. "illuminate/redis": "self.version",
  1637. "illuminate/routing": "self.version",
  1638. "illuminate/session": "self.version",
  1639. "illuminate/support": "self.version",
  1640. "illuminate/testing": "self.version",
  1641. "illuminate/translation": "self.version",
  1642. "illuminate/validation": "self.version",
  1643. "illuminate/view": "self.version",
  1644. "spatie/once": "*"
  1645. },
  1646. "require-dev": {
  1647. "ably/ably-php": "^1.0",
  1648. "aws/aws-sdk-php": "^3.235.5",
  1649. "ext-gmp": "*",
  1650. "fakerphp/faker": "^1.23",
  1651. "league/flysystem-aws-s3-v3": "^3.0",
  1652. "league/flysystem-ftp": "^3.0",
  1653. "league/flysystem-path-prefixing": "^3.3",
  1654. "league/flysystem-read-only": "^3.3",
  1655. "league/flysystem-sftp-v3": "^3.0",
  1656. "mockery/mockery": "^1.6",
  1657. "nyholm/psr7": "^1.2",
  1658. "orchestra/testbench-core": "^9.5",
  1659. "pda/pheanstalk": "^5.0",
  1660. "phpstan/phpstan": "^1.11.5",
  1661. "phpunit/phpunit": "^10.5|^11.0",
  1662. "predis/predis": "^2.0.2",
  1663. "resend/resend-php": "^0.10.0",
  1664. "symfony/cache": "^7.0",
  1665. "symfony/http-client": "^7.0",
  1666. "symfony/psr-http-message-bridge": "^7.0"
  1667. },
  1668. "suggest": {
  1669. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1670. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  1671. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  1672. "ext-apcu": "Required to use the APC cache driver.",
  1673. "ext-fileinfo": "Required to use the Filesystem class.",
  1674. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1675. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1676. "ext-memcached": "Required to use the memcache cache driver.",
  1677. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  1678. "ext-pdo": "Required to use all database features.",
  1679. "ext-posix": "Required to use all features of the queue worker.",
  1680. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  1681. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1682. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1683. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1684. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1685. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1686. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1687. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1688. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1689. "mockery/mockery": "Required to use mocking (^1.6).",
  1690. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1691. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  1692. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  1693. "predis/predis": "Required to use the predis connector (^2.0.2).",
  1694. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1695. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1696. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  1697. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  1698. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  1699. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  1700. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  1701. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  1702. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  1703. },
  1704. "type": "library",
  1705. "extra": {
  1706. "branch-alias": {
  1707. "dev-master": "11.x-dev"
  1708. }
  1709. },
  1710. "autoload": {
  1711. "files": [
  1712. "src/Illuminate/Collections/helpers.php",
  1713. "src/Illuminate/Events/functions.php",
  1714. "src/Illuminate/Filesystem/functions.php",
  1715. "src/Illuminate/Foundation/helpers.php",
  1716. "src/Illuminate/Log/functions.php",
  1717. "src/Illuminate/Support/functions.php",
  1718. "src/Illuminate/Support/helpers.php"
  1719. ],
  1720. "psr-4": {
  1721. "Illuminate\\": "src/Illuminate/",
  1722. "Illuminate\\Support\\": [
  1723. "src/Illuminate/Macroable/",
  1724. "src/Illuminate/Collections/",
  1725. "src/Illuminate/Conditionable/"
  1726. ]
  1727. }
  1728. },
  1729. "notification-url": "https://packagist.org/downloads/",
  1730. "license": [
  1731. "MIT"
  1732. ],
  1733. "authors": [
  1734. {
  1735. "name": "Taylor Otwell",
  1736. "email": "taylor@laravel.com"
  1737. }
  1738. ],
  1739. "description": "The Laravel Framework.",
  1740. "homepage": "https://laravel.com",
  1741. "keywords": [
  1742. "framework",
  1743. "laravel"
  1744. ],
  1745. "support": {
  1746. "issues": "https://github.com/laravel/framework/issues",
  1747. "source": "https://github.com/laravel/framework"
  1748. },
  1749. "time": "2024-10-30T15:00:34+00:00"
  1750. },
  1751. {
  1752. "name": "laravel/prompts",
  1753. "version": "v0.3.2",
  1754. "source": {
  1755. "type": "git",
  1756. "url": "https://github.com/laravel/prompts.git",
  1757. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f"
  1758. },
  1759. "dist": {
  1760. "type": "zip",
  1761. "url": "https://api.github.com/repos/laravel/prompts/zipball/0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  1762. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  1763. "shasum": ""
  1764. },
  1765. "require": {
  1766. "composer-runtime-api": "^2.2",
  1767. "ext-mbstring": "*",
  1768. "php": "^8.1",
  1769. "symfony/console": "^6.2|^7.0"
  1770. },
  1771. "conflict": {
  1772. "illuminate/console": ">=10.17.0 <10.25.0",
  1773. "laravel/framework": ">=10.17.0 <10.25.0"
  1774. },
  1775. "require-dev": {
  1776. "illuminate/collections": "^10.0|^11.0",
  1777. "mockery/mockery": "^1.5",
  1778. "pestphp/pest": "^2.3|^3.4",
  1779. "phpstan/phpstan": "^1.11",
  1780. "phpstan/phpstan-mockery": "^1.1"
  1781. },
  1782. "suggest": {
  1783. "ext-pcntl": "Required for the spinner to be animated."
  1784. },
  1785. "type": "library",
  1786. "extra": {
  1787. "branch-alias": {
  1788. "dev-main": "0.3.x-dev"
  1789. }
  1790. },
  1791. "autoload": {
  1792. "files": [
  1793. "src/helpers.php"
  1794. ],
  1795. "psr-4": {
  1796. "Laravel\\Prompts\\": "src/"
  1797. }
  1798. },
  1799. "notification-url": "https://packagist.org/downloads/",
  1800. "license": [
  1801. "MIT"
  1802. ],
  1803. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  1804. "support": {
  1805. "issues": "https://github.com/laravel/prompts/issues",
  1806. "source": "https://github.com/laravel/prompts/tree/v0.3.2"
  1807. },
  1808. "time": "2024-11-12T14:59:47+00:00"
  1809. },
  1810. {
  1811. "name": "laravel/sanctum",
  1812. "version": "v4.0.5",
  1813. "source": {
  1814. "type": "git",
  1815. "url": "https://github.com/laravel/sanctum.git",
  1816. "reference": "fe361b9a63407a228f884eb78d7217f680b50140"
  1817. },
  1818. "dist": {
  1819. "type": "zip",
  1820. "url": "https://api.github.com/repos/laravel/sanctum/zipball/fe361b9a63407a228f884eb78d7217f680b50140",
  1821. "reference": "fe361b9a63407a228f884eb78d7217f680b50140",
  1822. "shasum": ""
  1823. },
  1824. "require": {
  1825. "ext-json": "*",
  1826. "illuminate/console": "^11.0",
  1827. "illuminate/contracts": "^11.0",
  1828. "illuminate/database": "^11.0",
  1829. "illuminate/support": "^11.0",
  1830. "php": "^8.2",
  1831. "symfony/console": "^7.0"
  1832. },
  1833. "require-dev": {
  1834. "mockery/mockery": "^1.6",
  1835. "orchestra/testbench": "^9.0",
  1836. "phpstan/phpstan": "^1.10",
  1837. "phpunit/phpunit": "^10.5"
  1838. },
  1839. "type": "library",
  1840. "extra": {
  1841. "laravel": {
  1842. "providers": [
  1843. "Laravel\\Sanctum\\SanctumServiceProvider"
  1844. ]
  1845. }
  1846. },
  1847. "autoload": {
  1848. "psr-4": {
  1849. "Laravel\\Sanctum\\": "src/"
  1850. }
  1851. },
  1852. "notification-url": "https://packagist.org/downloads/",
  1853. "license": [
  1854. "MIT"
  1855. ],
  1856. "authors": [
  1857. {
  1858. "name": "Taylor Otwell",
  1859. "email": "taylor@laravel.com"
  1860. }
  1861. ],
  1862. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  1863. "keywords": [
  1864. "auth",
  1865. "laravel",
  1866. "sanctum"
  1867. ],
  1868. "support": {
  1869. "issues": "https://github.com/laravel/sanctum/issues",
  1870. "source": "https://github.com/laravel/sanctum"
  1871. },
  1872. "time": "2024-11-26T14:36:23+00:00"
  1873. },
  1874. {
  1875. "name": "laravel/serializable-closure",
  1876. "version": "v1.3.7",
  1877. "source": {
  1878. "type": "git",
  1879. "url": "https://github.com/laravel/serializable-closure.git",
  1880. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  1881. },
  1882. "dist": {
  1883. "type": "zip",
  1884. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  1885. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  1886. "shasum": ""
  1887. },
  1888. "require": {
  1889. "php": "^7.3|^8.0"
  1890. },
  1891. "require-dev": {
  1892. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1893. "nesbot/carbon": "^2.61|^3.0",
  1894. "pestphp/pest": "^1.21.3",
  1895. "phpstan/phpstan": "^1.8.2",
  1896. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  1897. },
  1898. "type": "library",
  1899. "extra": {
  1900. "branch-alias": {
  1901. "dev-master": "1.x-dev"
  1902. }
  1903. },
  1904. "autoload": {
  1905. "psr-4": {
  1906. "Laravel\\SerializableClosure\\": "src/"
  1907. }
  1908. },
  1909. "notification-url": "https://packagist.org/downloads/",
  1910. "license": [
  1911. "MIT"
  1912. ],
  1913. "authors": [
  1914. {
  1915. "name": "Taylor Otwell",
  1916. "email": "taylor@laravel.com"
  1917. },
  1918. {
  1919. "name": "Nuno Maduro",
  1920. "email": "nuno@laravel.com"
  1921. }
  1922. ],
  1923. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1924. "keywords": [
  1925. "closure",
  1926. "laravel",
  1927. "serializable"
  1928. ],
  1929. "support": {
  1930. "issues": "https://github.com/laravel/serializable-closure/issues",
  1931. "source": "https://github.com/laravel/serializable-closure"
  1932. },
  1933. "time": "2024-11-14T18:34:49+00:00"
  1934. },
  1935. {
  1936. "name": "laravel/tinker",
  1937. "version": "v2.10.0",
  1938. "source": {
  1939. "type": "git",
  1940. "url": "https://github.com/laravel/tinker.git",
  1941. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  1942. },
  1943. "dist": {
  1944. "type": "zip",
  1945. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  1946. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  1947. "shasum": ""
  1948. },
  1949. "require": {
  1950. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1951. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1952. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1953. "php": "^7.2.5|^8.0",
  1954. "psy/psysh": "^0.11.1|^0.12.0",
  1955. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  1956. },
  1957. "require-dev": {
  1958. "mockery/mockery": "~1.3.3|^1.4.2",
  1959. "phpstan/phpstan": "^1.10",
  1960. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1961. },
  1962. "suggest": {
  1963. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  1964. },
  1965. "type": "library",
  1966. "extra": {
  1967. "laravel": {
  1968. "providers": [
  1969. "Laravel\\Tinker\\TinkerServiceProvider"
  1970. ]
  1971. }
  1972. },
  1973. "autoload": {
  1974. "psr-4": {
  1975. "Laravel\\Tinker\\": "src/"
  1976. }
  1977. },
  1978. "notification-url": "https://packagist.org/downloads/",
  1979. "license": [
  1980. "MIT"
  1981. ],
  1982. "authors": [
  1983. {
  1984. "name": "Taylor Otwell",
  1985. "email": "taylor@laravel.com"
  1986. }
  1987. ],
  1988. "description": "Powerful REPL for the Laravel framework.",
  1989. "keywords": [
  1990. "REPL",
  1991. "Tinker",
  1992. "laravel",
  1993. "psysh"
  1994. ],
  1995. "support": {
  1996. "issues": "https://github.com/laravel/tinker/issues",
  1997. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  1998. },
  1999. "time": "2024-09-23T13:32:56+00:00"
  2000. },
  2001. {
  2002. "name": "league/commonmark",
  2003. "version": "2.5.3",
  2004. "source": {
  2005. "type": "git",
  2006. "url": "https://github.com/thephpleague/commonmark.git",
  2007. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  2008. },
  2009. "dist": {
  2010. "type": "zip",
  2011. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  2012. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  2013. "shasum": ""
  2014. },
  2015. "require": {
  2016. "ext-mbstring": "*",
  2017. "league/config": "^1.1.1",
  2018. "php": "^7.4 || ^8.0",
  2019. "psr/event-dispatcher": "^1.0",
  2020. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2021. "symfony/polyfill-php80": "^1.16"
  2022. },
  2023. "require-dev": {
  2024. "cebe/markdown": "^1.0",
  2025. "commonmark/cmark": "0.31.1",
  2026. "commonmark/commonmark.js": "0.31.1",
  2027. "composer/package-versions-deprecated": "^1.8",
  2028. "embed/embed": "^4.4",
  2029. "erusev/parsedown": "^1.0",
  2030. "ext-json": "*",
  2031. "github/gfm": "0.29.0",
  2032. "michelf/php-markdown": "^1.4 || ^2.0",
  2033. "nyholm/psr7": "^1.5",
  2034. "phpstan/phpstan": "^1.8.2",
  2035. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2036. "scrutinizer/ocular": "^1.8.1",
  2037. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  2038. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  2039. "unleashedtech/php-coding-standard": "^3.1.1",
  2040. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2041. },
  2042. "suggest": {
  2043. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2044. },
  2045. "type": "library",
  2046. "extra": {
  2047. "branch-alias": {
  2048. "dev-main": "2.6-dev"
  2049. }
  2050. },
  2051. "autoload": {
  2052. "psr-4": {
  2053. "League\\CommonMark\\": "src"
  2054. }
  2055. },
  2056. "notification-url": "https://packagist.org/downloads/",
  2057. "license": [
  2058. "BSD-3-Clause"
  2059. ],
  2060. "authors": [
  2061. {
  2062. "name": "Colin O'Dell",
  2063. "email": "colinodell@gmail.com",
  2064. "homepage": "https://www.colinodell.com",
  2065. "role": "Lead Developer"
  2066. }
  2067. ],
  2068. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2069. "homepage": "https://commonmark.thephpleague.com",
  2070. "keywords": [
  2071. "commonmark",
  2072. "flavored",
  2073. "gfm",
  2074. "github",
  2075. "github-flavored",
  2076. "markdown",
  2077. "md",
  2078. "parser"
  2079. ],
  2080. "support": {
  2081. "docs": "https://commonmark.thephpleague.com/",
  2082. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2083. "issues": "https://github.com/thephpleague/commonmark/issues",
  2084. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2085. "source": "https://github.com/thephpleague/commonmark"
  2086. },
  2087. "funding": [
  2088. {
  2089. "url": "https://www.colinodell.com/sponsor",
  2090. "type": "custom"
  2091. },
  2092. {
  2093. "url": "https://www.paypal.me/colinpodell/10.00",
  2094. "type": "custom"
  2095. },
  2096. {
  2097. "url": "https://github.com/colinodell",
  2098. "type": "github"
  2099. },
  2100. {
  2101. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2102. "type": "tidelift"
  2103. }
  2104. ],
  2105. "time": "2024-08-16T11:46:16+00:00"
  2106. },
  2107. {
  2108. "name": "league/config",
  2109. "version": "v1.2.0",
  2110. "source": {
  2111. "type": "git",
  2112. "url": "https://github.com/thephpleague/config.git",
  2113. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2114. },
  2115. "dist": {
  2116. "type": "zip",
  2117. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2118. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2119. "shasum": ""
  2120. },
  2121. "require": {
  2122. "dflydev/dot-access-data": "^3.0.1",
  2123. "nette/schema": "^1.2",
  2124. "php": "^7.4 || ^8.0"
  2125. },
  2126. "require-dev": {
  2127. "phpstan/phpstan": "^1.8.2",
  2128. "phpunit/phpunit": "^9.5.5",
  2129. "scrutinizer/ocular": "^1.8.1",
  2130. "unleashedtech/php-coding-standard": "^3.1",
  2131. "vimeo/psalm": "^4.7.3"
  2132. },
  2133. "type": "library",
  2134. "extra": {
  2135. "branch-alias": {
  2136. "dev-main": "1.2-dev"
  2137. }
  2138. },
  2139. "autoload": {
  2140. "psr-4": {
  2141. "League\\Config\\": "src"
  2142. }
  2143. },
  2144. "notification-url": "https://packagist.org/downloads/",
  2145. "license": [
  2146. "BSD-3-Clause"
  2147. ],
  2148. "authors": [
  2149. {
  2150. "name": "Colin O'Dell",
  2151. "email": "colinodell@gmail.com",
  2152. "homepage": "https://www.colinodell.com",
  2153. "role": "Lead Developer"
  2154. }
  2155. ],
  2156. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2157. "homepage": "https://config.thephpleague.com",
  2158. "keywords": [
  2159. "array",
  2160. "config",
  2161. "configuration",
  2162. "dot",
  2163. "dot-access",
  2164. "nested",
  2165. "schema"
  2166. ],
  2167. "support": {
  2168. "docs": "https://config.thephpleague.com/",
  2169. "issues": "https://github.com/thephpleague/config/issues",
  2170. "rss": "https://github.com/thephpleague/config/releases.atom",
  2171. "source": "https://github.com/thephpleague/config"
  2172. },
  2173. "funding": [
  2174. {
  2175. "url": "https://www.colinodell.com/sponsor",
  2176. "type": "custom"
  2177. },
  2178. {
  2179. "url": "https://www.paypal.me/colinpodell/10.00",
  2180. "type": "custom"
  2181. },
  2182. {
  2183. "url": "https://github.com/colinodell",
  2184. "type": "github"
  2185. }
  2186. ],
  2187. "time": "2022-12-11T20:36:23+00:00"
  2188. },
  2189. {
  2190. "name": "league/flysystem",
  2191. "version": "3.29.1",
  2192. "source": {
  2193. "type": "git",
  2194. "url": "https://github.com/thephpleague/flysystem.git",
  2195. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  2196. },
  2197. "dist": {
  2198. "type": "zip",
  2199. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2200. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2201. "shasum": ""
  2202. },
  2203. "require": {
  2204. "league/flysystem-local": "^3.0.0",
  2205. "league/mime-type-detection": "^1.0.0",
  2206. "php": "^8.0.2"
  2207. },
  2208. "conflict": {
  2209. "async-aws/core": "<1.19.0",
  2210. "async-aws/s3": "<1.14.0",
  2211. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2212. "guzzlehttp/guzzle": "<7.0",
  2213. "guzzlehttp/ringphp": "<1.1.1",
  2214. "phpseclib/phpseclib": "3.0.15",
  2215. "symfony/http-client": "<5.2"
  2216. },
  2217. "require-dev": {
  2218. "async-aws/s3": "^1.5 || ^2.0",
  2219. "async-aws/simple-s3": "^1.1 || ^2.0",
  2220. "aws/aws-sdk-php": "^3.295.10",
  2221. "composer/semver": "^3.0",
  2222. "ext-fileinfo": "*",
  2223. "ext-ftp": "*",
  2224. "ext-mongodb": "^1.3",
  2225. "ext-zip": "*",
  2226. "friendsofphp/php-cs-fixer": "^3.5",
  2227. "google/cloud-storage": "^1.23",
  2228. "guzzlehttp/psr7": "^2.6",
  2229. "microsoft/azure-storage-blob": "^1.1",
  2230. "mongodb/mongodb": "^1.2",
  2231. "phpseclib/phpseclib": "^3.0.36",
  2232. "phpstan/phpstan": "^1.10",
  2233. "phpunit/phpunit": "^9.5.11|^10.0",
  2234. "sabre/dav": "^4.6.0"
  2235. },
  2236. "type": "library",
  2237. "autoload": {
  2238. "psr-4": {
  2239. "League\\Flysystem\\": "src"
  2240. }
  2241. },
  2242. "notification-url": "https://packagist.org/downloads/",
  2243. "license": [
  2244. "MIT"
  2245. ],
  2246. "authors": [
  2247. {
  2248. "name": "Frank de Jonge",
  2249. "email": "info@frankdejonge.nl"
  2250. }
  2251. ],
  2252. "description": "File storage abstraction for PHP",
  2253. "keywords": [
  2254. "WebDAV",
  2255. "aws",
  2256. "cloud",
  2257. "file",
  2258. "files",
  2259. "filesystem",
  2260. "filesystems",
  2261. "ftp",
  2262. "s3",
  2263. "sftp",
  2264. "storage"
  2265. ],
  2266. "support": {
  2267. "issues": "https://github.com/thephpleague/flysystem/issues",
  2268. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  2269. },
  2270. "time": "2024-10-08T08:58:34+00:00"
  2271. },
  2272. {
  2273. "name": "league/flysystem-local",
  2274. "version": "3.29.0",
  2275. "source": {
  2276. "type": "git",
  2277. "url": "https://github.com/thephpleague/flysystem-local.git",
  2278. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  2279. },
  2280. "dist": {
  2281. "type": "zip",
  2282. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2283. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2284. "shasum": ""
  2285. },
  2286. "require": {
  2287. "ext-fileinfo": "*",
  2288. "league/flysystem": "^3.0.0",
  2289. "league/mime-type-detection": "^1.0.0",
  2290. "php": "^8.0.2"
  2291. },
  2292. "type": "library",
  2293. "autoload": {
  2294. "psr-4": {
  2295. "League\\Flysystem\\Local\\": ""
  2296. }
  2297. },
  2298. "notification-url": "https://packagist.org/downloads/",
  2299. "license": [
  2300. "MIT"
  2301. ],
  2302. "authors": [
  2303. {
  2304. "name": "Frank de Jonge",
  2305. "email": "info@frankdejonge.nl"
  2306. }
  2307. ],
  2308. "description": "Local filesystem adapter for Flysystem.",
  2309. "keywords": [
  2310. "Flysystem",
  2311. "file",
  2312. "files",
  2313. "filesystem",
  2314. "local"
  2315. ],
  2316. "support": {
  2317. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  2318. },
  2319. "time": "2024-08-09T21:24:39+00:00"
  2320. },
  2321. {
  2322. "name": "league/mime-type-detection",
  2323. "version": "1.16.0",
  2324. "source": {
  2325. "type": "git",
  2326. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2327. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  2328. },
  2329. "dist": {
  2330. "type": "zip",
  2331. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  2332. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  2333. "shasum": ""
  2334. },
  2335. "require": {
  2336. "ext-fileinfo": "*",
  2337. "php": "^7.4 || ^8.0"
  2338. },
  2339. "require-dev": {
  2340. "friendsofphp/php-cs-fixer": "^3.2",
  2341. "phpstan/phpstan": "^0.12.68",
  2342. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2343. },
  2344. "type": "library",
  2345. "autoload": {
  2346. "psr-4": {
  2347. "League\\MimeTypeDetection\\": "src"
  2348. }
  2349. },
  2350. "notification-url": "https://packagist.org/downloads/",
  2351. "license": [
  2352. "MIT"
  2353. ],
  2354. "authors": [
  2355. {
  2356. "name": "Frank de Jonge",
  2357. "email": "info@frankdejonge.nl"
  2358. }
  2359. ],
  2360. "description": "Mime-type detection for Flysystem",
  2361. "support": {
  2362. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2363. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  2364. },
  2365. "funding": [
  2366. {
  2367. "url": "https://github.com/frankdejonge",
  2368. "type": "github"
  2369. },
  2370. {
  2371. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2372. "type": "tidelift"
  2373. }
  2374. ],
  2375. "time": "2024-09-21T08:32:55+00:00"
  2376. },
  2377. {
  2378. "name": "monolog/monolog",
  2379. "version": "3.8.0",
  2380. "source": {
  2381. "type": "git",
  2382. "url": "https://github.com/Seldaek/monolog.git",
  2383. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67"
  2384. },
  2385. "dist": {
  2386. "type": "zip",
  2387. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67",
  2388. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67",
  2389. "shasum": ""
  2390. },
  2391. "require": {
  2392. "php": ">=8.1",
  2393. "psr/log": "^2.0 || ^3.0"
  2394. },
  2395. "provide": {
  2396. "psr/log-implementation": "3.0.0"
  2397. },
  2398. "require-dev": {
  2399. "aws/aws-sdk-php": "^3.0",
  2400. "doctrine/couchdb": "~1.0@dev",
  2401. "elasticsearch/elasticsearch": "^7 || ^8",
  2402. "ext-json": "*",
  2403. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2404. "guzzlehttp/guzzle": "^7.4.5",
  2405. "guzzlehttp/psr7": "^2.2",
  2406. "mongodb/mongodb": "^1.8",
  2407. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2408. "php-console/php-console": "^3.1.8",
  2409. "phpstan/phpstan": "^2",
  2410. "phpstan/phpstan-deprecation-rules": "^2",
  2411. "phpstan/phpstan-strict-rules": "^2",
  2412. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  2413. "predis/predis": "^1.1 || ^2",
  2414. "rollbar/rollbar": "^4.0",
  2415. "ruflin/elastica": "^7 || ^8",
  2416. "symfony/mailer": "^5.4 || ^6",
  2417. "symfony/mime": "^5.4 || ^6"
  2418. },
  2419. "suggest": {
  2420. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2421. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2422. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2423. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2424. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2425. "ext-mbstring": "Allow to work properly with unicode symbols",
  2426. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2427. "ext-openssl": "Required to send log messages using SSL",
  2428. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2429. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2430. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2431. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2432. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2433. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2434. },
  2435. "type": "library",
  2436. "extra": {
  2437. "branch-alias": {
  2438. "dev-main": "3.x-dev"
  2439. }
  2440. },
  2441. "autoload": {
  2442. "psr-4": {
  2443. "Monolog\\": "src/Monolog"
  2444. }
  2445. },
  2446. "notification-url": "https://packagist.org/downloads/",
  2447. "license": [
  2448. "MIT"
  2449. ],
  2450. "authors": [
  2451. {
  2452. "name": "Jordi Boggiano",
  2453. "email": "j.boggiano@seld.be",
  2454. "homepage": "https://seld.be"
  2455. }
  2456. ],
  2457. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2458. "homepage": "https://github.com/Seldaek/monolog",
  2459. "keywords": [
  2460. "log",
  2461. "logging",
  2462. "psr-3"
  2463. ],
  2464. "support": {
  2465. "issues": "https://github.com/Seldaek/monolog/issues",
  2466. "source": "https://github.com/Seldaek/monolog/tree/3.8.0"
  2467. },
  2468. "funding": [
  2469. {
  2470. "url": "https://github.com/Seldaek",
  2471. "type": "github"
  2472. },
  2473. {
  2474. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2475. "type": "tidelift"
  2476. }
  2477. ],
  2478. "time": "2024-11-12T13:57:08+00:00"
  2479. },
  2480. {
  2481. "name": "mpociot/reflection-docblock",
  2482. "version": "1.0.1",
  2483. "source": {
  2484. "type": "git",
  2485. "url": "https://github.com/mpociot/reflection-docblock.git",
  2486. "reference": "c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587"
  2487. },
  2488. "dist": {
  2489. "type": "zip",
  2490. "url": "https://api.github.com/repos/mpociot/reflection-docblock/zipball/c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587",
  2491. "reference": "c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587",
  2492. "shasum": ""
  2493. },
  2494. "require": {
  2495. "php": ">=5.3.3"
  2496. },
  2497. "require-dev": {
  2498. "phpunit/phpunit": "~4.0"
  2499. },
  2500. "suggest": {
  2501. "dflydev/markdown": "~1.0",
  2502. "erusev/parsedown": "~1.0"
  2503. },
  2504. "type": "library",
  2505. "extra": {
  2506. "branch-alias": {
  2507. "dev-master": "2.0.x-dev"
  2508. }
  2509. },
  2510. "autoload": {
  2511. "psr-0": {
  2512. "Mpociot": [
  2513. "src/"
  2514. ]
  2515. }
  2516. },
  2517. "notification-url": "https://packagist.org/downloads/",
  2518. "license": [
  2519. "MIT"
  2520. ],
  2521. "authors": [
  2522. {
  2523. "name": "Mike van Riel",
  2524. "email": "mike.vanriel@naenius.com"
  2525. }
  2526. ],
  2527. "support": {
  2528. "issues": "https://github.com/mpociot/reflection-docblock/issues",
  2529. "source": "https://github.com/mpociot/reflection-docblock/tree/master"
  2530. },
  2531. "time": "2016-06-20T20:53:12+00:00"
  2532. },
  2533. {
  2534. "name": "nesbot/carbon",
  2535. "version": "3.8.2",
  2536. "source": {
  2537. "type": "git",
  2538. "url": "https://github.com/briannesbitt/Carbon.git",
  2539. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947"
  2540. },
  2541. "dist": {
  2542. "type": "zip",
  2543. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  2544. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  2545. "shasum": ""
  2546. },
  2547. "require": {
  2548. "carbonphp/carbon-doctrine-types": "<100.0",
  2549. "ext-json": "*",
  2550. "php": "^8.1",
  2551. "psr/clock": "^1.0",
  2552. "symfony/clock": "^6.3 || ^7.0",
  2553. "symfony/polyfill-mbstring": "^1.0",
  2554. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  2555. },
  2556. "provide": {
  2557. "psr/clock-implementation": "1.0"
  2558. },
  2559. "require-dev": {
  2560. "doctrine/dbal": "^3.6.3 || ^4.0",
  2561. "doctrine/orm": "^2.15.2 || ^3.0",
  2562. "friendsofphp/php-cs-fixer": "^3.57.2",
  2563. "kylekatarnls/multi-tester": "^2.5.3",
  2564. "ondrejmirtes/better-reflection": "^6.25.0.4",
  2565. "phpmd/phpmd": "^2.15.0",
  2566. "phpstan/extension-installer": "^1.3.1",
  2567. "phpstan/phpstan": "^1.11.2",
  2568. "phpunit/phpunit": "^10.5.20",
  2569. "squizlabs/php_codesniffer": "^3.9.0"
  2570. },
  2571. "bin": [
  2572. "bin/carbon"
  2573. ],
  2574. "type": "library",
  2575. "extra": {
  2576. "branch-alias": {
  2577. "dev-master": "3.x-dev",
  2578. "dev-2.x": "2.x-dev"
  2579. },
  2580. "laravel": {
  2581. "providers": [
  2582. "Carbon\\Laravel\\ServiceProvider"
  2583. ]
  2584. },
  2585. "phpstan": {
  2586. "includes": [
  2587. "extension.neon"
  2588. ]
  2589. }
  2590. },
  2591. "autoload": {
  2592. "psr-4": {
  2593. "Carbon\\": "src/Carbon/"
  2594. }
  2595. },
  2596. "notification-url": "https://packagist.org/downloads/",
  2597. "license": [
  2598. "MIT"
  2599. ],
  2600. "authors": [
  2601. {
  2602. "name": "Brian Nesbitt",
  2603. "email": "brian@nesbot.com",
  2604. "homepage": "https://markido.com"
  2605. },
  2606. {
  2607. "name": "kylekatarnls",
  2608. "homepage": "https://github.com/kylekatarnls"
  2609. }
  2610. ],
  2611. "description": "An API extension for DateTime that supports 281 different languages.",
  2612. "homepage": "https://carbon.nesbot.com",
  2613. "keywords": [
  2614. "date",
  2615. "datetime",
  2616. "time"
  2617. ],
  2618. "support": {
  2619. "docs": "https://carbon.nesbot.com/docs",
  2620. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2621. "source": "https://github.com/briannesbitt/Carbon"
  2622. },
  2623. "funding": [
  2624. {
  2625. "url": "https://github.com/sponsors/kylekatarnls",
  2626. "type": "github"
  2627. },
  2628. {
  2629. "url": "https://opencollective.com/Carbon#sponsor",
  2630. "type": "opencollective"
  2631. },
  2632. {
  2633. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2634. "type": "tidelift"
  2635. }
  2636. ],
  2637. "time": "2024-11-07T17:46:48+00:00"
  2638. },
  2639. {
  2640. "name": "nette/schema",
  2641. "version": "v1.3.2",
  2642. "source": {
  2643. "type": "git",
  2644. "url": "https://github.com/nette/schema.git",
  2645. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  2646. },
  2647. "dist": {
  2648. "type": "zip",
  2649. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  2650. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  2651. "shasum": ""
  2652. },
  2653. "require": {
  2654. "nette/utils": "^4.0",
  2655. "php": "8.1 - 8.4"
  2656. },
  2657. "require-dev": {
  2658. "nette/tester": "^2.5.2",
  2659. "phpstan/phpstan-nette": "^1.0",
  2660. "tracy/tracy": "^2.8"
  2661. },
  2662. "type": "library",
  2663. "extra": {
  2664. "branch-alias": {
  2665. "dev-master": "1.3-dev"
  2666. }
  2667. },
  2668. "autoload": {
  2669. "classmap": [
  2670. "src/"
  2671. ]
  2672. },
  2673. "notification-url": "https://packagist.org/downloads/",
  2674. "license": [
  2675. "BSD-3-Clause",
  2676. "GPL-2.0-only",
  2677. "GPL-3.0-only"
  2678. ],
  2679. "authors": [
  2680. {
  2681. "name": "David Grudl",
  2682. "homepage": "https://davidgrudl.com"
  2683. },
  2684. {
  2685. "name": "Nette Community",
  2686. "homepage": "https://nette.org/contributors"
  2687. }
  2688. ],
  2689. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2690. "homepage": "https://nette.org",
  2691. "keywords": [
  2692. "config",
  2693. "nette"
  2694. ],
  2695. "support": {
  2696. "issues": "https://github.com/nette/schema/issues",
  2697. "source": "https://github.com/nette/schema/tree/v1.3.2"
  2698. },
  2699. "time": "2024-10-06T23:10:23+00:00"
  2700. },
  2701. {
  2702. "name": "nette/utils",
  2703. "version": "v4.0.5",
  2704. "source": {
  2705. "type": "git",
  2706. "url": "https://github.com/nette/utils.git",
  2707. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  2708. },
  2709. "dist": {
  2710. "type": "zip",
  2711. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2712. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2713. "shasum": ""
  2714. },
  2715. "require": {
  2716. "php": "8.0 - 8.4"
  2717. },
  2718. "conflict": {
  2719. "nette/finder": "<3",
  2720. "nette/schema": "<1.2.2"
  2721. },
  2722. "require-dev": {
  2723. "jetbrains/phpstorm-attributes": "dev-master",
  2724. "nette/tester": "^2.5",
  2725. "phpstan/phpstan": "^1.0",
  2726. "tracy/tracy": "^2.9"
  2727. },
  2728. "suggest": {
  2729. "ext-gd": "to use Image",
  2730. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2731. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2732. "ext-json": "to use Nette\\Utils\\Json",
  2733. "ext-mbstring": "to use Strings::lower() etc...",
  2734. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2735. },
  2736. "type": "library",
  2737. "extra": {
  2738. "branch-alias": {
  2739. "dev-master": "4.0-dev"
  2740. }
  2741. },
  2742. "autoload": {
  2743. "classmap": [
  2744. "src/"
  2745. ]
  2746. },
  2747. "notification-url": "https://packagist.org/downloads/",
  2748. "license": [
  2749. "BSD-3-Clause",
  2750. "GPL-2.0-only",
  2751. "GPL-3.0-only"
  2752. ],
  2753. "authors": [
  2754. {
  2755. "name": "David Grudl",
  2756. "homepage": "https://davidgrudl.com"
  2757. },
  2758. {
  2759. "name": "Nette Community",
  2760. "homepage": "https://nette.org/contributors"
  2761. }
  2762. ],
  2763. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2764. "homepage": "https://nette.org",
  2765. "keywords": [
  2766. "array",
  2767. "core",
  2768. "datetime",
  2769. "images",
  2770. "json",
  2771. "nette",
  2772. "paginator",
  2773. "password",
  2774. "slugify",
  2775. "string",
  2776. "unicode",
  2777. "utf-8",
  2778. "utility",
  2779. "validation"
  2780. ],
  2781. "support": {
  2782. "issues": "https://github.com/nette/utils/issues",
  2783. "source": "https://github.com/nette/utils/tree/v4.0.5"
  2784. },
  2785. "time": "2024-08-07T15:39:19+00:00"
  2786. },
  2787. {
  2788. "name": "nikic/php-parser",
  2789. "version": "v5.3.1",
  2790. "source": {
  2791. "type": "git",
  2792. "url": "https://github.com/nikic/PHP-Parser.git",
  2793. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  2794. },
  2795. "dist": {
  2796. "type": "zip",
  2797. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  2798. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  2799. "shasum": ""
  2800. },
  2801. "require": {
  2802. "ext-ctype": "*",
  2803. "ext-json": "*",
  2804. "ext-tokenizer": "*",
  2805. "php": ">=7.4"
  2806. },
  2807. "require-dev": {
  2808. "ircmaxell/php-yacc": "^0.0.7",
  2809. "phpunit/phpunit": "^9.0"
  2810. },
  2811. "bin": [
  2812. "bin/php-parse"
  2813. ],
  2814. "type": "library",
  2815. "extra": {
  2816. "branch-alias": {
  2817. "dev-master": "5.0-dev"
  2818. }
  2819. },
  2820. "autoload": {
  2821. "psr-4": {
  2822. "PhpParser\\": "lib/PhpParser"
  2823. }
  2824. },
  2825. "notification-url": "https://packagist.org/downloads/",
  2826. "license": [
  2827. "BSD-3-Clause"
  2828. ],
  2829. "authors": [
  2830. {
  2831. "name": "Nikita Popov"
  2832. }
  2833. ],
  2834. "description": "A PHP parser written in PHP",
  2835. "keywords": [
  2836. "parser",
  2837. "php"
  2838. ],
  2839. "support": {
  2840. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2841. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  2842. },
  2843. "time": "2024-10-08T18:51:32+00:00"
  2844. },
  2845. {
  2846. "name": "nunomaduro/collision",
  2847. "version": "v8.5.0",
  2848. "source": {
  2849. "type": "git",
  2850. "url": "https://github.com/nunomaduro/collision.git",
  2851. "reference": "f5c101b929c958e849a633283adff296ed5f38f5"
  2852. },
  2853. "dist": {
  2854. "type": "zip",
  2855. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f5c101b929c958e849a633283adff296ed5f38f5",
  2856. "reference": "f5c101b929c958e849a633283adff296ed5f38f5",
  2857. "shasum": ""
  2858. },
  2859. "require": {
  2860. "filp/whoops": "^2.16.0",
  2861. "nunomaduro/termwind": "^2.1.0",
  2862. "php": "^8.2.0",
  2863. "symfony/console": "^7.1.5"
  2864. },
  2865. "conflict": {
  2866. "laravel/framework": "<11.0.0 || >=12.0.0",
  2867. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  2868. },
  2869. "require-dev": {
  2870. "larastan/larastan": "^2.9.8",
  2871. "laravel/framework": "^11.28.0",
  2872. "laravel/pint": "^1.18.1",
  2873. "laravel/sail": "^1.36.0",
  2874. "laravel/sanctum": "^4.0.3",
  2875. "laravel/tinker": "^2.10.0",
  2876. "orchestra/testbench-core": "^9.5.3",
  2877. "pestphp/pest": "^2.36.0 || ^3.4.0",
  2878. "sebastian/environment": "^6.1.0 || ^7.2.0"
  2879. },
  2880. "type": "library",
  2881. "extra": {
  2882. "laravel": {
  2883. "providers": [
  2884. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  2885. ]
  2886. },
  2887. "branch-alias": {
  2888. "dev-8.x": "8.x-dev"
  2889. }
  2890. },
  2891. "autoload": {
  2892. "files": [
  2893. "./src/Adapters/Phpunit/Autoload.php"
  2894. ],
  2895. "psr-4": {
  2896. "NunoMaduro\\Collision\\": "src/"
  2897. }
  2898. },
  2899. "notification-url": "https://packagist.org/downloads/",
  2900. "license": [
  2901. "MIT"
  2902. ],
  2903. "authors": [
  2904. {
  2905. "name": "Nuno Maduro",
  2906. "email": "enunomaduro@gmail.com"
  2907. }
  2908. ],
  2909. "description": "Cli error handling for console/command-line PHP applications.",
  2910. "keywords": [
  2911. "artisan",
  2912. "cli",
  2913. "command-line",
  2914. "console",
  2915. "error",
  2916. "handling",
  2917. "laravel",
  2918. "laravel-zero",
  2919. "php",
  2920. "symfony"
  2921. ],
  2922. "support": {
  2923. "issues": "https://github.com/nunomaduro/collision/issues",
  2924. "source": "https://github.com/nunomaduro/collision"
  2925. },
  2926. "funding": [
  2927. {
  2928. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2929. "type": "custom"
  2930. },
  2931. {
  2932. "url": "https://github.com/nunomaduro",
  2933. "type": "github"
  2934. },
  2935. {
  2936. "url": "https://www.patreon.com/nunomaduro",
  2937. "type": "patreon"
  2938. }
  2939. ],
  2940. "time": "2024-10-15T16:06:32+00:00"
  2941. },
  2942. {
  2943. "name": "nunomaduro/termwind",
  2944. "version": "v2.3.0",
  2945. "source": {
  2946. "type": "git",
  2947. "url": "https://github.com/nunomaduro/termwind.git",
  2948. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  2949. },
  2950. "dist": {
  2951. "type": "zip",
  2952. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  2953. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  2954. "shasum": ""
  2955. },
  2956. "require": {
  2957. "ext-mbstring": "*",
  2958. "php": "^8.2",
  2959. "symfony/console": "^7.1.8"
  2960. },
  2961. "require-dev": {
  2962. "illuminate/console": "^11.33.2",
  2963. "laravel/pint": "^1.18.2",
  2964. "mockery/mockery": "^1.6.12",
  2965. "pestphp/pest": "^2.36.0",
  2966. "phpstan/phpstan": "^1.12.11",
  2967. "phpstan/phpstan-strict-rules": "^1.6.1",
  2968. "symfony/var-dumper": "^7.1.8",
  2969. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  2970. },
  2971. "type": "library",
  2972. "extra": {
  2973. "laravel": {
  2974. "providers": [
  2975. "Termwind\\Laravel\\TermwindServiceProvider"
  2976. ]
  2977. },
  2978. "branch-alias": {
  2979. "dev-2.x": "2.x-dev"
  2980. }
  2981. },
  2982. "autoload": {
  2983. "files": [
  2984. "src/Functions.php"
  2985. ],
  2986. "psr-4": {
  2987. "Termwind\\": "src/"
  2988. }
  2989. },
  2990. "notification-url": "https://packagist.org/downloads/",
  2991. "license": [
  2992. "MIT"
  2993. ],
  2994. "authors": [
  2995. {
  2996. "name": "Nuno Maduro",
  2997. "email": "enunomaduro@gmail.com"
  2998. }
  2999. ],
  3000. "description": "Its like Tailwind CSS, but for the console.",
  3001. "keywords": [
  3002. "cli",
  3003. "console",
  3004. "css",
  3005. "package",
  3006. "php",
  3007. "style"
  3008. ],
  3009. "support": {
  3010. "issues": "https://github.com/nunomaduro/termwind/issues",
  3011. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
  3012. },
  3013. "funding": [
  3014. {
  3015. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3016. "type": "custom"
  3017. },
  3018. {
  3019. "url": "https://github.com/nunomaduro",
  3020. "type": "github"
  3021. },
  3022. {
  3023. "url": "https://github.com/xiCO2k",
  3024. "type": "github"
  3025. }
  3026. ],
  3027. "time": "2024-11-21T10:39:51+00:00"
  3028. },
  3029. {
  3030. "name": "nyholm/psr7",
  3031. "version": "1.8.2",
  3032. "source": {
  3033. "type": "git",
  3034. "url": "https://github.com/Nyholm/psr7.git",
  3035. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3"
  3036. },
  3037. "dist": {
  3038. "type": "zip",
  3039. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  3040. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  3041. "shasum": ""
  3042. },
  3043. "require": {
  3044. "php": ">=7.2",
  3045. "psr/http-factory": "^1.0",
  3046. "psr/http-message": "^1.1 || ^2.0"
  3047. },
  3048. "provide": {
  3049. "php-http/message-factory-implementation": "1.0",
  3050. "psr/http-factory-implementation": "1.0",
  3051. "psr/http-message-implementation": "1.0"
  3052. },
  3053. "require-dev": {
  3054. "http-interop/http-factory-tests": "^0.9",
  3055. "php-http/message-factory": "^1.0",
  3056. "php-http/psr7-integration-tests": "^1.0",
  3057. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  3058. "symfony/error-handler": "^4.4"
  3059. },
  3060. "type": "library",
  3061. "extra": {
  3062. "branch-alias": {
  3063. "dev-master": "1.8-dev"
  3064. }
  3065. },
  3066. "autoload": {
  3067. "psr-4": {
  3068. "Nyholm\\Psr7\\": "src/"
  3069. }
  3070. },
  3071. "notification-url": "https://packagist.org/downloads/",
  3072. "license": [
  3073. "MIT"
  3074. ],
  3075. "authors": [
  3076. {
  3077. "name": "Tobias Nyholm",
  3078. "email": "tobias.nyholm@gmail.com"
  3079. },
  3080. {
  3081. "name": "Martijn van der Ven",
  3082. "email": "martijn@vanderven.se"
  3083. }
  3084. ],
  3085. "description": "A fast PHP7 implementation of PSR-7",
  3086. "homepage": "https://tnyholm.se",
  3087. "keywords": [
  3088. "psr-17",
  3089. "psr-7"
  3090. ],
  3091. "support": {
  3092. "issues": "https://github.com/Nyholm/psr7/issues",
  3093. "source": "https://github.com/Nyholm/psr7/tree/1.8.2"
  3094. },
  3095. "funding": [
  3096. {
  3097. "url": "https://github.com/Zegnat",
  3098. "type": "github"
  3099. },
  3100. {
  3101. "url": "https://github.com/nyholm",
  3102. "type": "github"
  3103. }
  3104. ],
  3105. "time": "2024-09-09T07:06:30+00:00"
  3106. },
  3107. {
  3108. "name": "nyholm/psr7-server",
  3109. "version": "1.1.0",
  3110. "source": {
  3111. "type": "git",
  3112. "url": "https://github.com/Nyholm/psr7-server.git",
  3113. "reference": "4335801d851f554ca43fa6e7d2602141538854dc"
  3114. },
  3115. "dist": {
  3116. "type": "zip",
  3117. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/4335801d851f554ca43fa6e7d2602141538854dc",
  3118. "reference": "4335801d851f554ca43fa6e7d2602141538854dc",
  3119. "shasum": ""
  3120. },
  3121. "require": {
  3122. "php": "^7.1 || ^8.0",
  3123. "psr/http-factory": "^1.0",
  3124. "psr/http-message": "^1.0 || ^2.0"
  3125. },
  3126. "require-dev": {
  3127. "nyholm/nsa": "^1.1",
  3128. "nyholm/psr7": "^1.3",
  3129. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  3130. },
  3131. "type": "library",
  3132. "autoload": {
  3133. "psr-4": {
  3134. "Nyholm\\Psr7Server\\": "src/"
  3135. }
  3136. },
  3137. "notification-url": "https://packagist.org/downloads/",
  3138. "license": [
  3139. "MIT"
  3140. ],
  3141. "authors": [
  3142. {
  3143. "name": "Tobias Nyholm",
  3144. "email": "tobias.nyholm@gmail.com"
  3145. },
  3146. {
  3147. "name": "Martijn van der Ven",
  3148. "email": "martijn@vanderven.se"
  3149. }
  3150. ],
  3151. "description": "Helper classes to handle PSR-7 server requests",
  3152. "homepage": "http://tnyholm.se",
  3153. "keywords": [
  3154. "psr-17",
  3155. "psr-7"
  3156. ],
  3157. "support": {
  3158. "issues": "https://github.com/Nyholm/psr7-server/issues",
  3159. "source": "https://github.com/Nyholm/psr7-server/tree/1.1.0"
  3160. },
  3161. "funding": [
  3162. {
  3163. "url": "https://github.com/Zegnat",
  3164. "type": "github"
  3165. },
  3166. {
  3167. "url": "https://github.com/nyholm",
  3168. "type": "github"
  3169. }
  3170. ],
  3171. "time": "2023-11-08T09:30:43+00:00"
  3172. },
  3173. {
  3174. "name": "overtrue/easy-sms",
  3175. "version": "3.0.1",
  3176. "source": {
  3177. "type": "git",
  3178. "url": "https://github.com/overtrue/easy-sms.git",
  3179. "reference": "b97d8b785ae07fe8c181de8d9d1f7f146a5977f7"
  3180. },
  3181. "dist": {
  3182. "type": "zip",
  3183. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/b97d8b785ae07fe8c181de8d9d1f7f146a5977f7",
  3184. "reference": "b97d8b785ae07fe8c181de8d9d1f7f146a5977f7",
  3185. "shasum": ""
  3186. },
  3187. "require": {
  3188. "ext-json": "*",
  3189. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3190. "php": ">=8.0"
  3191. },
  3192. "require-dev": {
  3193. "friendsofphp/php-cs-fixer": "^3.54",
  3194. "jetbrains/phpstorm-attributes": "^1.0",
  3195. "mockery/mockery": "^1.4.2",
  3196. "phpunit/phpunit": "^9.5.8"
  3197. },
  3198. "type": "library",
  3199. "autoload": {
  3200. "psr-4": {
  3201. "Overtrue\\EasySms\\": "src"
  3202. }
  3203. },
  3204. "notification-url": "https://packagist.org/downloads/",
  3205. "license": [
  3206. "MIT"
  3207. ],
  3208. "authors": [
  3209. {
  3210. "name": "overtrue",
  3211. "email": "i@overtrue.me"
  3212. }
  3213. ],
  3214. "description": "The easiest way to send short message.",
  3215. "support": {
  3216. "issues": "https://github.com/overtrue/easy-sms/issues",
  3217. "source": "https://github.com/overtrue/easy-sms/tree/3.0.1"
  3218. },
  3219. "funding": [
  3220. {
  3221. "url": "https://github.com/overtrue",
  3222. "type": "github"
  3223. }
  3224. ],
  3225. "time": "2024-07-16T06:07:02+00:00"
  3226. },
  3227. {
  3228. "name": "overtrue/laravel-wechat",
  3229. "version": "7.3.0",
  3230. "source": {
  3231. "type": "git",
  3232. "url": "https://github.com/overtrue/laravel-wechat.git",
  3233. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579"
  3234. },
  3235. "dist": {
  3236. "type": "zip",
  3237. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3238. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3239. "shasum": ""
  3240. },
  3241. "require": {
  3242. "illuminate/container": "^9.0|^10.0|^11.0",
  3243. "w7corp/easywechat": "^6.0.0"
  3244. },
  3245. "require-dev": {
  3246. "brainmaestro/composer-git-hooks": "dev-master",
  3247. "jetbrains/phpstorm-attributes": "^1.0",
  3248. "laravel/framework": "^10.0",
  3249. "laravel/pint": "^1.5"
  3250. },
  3251. "type": "library",
  3252. "extra": {
  3253. "laravel": {
  3254. "providers": [
  3255. "Overtrue\\LaravelWeChat\\ServiceProvider"
  3256. ]
  3257. },
  3258. "hooks": {
  3259. "pre-commit": [
  3260. "composer check-style"
  3261. ],
  3262. "pre-push": [
  3263. "composer check-style"
  3264. ]
  3265. }
  3266. },
  3267. "autoload": {
  3268. "psr-4": {
  3269. "Overtrue\\LaravelWeChat\\": "src/"
  3270. }
  3271. },
  3272. "notification-url": "https://packagist.org/downloads/",
  3273. "license": [
  3274. "MIT"
  3275. ],
  3276. "authors": [
  3277. {
  3278. "name": "overtrue",
  3279. "email": "anzhengchao@gmail.com"
  3280. }
  3281. ],
  3282. "description": "微信 SDK for Laravel",
  3283. "keywords": [
  3284. "laravel",
  3285. "sdk",
  3286. "wechat",
  3287. "weixin"
  3288. ],
  3289. "support": {
  3290. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  3291. "source": "https://github.com/overtrue/laravel-wechat/tree/7.3.0"
  3292. },
  3293. "funding": [
  3294. {
  3295. "url": "https://github.com/overtrue",
  3296. "type": "github"
  3297. }
  3298. ],
  3299. "time": "2024-03-13T02:06:36+00:00"
  3300. },
  3301. {
  3302. "name": "overtrue/socialite",
  3303. "version": "4.11.2",
  3304. "source": {
  3305. "type": "git",
  3306. "url": "https://github.com/overtrue/socialite.git",
  3307. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66"
  3308. },
  3309. "dist": {
  3310. "type": "zip",
  3311. "url": "https://api.github.com/repos/overtrue/socialite/zipball/83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3312. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3313. "shasum": ""
  3314. },
  3315. "require": {
  3316. "ext-json": "*",
  3317. "ext-openssl": "*",
  3318. "guzzlehttp/guzzle": "^7.0",
  3319. "php": ">=8.0.2"
  3320. },
  3321. "require-dev": {
  3322. "jetbrains/phpstorm-attributes": "^1.0",
  3323. "laravel/pint": "^1.2",
  3324. "mockery/mockery": "^1.3",
  3325. "phpstan/phpstan": "^1.7",
  3326. "phpunit/phpunit": "^11.3"
  3327. },
  3328. "type": "library",
  3329. "autoload": {
  3330. "files": [
  3331. "src/Contracts/FactoryInterface.php",
  3332. "src/Contracts/UserInterface.php",
  3333. "src/Contracts/ProviderInterface.php"
  3334. ],
  3335. "psr-4": {
  3336. "Overtrue\\Socialite\\": "src/"
  3337. }
  3338. },
  3339. "notification-url": "https://packagist.org/downloads/",
  3340. "license": [
  3341. "MIT"
  3342. ],
  3343. "authors": [
  3344. {
  3345. "name": "overtrue",
  3346. "email": "anzhengchao@gmail.com"
  3347. }
  3348. ],
  3349. "description": "A collection of OAuth 2 packages.",
  3350. "keywords": [
  3351. "Feishu",
  3352. "login",
  3353. "oauth",
  3354. "qcloud",
  3355. "qq",
  3356. "social",
  3357. "wechat",
  3358. "weibo"
  3359. ],
  3360. "support": {
  3361. "issues": "https://github.com/overtrue/socialite/issues",
  3362. "source": "https://github.com/overtrue/socialite/tree/4.11.2"
  3363. },
  3364. "funding": [
  3365. {
  3366. "url": "https://github.com/overtrue",
  3367. "type": "github"
  3368. }
  3369. ],
  3370. "time": "2024-10-08T16:23:14+00:00"
  3371. },
  3372. {
  3373. "name": "phpoption/phpoption",
  3374. "version": "1.9.3",
  3375. "source": {
  3376. "type": "git",
  3377. "url": "https://github.com/schmittjoh/php-option.git",
  3378. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3379. },
  3380. "dist": {
  3381. "type": "zip",
  3382. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3383. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3384. "shasum": ""
  3385. },
  3386. "require": {
  3387. "php": "^7.2.5 || ^8.0"
  3388. },
  3389. "require-dev": {
  3390. "bamarni/composer-bin-plugin": "^1.8.2",
  3391. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3392. },
  3393. "type": "library",
  3394. "extra": {
  3395. "bamarni-bin": {
  3396. "bin-links": true,
  3397. "forward-command": false
  3398. },
  3399. "branch-alias": {
  3400. "dev-master": "1.9-dev"
  3401. }
  3402. },
  3403. "autoload": {
  3404. "psr-4": {
  3405. "PhpOption\\": "src/PhpOption/"
  3406. }
  3407. },
  3408. "notification-url": "https://packagist.org/downloads/",
  3409. "license": [
  3410. "Apache-2.0"
  3411. ],
  3412. "authors": [
  3413. {
  3414. "name": "Johannes M. Schmitt",
  3415. "email": "schmittjoh@gmail.com",
  3416. "homepage": "https://github.com/schmittjoh"
  3417. },
  3418. {
  3419. "name": "Graham Campbell",
  3420. "email": "hello@gjcampbell.co.uk",
  3421. "homepage": "https://github.com/GrahamCampbell"
  3422. }
  3423. ],
  3424. "description": "Option Type for PHP",
  3425. "keywords": [
  3426. "language",
  3427. "option",
  3428. "php",
  3429. "type"
  3430. ],
  3431. "support": {
  3432. "issues": "https://github.com/schmittjoh/php-option/issues",
  3433. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3434. },
  3435. "funding": [
  3436. {
  3437. "url": "https://github.com/GrahamCampbell",
  3438. "type": "github"
  3439. },
  3440. {
  3441. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3442. "type": "tidelift"
  3443. }
  3444. ],
  3445. "time": "2024-07-20T21:41:07+00:00"
  3446. },
  3447. {
  3448. "name": "psr/cache",
  3449. "version": "3.0.0",
  3450. "source": {
  3451. "type": "git",
  3452. "url": "https://github.com/php-fig/cache.git",
  3453. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3454. },
  3455. "dist": {
  3456. "type": "zip",
  3457. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3458. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3459. "shasum": ""
  3460. },
  3461. "require": {
  3462. "php": ">=8.0.0"
  3463. },
  3464. "type": "library",
  3465. "extra": {
  3466. "branch-alias": {
  3467. "dev-master": "1.0.x-dev"
  3468. }
  3469. },
  3470. "autoload": {
  3471. "psr-4": {
  3472. "Psr\\Cache\\": "src/"
  3473. }
  3474. },
  3475. "notification-url": "https://packagist.org/downloads/",
  3476. "license": [
  3477. "MIT"
  3478. ],
  3479. "authors": [
  3480. {
  3481. "name": "PHP-FIG",
  3482. "homepage": "https://www.php-fig.org/"
  3483. }
  3484. ],
  3485. "description": "Common interface for caching libraries",
  3486. "keywords": [
  3487. "cache",
  3488. "psr",
  3489. "psr-6"
  3490. ],
  3491. "support": {
  3492. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3493. },
  3494. "time": "2021-02-03T23:26:27+00:00"
  3495. },
  3496. {
  3497. "name": "psr/clock",
  3498. "version": "1.0.0",
  3499. "source": {
  3500. "type": "git",
  3501. "url": "https://github.com/php-fig/clock.git",
  3502. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3503. },
  3504. "dist": {
  3505. "type": "zip",
  3506. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3507. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3508. "shasum": ""
  3509. },
  3510. "require": {
  3511. "php": "^7.0 || ^8.0"
  3512. },
  3513. "type": "library",
  3514. "autoload": {
  3515. "psr-4": {
  3516. "Psr\\Clock\\": "src/"
  3517. }
  3518. },
  3519. "notification-url": "https://packagist.org/downloads/",
  3520. "license": [
  3521. "MIT"
  3522. ],
  3523. "authors": [
  3524. {
  3525. "name": "PHP-FIG",
  3526. "homepage": "https://www.php-fig.org/"
  3527. }
  3528. ],
  3529. "description": "Common interface for reading the clock.",
  3530. "homepage": "https://github.com/php-fig/clock",
  3531. "keywords": [
  3532. "clock",
  3533. "now",
  3534. "psr",
  3535. "psr-20",
  3536. "time"
  3537. ],
  3538. "support": {
  3539. "issues": "https://github.com/php-fig/clock/issues",
  3540. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3541. },
  3542. "time": "2022-11-25T14:36:26+00:00"
  3543. },
  3544. {
  3545. "name": "psr/container",
  3546. "version": "2.0.2",
  3547. "source": {
  3548. "type": "git",
  3549. "url": "https://github.com/php-fig/container.git",
  3550. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3551. },
  3552. "dist": {
  3553. "type": "zip",
  3554. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3555. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3556. "shasum": ""
  3557. },
  3558. "require": {
  3559. "php": ">=7.4.0"
  3560. },
  3561. "type": "library",
  3562. "extra": {
  3563. "branch-alias": {
  3564. "dev-master": "2.0.x-dev"
  3565. }
  3566. },
  3567. "autoload": {
  3568. "psr-4": {
  3569. "Psr\\Container\\": "src/"
  3570. }
  3571. },
  3572. "notification-url": "https://packagist.org/downloads/",
  3573. "license": [
  3574. "MIT"
  3575. ],
  3576. "authors": [
  3577. {
  3578. "name": "PHP-FIG",
  3579. "homepage": "https://www.php-fig.org/"
  3580. }
  3581. ],
  3582. "description": "Common Container Interface (PHP FIG PSR-11)",
  3583. "homepage": "https://github.com/php-fig/container",
  3584. "keywords": [
  3585. "PSR-11",
  3586. "container",
  3587. "container-interface",
  3588. "container-interop",
  3589. "psr"
  3590. ],
  3591. "support": {
  3592. "issues": "https://github.com/php-fig/container/issues",
  3593. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3594. },
  3595. "time": "2021-11-05T16:47:00+00:00"
  3596. },
  3597. {
  3598. "name": "psr/event-dispatcher",
  3599. "version": "1.0.0",
  3600. "source": {
  3601. "type": "git",
  3602. "url": "https://github.com/php-fig/event-dispatcher.git",
  3603. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3604. },
  3605. "dist": {
  3606. "type": "zip",
  3607. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3608. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3609. "shasum": ""
  3610. },
  3611. "require": {
  3612. "php": ">=7.2.0"
  3613. },
  3614. "type": "library",
  3615. "extra": {
  3616. "branch-alias": {
  3617. "dev-master": "1.0.x-dev"
  3618. }
  3619. },
  3620. "autoload": {
  3621. "psr-4": {
  3622. "Psr\\EventDispatcher\\": "src/"
  3623. }
  3624. },
  3625. "notification-url": "https://packagist.org/downloads/",
  3626. "license": [
  3627. "MIT"
  3628. ],
  3629. "authors": [
  3630. {
  3631. "name": "PHP-FIG",
  3632. "homepage": "http://www.php-fig.org/"
  3633. }
  3634. ],
  3635. "description": "Standard interfaces for event handling.",
  3636. "keywords": [
  3637. "events",
  3638. "psr",
  3639. "psr-14"
  3640. ],
  3641. "support": {
  3642. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3643. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3644. },
  3645. "time": "2019-01-08T18:20:26+00:00"
  3646. },
  3647. {
  3648. "name": "psr/http-client",
  3649. "version": "1.0.3",
  3650. "source": {
  3651. "type": "git",
  3652. "url": "https://github.com/php-fig/http-client.git",
  3653. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3654. },
  3655. "dist": {
  3656. "type": "zip",
  3657. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3658. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3659. "shasum": ""
  3660. },
  3661. "require": {
  3662. "php": "^7.0 || ^8.0",
  3663. "psr/http-message": "^1.0 || ^2.0"
  3664. },
  3665. "type": "library",
  3666. "extra": {
  3667. "branch-alias": {
  3668. "dev-master": "1.0.x-dev"
  3669. }
  3670. },
  3671. "autoload": {
  3672. "psr-4": {
  3673. "Psr\\Http\\Client\\": "src/"
  3674. }
  3675. },
  3676. "notification-url": "https://packagist.org/downloads/",
  3677. "license": [
  3678. "MIT"
  3679. ],
  3680. "authors": [
  3681. {
  3682. "name": "PHP-FIG",
  3683. "homepage": "https://www.php-fig.org/"
  3684. }
  3685. ],
  3686. "description": "Common interface for HTTP clients",
  3687. "homepage": "https://github.com/php-fig/http-client",
  3688. "keywords": [
  3689. "http",
  3690. "http-client",
  3691. "psr",
  3692. "psr-18"
  3693. ],
  3694. "support": {
  3695. "source": "https://github.com/php-fig/http-client"
  3696. },
  3697. "time": "2023-09-23T14:17:50+00:00"
  3698. },
  3699. {
  3700. "name": "psr/http-factory",
  3701. "version": "1.1.0",
  3702. "source": {
  3703. "type": "git",
  3704. "url": "https://github.com/php-fig/http-factory.git",
  3705. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  3706. },
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3710. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3711. "shasum": ""
  3712. },
  3713. "require": {
  3714. "php": ">=7.1",
  3715. "psr/http-message": "^1.0 || ^2.0"
  3716. },
  3717. "type": "library",
  3718. "extra": {
  3719. "branch-alias": {
  3720. "dev-master": "1.0.x-dev"
  3721. }
  3722. },
  3723. "autoload": {
  3724. "psr-4": {
  3725. "Psr\\Http\\Message\\": "src/"
  3726. }
  3727. },
  3728. "notification-url": "https://packagist.org/downloads/",
  3729. "license": [
  3730. "MIT"
  3731. ],
  3732. "authors": [
  3733. {
  3734. "name": "PHP-FIG",
  3735. "homepage": "https://www.php-fig.org/"
  3736. }
  3737. ],
  3738. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  3739. "keywords": [
  3740. "factory",
  3741. "http",
  3742. "message",
  3743. "psr",
  3744. "psr-17",
  3745. "psr-7",
  3746. "request",
  3747. "response"
  3748. ],
  3749. "support": {
  3750. "source": "https://github.com/php-fig/http-factory"
  3751. },
  3752. "time": "2024-04-15T12:06:14+00:00"
  3753. },
  3754. {
  3755. "name": "psr/http-message",
  3756. "version": "2.0",
  3757. "source": {
  3758. "type": "git",
  3759. "url": "https://github.com/php-fig/http-message.git",
  3760. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  3761. },
  3762. "dist": {
  3763. "type": "zip",
  3764. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3765. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3766. "shasum": ""
  3767. },
  3768. "require": {
  3769. "php": "^7.2 || ^8.0"
  3770. },
  3771. "type": "library",
  3772. "extra": {
  3773. "branch-alias": {
  3774. "dev-master": "2.0.x-dev"
  3775. }
  3776. },
  3777. "autoload": {
  3778. "psr-4": {
  3779. "Psr\\Http\\Message\\": "src/"
  3780. }
  3781. },
  3782. "notification-url": "https://packagist.org/downloads/",
  3783. "license": [
  3784. "MIT"
  3785. ],
  3786. "authors": [
  3787. {
  3788. "name": "PHP-FIG",
  3789. "homepage": "https://www.php-fig.org/"
  3790. }
  3791. ],
  3792. "description": "Common interface for HTTP messages",
  3793. "homepage": "https://github.com/php-fig/http-message",
  3794. "keywords": [
  3795. "http",
  3796. "http-message",
  3797. "psr",
  3798. "psr-7",
  3799. "request",
  3800. "response"
  3801. ],
  3802. "support": {
  3803. "source": "https://github.com/php-fig/http-message/tree/2.0"
  3804. },
  3805. "time": "2023-04-04T09:54:51+00:00"
  3806. },
  3807. {
  3808. "name": "psr/log",
  3809. "version": "3.0.2",
  3810. "source": {
  3811. "type": "git",
  3812. "url": "https://github.com/php-fig/log.git",
  3813. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  3814. },
  3815. "dist": {
  3816. "type": "zip",
  3817. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3818. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3819. "shasum": ""
  3820. },
  3821. "require": {
  3822. "php": ">=8.0.0"
  3823. },
  3824. "type": "library",
  3825. "extra": {
  3826. "branch-alias": {
  3827. "dev-master": "3.x-dev"
  3828. }
  3829. },
  3830. "autoload": {
  3831. "psr-4": {
  3832. "Psr\\Log\\": "src"
  3833. }
  3834. },
  3835. "notification-url": "https://packagist.org/downloads/",
  3836. "license": [
  3837. "MIT"
  3838. ],
  3839. "authors": [
  3840. {
  3841. "name": "PHP-FIG",
  3842. "homepage": "https://www.php-fig.org/"
  3843. }
  3844. ],
  3845. "description": "Common interface for logging libraries",
  3846. "homepage": "https://github.com/php-fig/log",
  3847. "keywords": [
  3848. "log",
  3849. "psr",
  3850. "psr-3"
  3851. ],
  3852. "support": {
  3853. "source": "https://github.com/php-fig/log/tree/3.0.2"
  3854. },
  3855. "time": "2024-09-11T13:17:53+00:00"
  3856. },
  3857. {
  3858. "name": "psr/simple-cache",
  3859. "version": "3.0.0",
  3860. "source": {
  3861. "type": "git",
  3862. "url": "https://github.com/php-fig/simple-cache.git",
  3863. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  3864. },
  3865. "dist": {
  3866. "type": "zip",
  3867. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3868. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3869. "shasum": ""
  3870. },
  3871. "require": {
  3872. "php": ">=8.0.0"
  3873. },
  3874. "type": "library",
  3875. "extra": {
  3876. "branch-alias": {
  3877. "dev-master": "3.0.x-dev"
  3878. }
  3879. },
  3880. "autoload": {
  3881. "psr-4": {
  3882. "Psr\\SimpleCache\\": "src/"
  3883. }
  3884. },
  3885. "notification-url": "https://packagist.org/downloads/",
  3886. "license": [
  3887. "MIT"
  3888. ],
  3889. "authors": [
  3890. {
  3891. "name": "PHP-FIG",
  3892. "homepage": "https://www.php-fig.org/"
  3893. }
  3894. ],
  3895. "description": "Common interfaces for simple caching",
  3896. "keywords": [
  3897. "cache",
  3898. "caching",
  3899. "psr",
  3900. "psr-16",
  3901. "simple-cache"
  3902. ],
  3903. "support": {
  3904. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3905. },
  3906. "time": "2021-10-29T13:26:27+00:00"
  3907. },
  3908. {
  3909. "name": "psy/psysh",
  3910. "version": "v0.12.4",
  3911. "source": {
  3912. "type": "git",
  3913. "url": "https://github.com/bobthecow/psysh.git",
  3914. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  3915. },
  3916. "dist": {
  3917. "type": "zip",
  3918. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  3919. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  3920. "shasum": ""
  3921. },
  3922. "require": {
  3923. "ext-json": "*",
  3924. "ext-tokenizer": "*",
  3925. "nikic/php-parser": "^5.0 || ^4.0",
  3926. "php": "^8.0 || ^7.4",
  3927. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  3928. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  3929. },
  3930. "conflict": {
  3931. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  3932. },
  3933. "require-dev": {
  3934. "bamarni/composer-bin-plugin": "^1.2"
  3935. },
  3936. "suggest": {
  3937. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3938. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3939. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  3940. },
  3941. "bin": [
  3942. "bin/psysh"
  3943. ],
  3944. "type": "library",
  3945. "extra": {
  3946. "branch-alias": {
  3947. "dev-main": "0.12.x-dev"
  3948. },
  3949. "bamarni-bin": {
  3950. "bin-links": false,
  3951. "forward-command": false
  3952. }
  3953. },
  3954. "autoload": {
  3955. "files": [
  3956. "src/functions.php"
  3957. ],
  3958. "psr-4": {
  3959. "Psy\\": "src/"
  3960. }
  3961. },
  3962. "notification-url": "https://packagist.org/downloads/",
  3963. "license": [
  3964. "MIT"
  3965. ],
  3966. "authors": [
  3967. {
  3968. "name": "Justin Hileman",
  3969. "email": "justin@justinhileman.info",
  3970. "homepage": "http://justinhileman.com"
  3971. }
  3972. ],
  3973. "description": "An interactive shell for modern PHP.",
  3974. "homepage": "http://psysh.org",
  3975. "keywords": [
  3976. "REPL",
  3977. "console",
  3978. "interactive",
  3979. "shell"
  3980. ],
  3981. "support": {
  3982. "issues": "https://github.com/bobthecow/psysh/issues",
  3983. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  3984. },
  3985. "time": "2024-06-10T01:18:23+00:00"
  3986. },
  3987. {
  3988. "name": "ralouphie/getallheaders",
  3989. "version": "3.0.3",
  3990. "source": {
  3991. "type": "git",
  3992. "url": "https://github.com/ralouphie/getallheaders.git",
  3993. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3994. },
  3995. "dist": {
  3996. "type": "zip",
  3997. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3998. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3999. "shasum": ""
  4000. },
  4001. "require": {
  4002. "php": ">=5.6"
  4003. },
  4004. "require-dev": {
  4005. "php-coveralls/php-coveralls": "^2.1",
  4006. "phpunit/phpunit": "^5 || ^6.5"
  4007. },
  4008. "type": "library",
  4009. "autoload": {
  4010. "files": [
  4011. "src/getallheaders.php"
  4012. ]
  4013. },
  4014. "notification-url": "https://packagist.org/downloads/",
  4015. "license": [
  4016. "MIT"
  4017. ],
  4018. "authors": [
  4019. {
  4020. "name": "Ralph Khattar",
  4021. "email": "ralph.khattar@gmail.com"
  4022. }
  4023. ],
  4024. "description": "A polyfill for getallheaders.",
  4025. "support": {
  4026. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4027. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4028. },
  4029. "time": "2019-03-08T08:55:37+00:00"
  4030. },
  4031. {
  4032. "name": "ramsey/collection",
  4033. "version": "2.0.0",
  4034. "source": {
  4035. "type": "git",
  4036. "url": "https://github.com/ramsey/collection.git",
  4037. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4038. },
  4039. "dist": {
  4040. "type": "zip",
  4041. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4042. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4043. "shasum": ""
  4044. },
  4045. "require": {
  4046. "php": "^8.1"
  4047. },
  4048. "require-dev": {
  4049. "captainhook/plugin-composer": "^5.3",
  4050. "ergebnis/composer-normalize": "^2.28.3",
  4051. "fakerphp/faker": "^1.21",
  4052. "hamcrest/hamcrest-php": "^2.0",
  4053. "jangregor/phpstan-prophecy": "^1.0",
  4054. "mockery/mockery": "^1.5",
  4055. "php-parallel-lint/php-console-highlighter": "^1.0",
  4056. "php-parallel-lint/php-parallel-lint": "^1.3",
  4057. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4058. "phpspec/prophecy-phpunit": "^2.0",
  4059. "phpstan/extension-installer": "^1.2",
  4060. "phpstan/phpstan": "^1.9",
  4061. "phpstan/phpstan-mockery": "^1.1",
  4062. "phpstan/phpstan-phpunit": "^1.3",
  4063. "phpunit/phpunit": "^9.5",
  4064. "psalm/plugin-mockery": "^1.1",
  4065. "psalm/plugin-phpunit": "^0.18.4",
  4066. "ramsey/coding-standard": "^2.0.3",
  4067. "ramsey/conventional-commits": "^1.3",
  4068. "vimeo/psalm": "^5.4"
  4069. },
  4070. "type": "library",
  4071. "extra": {
  4072. "captainhook": {
  4073. "force-install": true
  4074. },
  4075. "ramsey/conventional-commits": {
  4076. "configFile": "conventional-commits.json"
  4077. }
  4078. },
  4079. "autoload": {
  4080. "psr-4": {
  4081. "Ramsey\\Collection\\": "src/"
  4082. }
  4083. },
  4084. "notification-url": "https://packagist.org/downloads/",
  4085. "license": [
  4086. "MIT"
  4087. ],
  4088. "authors": [
  4089. {
  4090. "name": "Ben Ramsey",
  4091. "email": "ben@benramsey.com",
  4092. "homepage": "https://benramsey.com"
  4093. }
  4094. ],
  4095. "description": "A PHP library for representing and manipulating collections.",
  4096. "keywords": [
  4097. "array",
  4098. "collection",
  4099. "hash",
  4100. "map",
  4101. "queue",
  4102. "set"
  4103. ],
  4104. "support": {
  4105. "issues": "https://github.com/ramsey/collection/issues",
  4106. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4107. },
  4108. "funding": [
  4109. {
  4110. "url": "https://github.com/ramsey",
  4111. "type": "github"
  4112. },
  4113. {
  4114. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4115. "type": "tidelift"
  4116. }
  4117. ],
  4118. "time": "2022-12-31T21:50:55+00:00"
  4119. },
  4120. {
  4121. "name": "ramsey/uuid",
  4122. "version": "4.7.6",
  4123. "source": {
  4124. "type": "git",
  4125. "url": "https://github.com/ramsey/uuid.git",
  4126. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  4127. },
  4128. "dist": {
  4129. "type": "zip",
  4130. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  4131. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  4132. "shasum": ""
  4133. },
  4134. "require": {
  4135. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  4136. "ext-json": "*",
  4137. "php": "^8.0",
  4138. "ramsey/collection": "^1.2 || ^2.0"
  4139. },
  4140. "replace": {
  4141. "rhumsaa/uuid": "self.version"
  4142. },
  4143. "require-dev": {
  4144. "captainhook/captainhook": "^5.10",
  4145. "captainhook/plugin-composer": "^5.3",
  4146. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4147. "doctrine/annotations": "^1.8",
  4148. "ergebnis/composer-normalize": "^2.15",
  4149. "mockery/mockery": "^1.3",
  4150. "paragonie/random-lib": "^2",
  4151. "php-mock/php-mock": "^2.2",
  4152. "php-mock/php-mock-mockery": "^1.3",
  4153. "php-parallel-lint/php-parallel-lint": "^1.1",
  4154. "phpbench/phpbench": "^1.0",
  4155. "phpstan/extension-installer": "^1.1",
  4156. "phpstan/phpstan": "^1.8",
  4157. "phpstan/phpstan-mockery": "^1.1",
  4158. "phpstan/phpstan-phpunit": "^1.1",
  4159. "phpunit/phpunit": "^8.5 || ^9",
  4160. "ramsey/composer-repl": "^1.4",
  4161. "slevomat/coding-standard": "^8.4",
  4162. "squizlabs/php_codesniffer": "^3.5",
  4163. "vimeo/psalm": "^4.9"
  4164. },
  4165. "suggest": {
  4166. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4167. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4168. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4169. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4170. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4171. },
  4172. "type": "library",
  4173. "extra": {
  4174. "captainhook": {
  4175. "force-install": true
  4176. }
  4177. },
  4178. "autoload": {
  4179. "files": [
  4180. "src/functions.php"
  4181. ],
  4182. "psr-4": {
  4183. "Ramsey\\Uuid\\": "src/"
  4184. }
  4185. },
  4186. "notification-url": "https://packagist.org/downloads/",
  4187. "license": [
  4188. "MIT"
  4189. ],
  4190. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4191. "keywords": [
  4192. "guid",
  4193. "identifier",
  4194. "uuid"
  4195. ],
  4196. "support": {
  4197. "issues": "https://github.com/ramsey/uuid/issues",
  4198. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  4199. },
  4200. "funding": [
  4201. {
  4202. "url": "https://github.com/ramsey",
  4203. "type": "github"
  4204. },
  4205. {
  4206. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4207. "type": "tidelift"
  4208. }
  4209. ],
  4210. "time": "2024-04-27T21:32:50+00:00"
  4211. },
  4212. {
  4213. "name": "rap2hpoutre/laravel-log-viewer",
  4214. "version": "v2.4.0",
  4215. "source": {
  4216. "type": "git",
  4217. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4218. "reference": "49c52ae197b3d4f7f9e43d328628edc4bc529afa"
  4219. },
  4220. "dist": {
  4221. "type": "zip",
  4222. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/49c52ae197b3d4f7f9e43d328628edc4bc529afa",
  4223. "reference": "49c52ae197b3d4f7f9e43d328628edc4bc529afa",
  4224. "shasum": ""
  4225. },
  4226. "require": {
  4227. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  4228. "php": "^7.2|^8.0"
  4229. },
  4230. "require-dev": {
  4231. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  4232. "phpunit/phpunit": "^7||^8.4|^9.3.3|^10.1"
  4233. },
  4234. "type": "laravel-package",
  4235. "extra": {
  4236. "laravel": {
  4237. "providers": [
  4238. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4239. ]
  4240. }
  4241. },
  4242. "autoload": {
  4243. "psr-0": {
  4244. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4245. },
  4246. "classmap": [
  4247. "src/controllers"
  4248. ]
  4249. },
  4250. "notification-url": "https://packagist.org/downloads/",
  4251. "license": [
  4252. "MIT"
  4253. ],
  4254. "authors": [
  4255. {
  4256. "name": "rap2hpoutre",
  4257. "email": "raphaelht@gmail.com"
  4258. }
  4259. ],
  4260. "description": "A Laravel log reader",
  4261. "keywords": [
  4262. "laravel",
  4263. "log",
  4264. "log-reader",
  4265. "log-viewer",
  4266. "logging",
  4267. "lumen"
  4268. ],
  4269. "support": {
  4270. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4271. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/v2.4.0"
  4272. },
  4273. "time": "2024-03-20T08:49:53+00:00"
  4274. },
  4275. {
  4276. "name": "shalvah/clara",
  4277. "version": "3.2.0",
  4278. "source": {
  4279. "type": "git",
  4280. "url": "https://github.com/shalvah/clara.git",
  4281. "reference": "cdbb5737cbdd101756d97dd2279a979a1af7710b"
  4282. },
  4283. "dist": {
  4284. "type": "zip",
  4285. "url": "https://api.github.com/repos/shalvah/clara/zipball/cdbb5737cbdd101756d97dd2279a979a1af7710b",
  4286. "reference": "cdbb5737cbdd101756d97dd2279a979a1af7710b",
  4287. "shasum": ""
  4288. },
  4289. "require": {
  4290. "php": ">=7.4",
  4291. "symfony/console": "^4.0|^5.0|^6.0|^7.0"
  4292. },
  4293. "require-dev": {
  4294. "eloquent/phony-phpunit": "^7.0",
  4295. "phpunit/phpunit": "^9.1"
  4296. },
  4297. "type": "library",
  4298. "autoload": {
  4299. "files": [
  4300. "helpers.php"
  4301. ],
  4302. "psr-4": {
  4303. "Shalvah\\Clara\\": "src/"
  4304. }
  4305. },
  4306. "notification-url": "https://packagist.org/downloads/",
  4307. "license": [
  4308. "MIT"
  4309. ],
  4310. "description": "🔊 Simple, pretty, testable console output for CLI apps.",
  4311. "keywords": [
  4312. "cli",
  4313. "log",
  4314. "logging"
  4315. ],
  4316. "support": {
  4317. "issues": "https://github.com/shalvah/clara/issues",
  4318. "source": "https://github.com/shalvah/clara/tree/3.2.0"
  4319. },
  4320. "time": "2024-02-27T20:30:59+00:00"
  4321. },
  4322. {
  4323. "name": "shalvah/upgrader",
  4324. "version": "0.6.0",
  4325. "source": {
  4326. "type": "git",
  4327. "url": "https://github.com/shalvah/upgrader.git",
  4328. "reference": "d95ed17fe9f5e1ee7d47ad835595f1af080a867f"
  4329. },
  4330. "dist": {
  4331. "type": "zip",
  4332. "url": "https://api.github.com/repos/shalvah/upgrader/zipball/d95ed17fe9f5e1ee7d47ad835595f1af080a867f",
  4333. "reference": "d95ed17fe9f5e1ee7d47ad835595f1af080a867f",
  4334. "shasum": ""
  4335. },
  4336. "require": {
  4337. "illuminate/support": ">=8.0",
  4338. "nikic/php-parser": "^5.0",
  4339. "php": ">=8.0"
  4340. },
  4341. "require-dev": {
  4342. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  4343. "pestphp/pest": "^1.21",
  4344. "phpstan/phpstan": "^1.0",
  4345. "spatie/ray": "^1.33"
  4346. },
  4347. "type": "library",
  4348. "autoload": {
  4349. "psr-4": {
  4350. "Shalvah\\Upgrader\\": "src/"
  4351. }
  4352. },
  4353. "notification-url": "https://packagist.org/downloads/",
  4354. "license": [
  4355. "MIT"
  4356. ],
  4357. "authors": [
  4358. {
  4359. "name": "Shalvah",
  4360. "email": "hello@shalvah.me"
  4361. }
  4362. ],
  4363. "description": "Create automatic upgrades for your package.",
  4364. "homepage": "http://github.com/shalvah/upgrader",
  4365. "keywords": [
  4366. "upgrade"
  4367. ],
  4368. "support": {
  4369. "issues": "https://github.com/shalvah/upgrader/issues",
  4370. "source": "https://github.com/shalvah/upgrader/tree/0.6.0"
  4371. },
  4372. "funding": [
  4373. {
  4374. "url": "https://patreon.com/shalvah",
  4375. "type": "patreon"
  4376. }
  4377. ],
  4378. "time": "2024-02-20T11:51:46+00:00"
  4379. },
  4380. {
  4381. "name": "simplesoftwareio/simple-qrcode",
  4382. "version": "4.2.0",
  4383. "source": {
  4384. "type": "git",
  4385. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  4386. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537"
  4387. },
  4388. "dist": {
  4389. "type": "zip",
  4390. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/916db7948ca6772d54bb617259c768c9cdc8d537",
  4391. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537",
  4392. "shasum": ""
  4393. },
  4394. "require": {
  4395. "bacon/bacon-qr-code": "^2.0",
  4396. "ext-gd": "*",
  4397. "php": ">=7.2|^8.0"
  4398. },
  4399. "require-dev": {
  4400. "mockery/mockery": "~1",
  4401. "phpunit/phpunit": "~9"
  4402. },
  4403. "suggest": {
  4404. "ext-imagick": "Allows the generation of PNG QrCodes.",
  4405. "illuminate/support": "Allows for use within Laravel."
  4406. },
  4407. "type": "library",
  4408. "extra": {
  4409. "laravel": {
  4410. "providers": [
  4411. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  4412. ],
  4413. "aliases": {
  4414. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  4415. }
  4416. }
  4417. },
  4418. "autoload": {
  4419. "psr-4": {
  4420. "SimpleSoftwareIO\\QrCode\\": "src"
  4421. }
  4422. },
  4423. "notification-url": "https://packagist.org/downloads/",
  4424. "license": [
  4425. "MIT"
  4426. ],
  4427. "authors": [
  4428. {
  4429. "name": "Simple Software LLC",
  4430. "email": "support@simplesoftware.io"
  4431. }
  4432. ],
  4433. "description": "Simple QrCode is a QR code generator made for Laravel.",
  4434. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  4435. "keywords": [
  4436. "Simple",
  4437. "generator",
  4438. "laravel",
  4439. "qrcode",
  4440. "wrapper"
  4441. ],
  4442. "support": {
  4443. "issues": "https://github.com/SimpleSoftwareIO/simple-qrcode/issues",
  4444. "source": "https://github.com/SimpleSoftwareIO/simple-qrcode/tree/4.2.0"
  4445. },
  4446. "time": "2021-02-08T20:43:55+00:00"
  4447. },
  4448. {
  4449. "name": "slowlyo/laravel-support",
  4450. "version": "v0.0.6",
  4451. "source": {
  4452. "type": "git",
  4453. "url": "https://github.com/slowlyo/laravel-support.git",
  4454. "reference": "71cd69f7ffd6eec829afb970733b54c8d860b29f"
  4455. },
  4456. "dist": {
  4457. "type": "zip",
  4458. "url": "https://api.github.com/repos/slowlyo/laravel-support/zipball/71cd69f7ffd6eec829afb970733b54c8d860b29f",
  4459. "reference": "71cd69f7ffd6eec829afb970733b54c8d860b29f",
  4460. "shasum": ""
  4461. },
  4462. "require": {
  4463. "ext-bcmath": "*",
  4464. "ext-json": "*",
  4465. "laravel/framework": ">=8",
  4466. "php": ">=7.4.0"
  4467. },
  4468. "type": "library",
  4469. "extra": {
  4470. "laravel": {
  4471. "providers": [
  4472. "Slowlyo\\Support\\SupportServiceProvider"
  4473. ]
  4474. }
  4475. },
  4476. "autoload": {
  4477. "files": [
  4478. "./src/functions.php"
  4479. ],
  4480. "psr-4": {
  4481. "Slowlyo\\Support\\": "src/"
  4482. }
  4483. },
  4484. "notification-url": "https://packagist.org/downloads/",
  4485. "license": [
  4486. "MIT"
  4487. ],
  4488. "authors": [
  4489. {
  4490. "name": "Slowlyo",
  4491. "email": "slowlyo_email@qq.com"
  4492. }
  4493. ],
  4494. "description": "php/laravel部分代码封装",
  4495. "support": {
  4496. "issues": "https://github.com/slowlyo/laravel-support/issues",
  4497. "source": "https://github.com/slowlyo/laravel-support/tree/v0.0.6"
  4498. },
  4499. "time": "2024-11-21T07:33:06+00:00"
  4500. },
  4501. {
  4502. "name": "slowlyo/owl-admin",
  4503. "version": "v4.0.6",
  4504. "source": {
  4505. "type": "git",
  4506. "url": "https://github.com/slowlyo/owl-admin.git",
  4507. "reference": "f9e20279301ac9255b54e6398397662ecb379460"
  4508. },
  4509. "dist": {
  4510. "type": "zip",
  4511. "url": "https://api.github.com/repos/slowlyo/owl-admin/zipball/f9e20279301ac9255b54e6398397662ecb379460",
  4512. "reference": "f9e20279301ac9255b54e6398397662ecb379460",
  4513. "shasum": ""
  4514. },
  4515. "require": {
  4516. "ext-gd": "*",
  4517. "ext-zip": "*",
  4518. "illuminate/support": ">=11",
  4519. "php": ">=8.2",
  4520. "slowlyo/laravel-support": "*"
  4521. },
  4522. "type": "library",
  4523. "extra": {
  4524. "laravel": {
  4525. "providers": [
  4526. "Slowlyo\\OwlAdmin\\AdminServiceProvider"
  4527. ],
  4528. "aliases": {
  4529. "OwlAdmin": "Slowlyo\\OwlAdmin\\Facades\\OwlAdmin"
  4530. }
  4531. }
  4532. },
  4533. "autoload": {
  4534. "files": [
  4535. "src/Support/helpers.php"
  4536. ],
  4537. "psr-4": {
  4538. "Slowlyo\\OwlAdmin\\": "src/"
  4539. }
  4540. },
  4541. "notification-url": "https://packagist.org/downloads/",
  4542. "license": [
  4543. "MIT"
  4544. ],
  4545. "authors": [
  4546. {
  4547. "name": "slowlyo",
  4548. "email": "slowlyo_email@qq.com",
  4549. "homepage": "https://github.com/slowlyo"
  4550. }
  4551. ],
  4552. "description": "基于 laravel、amis 开发的后台框架~",
  4553. "homepage": "https://github.com/slowlyo/owl-admin",
  4554. "keywords": [
  4555. "admin",
  4556. "amis",
  4557. "laravel",
  4558. "owl-admin"
  4559. ],
  4560. "support": {
  4561. "email": "slowlyo_email@qq.com",
  4562. "forum": "https://github.com/orgs/owl-admin/discussions",
  4563. "issues": "https://github.com/Slowlyo/owl-admin/issues",
  4564. "source": "https://github.com/slowlyo/owl-admin/tree/v4.0.6",
  4565. "wiki": "https://doc.owladmin.com/"
  4566. },
  4567. "time": "2024-11-16T05:34:20+00:00"
  4568. },
  4569. {
  4570. "name": "slowlyo/owl-dict",
  4571. "version": "v1.3.2",
  4572. "source": {
  4573. "type": "git",
  4574. "url": "https://github.com/owl-admin/dict.git",
  4575. "reference": "8754d9258a11175ec17f30e698b6489abade11ef"
  4576. },
  4577. "dist": {
  4578. "type": "zip",
  4579. "url": "https://api.github.com/repos/owl-admin/dict/zipball/8754d9258a11175ec17f30e698b6489abade11ef",
  4580. "reference": "8754d9258a11175ec17f30e698b6489abade11ef",
  4581. "shasum": ""
  4582. },
  4583. "require": {
  4584. "php": ">=8.0",
  4585. "slowlyo/owl-admin": "*"
  4586. },
  4587. "type": "library",
  4588. "extra": {
  4589. "owl-admin": "Slowlyo\\OwlDict\\OwlDictServiceProvider",
  4590. "laravel": {
  4591. "providers": [
  4592. "Slowlyo\\OwlDict\\OwlDictServiceProvider"
  4593. ]
  4594. }
  4595. },
  4596. "autoload": {
  4597. "files": [
  4598. "src/helpers.php"
  4599. ],
  4600. "psr-4": {
  4601. "Slowlyo\\OwlDict\\": "src/"
  4602. }
  4603. },
  4604. "notification-url": "https://packagist.org/downloads/",
  4605. "license": [
  4606. "MIT"
  4607. ],
  4608. "authors": [
  4609. {
  4610. "name": "slowlyo",
  4611. "email": "slowlyo_email@qq.com"
  4612. }
  4613. ],
  4614. "description": "OwlAdmin 数据字典扩展",
  4615. "homepage": "https://gitee.com/slowlyo/owl-dict",
  4616. "keywords": [
  4617. "Dict",
  4618. "extension",
  4619. "owl-admin"
  4620. ],
  4621. "support": {
  4622. "issues": "https://github.com/owl-admin/dict/issues",
  4623. "source": "https://github.com/owl-admin/dict/tree/v1.3.2"
  4624. },
  4625. "time": "2024-07-08T03:05:14+00:00"
  4626. },
  4627. {
  4628. "name": "slowlyo/owl-icon-cache",
  4629. "version": "v0.1.0",
  4630. "source": {
  4631. "type": "git",
  4632. "url": "https://github.com/slowlyo/owl-icon-cache.git",
  4633. "reference": "696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28"
  4634. },
  4635. "dist": {
  4636. "type": "zip",
  4637. "url": "https://api.github.com/repos/slowlyo/owl-icon-cache/zipball/696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28",
  4638. "reference": "696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28",
  4639. "shasum": ""
  4640. },
  4641. "require": {
  4642. "iconify/json": "*",
  4643. "php": ">=8.0",
  4644. "slowlyo/owl-admin": "*"
  4645. },
  4646. "type": "library",
  4647. "extra": {
  4648. "owl-admin": "Slowlyo\\OwlIconCache\\OwlIconCacheServiceProvider",
  4649. "laravel": {
  4650. "providers": [
  4651. "Slowlyo\\OwlIconCache\\OwlIconCacheServiceProvider"
  4652. ]
  4653. }
  4654. },
  4655. "autoload": {
  4656. "psr-4": {
  4657. "Slowlyo\\OwlIconCache\\": "src/"
  4658. }
  4659. },
  4660. "notification-url": "https://packagist.org/downloads/",
  4661. "license": [
  4662. "MIT"
  4663. ],
  4664. "authors": [
  4665. {
  4666. "name": "slowlyo",
  4667. "email": "slowlyo_email@qq.com"
  4668. }
  4669. ],
  4670. "description": "让 iconify 图标可以离线使用",
  4671. "homepage": "https://github.com/slowlyo/owl-icon-cache",
  4672. "keywords": [
  4673. "extension",
  4674. "icon",
  4675. "owl-admin"
  4676. ],
  4677. "support": {
  4678. "issues": "https://github.com/slowlyo/owl-icon-cache/issues",
  4679. "source": "https://github.com/slowlyo/owl-icon-cache/tree/v0.1.0"
  4680. },
  4681. "time": "2024-05-01T08:30:19+00:00"
  4682. },
  4683. {
  4684. "name": "slowlyo/owl-log-viewer",
  4685. "version": "1.0.0",
  4686. "source": {
  4687. "type": "git",
  4688. "url": "https://github.com/owl-admin/log-viewer.git",
  4689. "reference": "d249c011dd7febe2f7be5bf800b42ed325b02d40"
  4690. },
  4691. "dist": {
  4692. "type": "zip",
  4693. "url": "https://api.github.com/repos/owl-admin/log-viewer/zipball/d249c011dd7febe2f7be5bf800b42ed325b02d40",
  4694. "reference": "d249c011dd7febe2f7be5bf800b42ed325b02d40",
  4695. "shasum": ""
  4696. },
  4697. "require": {
  4698. "php": ">=8.0",
  4699. "slowlyo/owl-admin": "*"
  4700. },
  4701. "type": "library",
  4702. "extra": {
  4703. "owl-admin": "Slowlyo\\OwlLogViewer\\OwlLogViewerServiceProvider",
  4704. "laravel": {
  4705. "providers": [
  4706. "Slowlyo\\OwlLogViewer\\OwlLogViewerServiceProvider"
  4707. ]
  4708. }
  4709. },
  4710. "autoload": {
  4711. "psr-4": {
  4712. "Slowlyo\\OwlLogViewer\\": "src/"
  4713. }
  4714. },
  4715. "notification-url": "https://packagist.org/downloads/",
  4716. "license": [
  4717. "MIT"
  4718. ],
  4719. "authors": [
  4720. {
  4721. "name": "slowlyo",
  4722. "email": "slowlyo_email@qq.com"
  4723. }
  4724. ],
  4725. "description": "更方便的查看laravel日志",
  4726. "homepage": "https://github.com/slowlyo/owl-log-viewer",
  4727. "keywords": [
  4728. "extension",
  4729. "owl-admin"
  4730. ],
  4731. "support": {
  4732. "issues": "https://github.com/owl-admin/log-viewer/issues",
  4733. "source": "https://github.com/owl-admin/log-viewer/tree/v1.0.0"
  4734. },
  4735. "time": "2024-03-10T13:57:59+00:00"
  4736. },
  4737. {
  4738. "name": "slowlyo/owl-module-notice",
  4739. "version": "v1.1.3",
  4740. "source": {
  4741. "type": "git",
  4742. "url": "https://gitee.com/slowlyo/owl-module-notice",
  4743. "reference": "8410e77a08cee435055f8d8cf6f57cfac5b86e3f"
  4744. },
  4745. "require": {
  4746. "php": ">=8.0",
  4747. "slowlyo/owl-admin": "*"
  4748. },
  4749. "type": "library",
  4750. "extra": {
  4751. "owl-admin": "Slowlyo\\Notice\\NoticeServiceProvider",
  4752. "laravel": {
  4753. "providers": [
  4754. "Slowlyo\\Notice\\NoticeServiceProvider"
  4755. ]
  4756. }
  4757. },
  4758. "autoload": {
  4759. "psr-4": {
  4760. "Slowlyo\\Notice\\": "src/"
  4761. }
  4762. },
  4763. "notification-url": "https://packagist.org/downloads/",
  4764. "license": [
  4765. "MIT"
  4766. ],
  4767. "authors": [
  4768. {
  4769. "name": "slowlyo",
  4770. "email": "slowlyo_email@qq.com"
  4771. }
  4772. ],
  4773. "description": "OwlAdmin 扩展: 后台功能-通知公告管理",
  4774. "homepage": "https://gitee.com/slowlyo/notice",
  4775. "keywords": [
  4776. "extension",
  4777. "notice",
  4778. "owl-admin"
  4779. ],
  4780. "time": "2023-04-10T06:25:51+00:00"
  4781. },
  4782. {
  4783. "name": "slowlyo/owl-operation-log",
  4784. "version": "v0.2.3",
  4785. "source": {
  4786. "type": "git",
  4787. "url": "https://github.com/slowlyo/owl-operation-log.git",
  4788. "reference": "fe03f85e940e069ebc024f8c257da2c44939c78d"
  4789. },
  4790. "dist": {
  4791. "type": "zip",
  4792. "url": "https://api.github.com/repos/slowlyo/owl-operation-log/zipball/fe03f85e940e069ebc024f8c257da2c44939c78d",
  4793. "reference": "fe03f85e940e069ebc024f8c257da2c44939c78d",
  4794. "shasum": ""
  4795. },
  4796. "require": {
  4797. "php": ">=8.0",
  4798. "slowlyo/owl-admin": "*"
  4799. },
  4800. "type": "library",
  4801. "extra": {
  4802. "owl-admin": "Slowlyo\\OwlOperationLog\\OwlOperationLogServiceProvider",
  4803. "laravel": {
  4804. "providers": [
  4805. "Slowlyo\\OwlOperationLog\\OwlOperationLogServiceProvider"
  4806. ]
  4807. }
  4808. },
  4809. "autoload": {
  4810. "psr-4": {
  4811. "Slowlyo\\OwlOperationLog\\": "src/"
  4812. }
  4813. },
  4814. "notification-url": "https://packagist.org/downloads/",
  4815. "license": [
  4816. "MIT"
  4817. ],
  4818. "authors": [
  4819. {
  4820. "name": "slowlyo",
  4821. "email": "slowlyo_email@qq.com"
  4822. }
  4823. ],
  4824. "description": "OwlAdmin 扩展包,用于记录用户操作日志",
  4825. "homepage": "https://github.com/slowlyo/owl-operation-log",
  4826. "keywords": [
  4827. "extension",
  4828. "owl-admin"
  4829. ],
  4830. "support": {
  4831. "issues": "https://github.com/slowlyo/owl-operation-log/issues",
  4832. "source": "https://github.com/slowlyo/owl-operation-log/tree/v0.2.3"
  4833. },
  4834. "time": "2024-03-28T06:49:24+00:00"
  4835. },
  4836. {
  4837. "name": "slowlyo/owl-system-backup",
  4838. "version": "v0.3.1",
  4839. "source": {
  4840. "type": "git",
  4841. "url": "https://github.com/owl-admin/system-backup.git",
  4842. "reference": "3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3"
  4843. },
  4844. "dist": {
  4845. "type": "zip",
  4846. "url": "https://api.github.com/repos/owl-admin/system-backup/zipball/3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3",
  4847. "reference": "3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3",
  4848. "shasum": ""
  4849. },
  4850. "require": {
  4851. "php": ">=8.0",
  4852. "slowlyo/owl-admin": "*"
  4853. },
  4854. "type": "library",
  4855. "extra": {
  4856. "owl-admin": "Slowlyo\\OwlSystemBackup\\OwlSystemBackupServiceProvider",
  4857. "laravel": {
  4858. "providers": [
  4859. "Slowlyo\\OwlSystemBackup\\OwlSystemBackupServiceProvider"
  4860. ]
  4861. }
  4862. },
  4863. "autoload": {
  4864. "psr-4": {
  4865. "Slowlyo\\OwlSystemBackup\\": "src/"
  4866. }
  4867. },
  4868. "notification-url": "https://packagist.org/downloads/",
  4869. "license": [
  4870. "MIT"
  4871. ],
  4872. "authors": [
  4873. {
  4874. "name": "slowlyo",
  4875. "email": "slowlyo_email@qq.com"
  4876. }
  4877. ],
  4878. "description": "Owl Admin 系统备份扩展",
  4879. "homepage": "https://github.com/slowlyo/owl-system-backup",
  4880. "keywords": [
  4881. "extension",
  4882. "owl-admin"
  4883. ],
  4884. "support": {
  4885. "issues": "https://github.com/owl-admin/system-backup/issues",
  4886. "source": "https://github.com/owl-admin/system-backup/tree/v0.3.1"
  4887. },
  4888. "time": "2024-05-22T02:58:47+00:00"
  4889. },
  4890. {
  4891. "name": "spatie/data-transfer-object",
  4892. "version": "3.9.1",
  4893. "source": {
  4894. "type": "git",
  4895. "url": "https://github.com/spatie/data-transfer-object.git",
  4896. "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8"
  4897. },
  4898. "dist": {
  4899. "type": "zip",
  4900. "url": "https://api.github.com/repos/spatie/data-transfer-object/zipball/1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8",
  4901. "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8",
  4902. "shasum": ""
  4903. },
  4904. "require": {
  4905. "php": "^8.0"
  4906. },
  4907. "require-dev": {
  4908. "illuminate/collections": "^8.36",
  4909. "jetbrains/phpstorm-attributes": "^1.0",
  4910. "larapack/dd": "^1.1",
  4911. "phpunit/phpunit": "^9.5.5"
  4912. },
  4913. "type": "library",
  4914. "autoload": {
  4915. "psr-4": {
  4916. "Spatie\\DataTransferObject\\": "src"
  4917. }
  4918. },
  4919. "notification-url": "https://packagist.org/downloads/",
  4920. "license": [
  4921. "MIT"
  4922. ],
  4923. "authors": [
  4924. {
  4925. "name": "Brent Roose",
  4926. "email": "brent@spatie.be",
  4927. "homepage": "https://spatie.be",
  4928. "role": "Developer"
  4929. }
  4930. ],
  4931. "description": "Data transfer objects with batteries included",
  4932. "homepage": "https://github.com/spatie/data-transfer-object",
  4933. "keywords": [
  4934. "data-transfer-object",
  4935. "spatie"
  4936. ],
  4937. "support": {
  4938. "issues": "https://github.com/spatie/data-transfer-object/issues",
  4939. "source": "https://github.com/spatie/data-transfer-object/tree/3.9.1"
  4940. },
  4941. "funding": [
  4942. {
  4943. "url": "https://spatie.be/open-source/support-us",
  4944. "type": "custom"
  4945. },
  4946. {
  4947. "url": "https://github.com/spatie",
  4948. "type": "github"
  4949. }
  4950. ],
  4951. "abandoned": "spatie/laravel-data",
  4952. "time": "2022-09-16T13:34:38+00:00"
  4953. },
  4954. {
  4955. "name": "symfony/cache",
  4956. "version": "v7.1.7",
  4957. "source": {
  4958. "type": "git",
  4959. "url": "https://github.com/symfony/cache.git",
  4960. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928"
  4961. },
  4962. "dist": {
  4963. "type": "zip",
  4964. "url": "https://api.github.com/repos/symfony/cache/zipball/23b61c9592ee72233c31625f0ae805dd1571e928",
  4965. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928",
  4966. "shasum": ""
  4967. },
  4968. "require": {
  4969. "php": ">=8.2",
  4970. "psr/cache": "^2.0|^3.0",
  4971. "psr/log": "^1.1|^2|^3",
  4972. "symfony/cache-contracts": "^2.5|^3",
  4973. "symfony/deprecation-contracts": "^2.5|^3.0",
  4974. "symfony/service-contracts": "^2.5|^3",
  4975. "symfony/var-exporter": "^6.4|^7.0"
  4976. },
  4977. "conflict": {
  4978. "doctrine/dbal": "<3.6",
  4979. "symfony/dependency-injection": "<6.4",
  4980. "symfony/http-kernel": "<6.4",
  4981. "symfony/var-dumper": "<6.4"
  4982. },
  4983. "provide": {
  4984. "psr/cache-implementation": "2.0|3.0",
  4985. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  4986. "symfony/cache-implementation": "1.1|2.0|3.0"
  4987. },
  4988. "require-dev": {
  4989. "cache/integration-tests": "dev-master",
  4990. "doctrine/dbal": "^3.6|^4",
  4991. "predis/predis": "^1.1|^2.0",
  4992. "psr/simple-cache": "^1.0|^2.0|^3.0",
  4993. "symfony/config": "^6.4|^7.0",
  4994. "symfony/dependency-injection": "^6.4|^7.0",
  4995. "symfony/filesystem": "^6.4|^7.0",
  4996. "symfony/http-kernel": "^6.4|^7.0",
  4997. "symfony/messenger": "^6.4|^7.0",
  4998. "symfony/var-dumper": "^6.4|^7.0"
  4999. },
  5000. "type": "library",
  5001. "autoload": {
  5002. "psr-4": {
  5003. "Symfony\\Component\\Cache\\": ""
  5004. },
  5005. "classmap": [
  5006. "Traits/ValueWrapper.php"
  5007. ],
  5008. "exclude-from-classmap": [
  5009. "/Tests/"
  5010. ]
  5011. },
  5012. "notification-url": "https://packagist.org/downloads/",
  5013. "license": [
  5014. "MIT"
  5015. ],
  5016. "authors": [
  5017. {
  5018. "name": "Nicolas Grekas",
  5019. "email": "p@tchwork.com"
  5020. },
  5021. {
  5022. "name": "Symfony Community",
  5023. "homepage": "https://symfony.com/contributors"
  5024. }
  5025. ],
  5026. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5027. "homepage": "https://symfony.com",
  5028. "keywords": [
  5029. "caching",
  5030. "psr6"
  5031. ],
  5032. "support": {
  5033. "source": "https://github.com/symfony/cache/tree/v7.1.7"
  5034. },
  5035. "funding": [
  5036. {
  5037. "url": "https://symfony.com/sponsor",
  5038. "type": "custom"
  5039. },
  5040. {
  5041. "url": "https://github.com/fabpot",
  5042. "type": "github"
  5043. },
  5044. {
  5045. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5046. "type": "tidelift"
  5047. }
  5048. ],
  5049. "time": "2024-11-05T15:34:55+00:00"
  5050. },
  5051. {
  5052. "name": "symfony/cache-contracts",
  5053. "version": "v3.5.0",
  5054. "source": {
  5055. "type": "git",
  5056. "url": "https://github.com/symfony/cache-contracts.git",
  5057. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  5058. },
  5059. "dist": {
  5060. "type": "zip",
  5061. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  5062. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  5063. "shasum": ""
  5064. },
  5065. "require": {
  5066. "php": ">=8.1",
  5067. "psr/cache": "^3.0"
  5068. },
  5069. "type": "library",
  5070. "extra": {
  5071. "branch-alias": {
  5072. "dev-main": "3.5-dev"
  5073. },
  5074. "thanks": {
  5075. "name": "symfony/contracts",
  5076. "url": "https://github.com/symfony/contracts"
  5077. }
  5078. },
  5079. "autoload": {
  5080. "psr-4": {
  5081. "Symfony\\Contracts\\Cache\\": ""
  5082. }
  5083. },
  5084. "notification-url": "https://packagist.org/downloads/",
  5085. "license": [
  5086. "MIT"
  5087. ],
  5088. "authors": [
  5089. {
  5090. "name": "Nicolas Grekas",
  5091. "email": "p@tchwork.com"
  5092. },
  5093. {
  5094. "name": "Symfony Community",
  5095. "homepage": "https://symfony.com/contributors"
  5096. }
  5097. ],
  5098. "description": "Generic abstractions related to caching",
  5099. "homepage": "https://symfony.com",
  5100. "keywords": [
  5101. "abstractions",
  5102. "contracts",
  5103. "decoupling",
  5104. "interfaces",
  5105. "interoperability",
  5106. "standards"
  5107. ],
  5108. "support": {
  5109. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  5110. },
  5111. "funding": [
  5112. {
  5113. "url": "https://symfony.com/sponsor",
  5114. "type": "custom"
  5115. },
  5116. {
  5117. "url": "https://github.com/fabpot",
  5118. "type": "github"
  5119. },
  5120. {
  5121. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5122. "type": "tidelift"
  5123. }
  5124. ],
  5125. "time": "2024-04-18T09:32:20+00:00"
  5126. },
  5127. {
  5128. "name": "symfony/clock",
  5129. "version": "v7.1.6",
  5130. "source": {
  5131. "type": "git",
  5132. "url": "https://github.com/symfony/clock.git",
  5133. "reference": "97bebc53548684c17ed696bc8af016880f0f098d"
  5134. },
  5135. "dist": {
  5136. "type": "zip",
  5137. "url": "https://api.github.com/repos/symfony/clock/zipball/97bebc53548684c17ed696bc8af016880f0f098d",
  5138. "reference": "97bebc53548684c17ed696bc8af016880f0f098d",
  5139. "shasum": ""
  5140. },
  5141. "require": {
  5142. "php": ">=8.2",
  5143. "psr/clock": "^1.0",
  5144. "symfony/polyfill-php83": "^1.28"
  5145. },
  5146. "provide": {
  5147. "psr/clock-implementation": "1.0"
  5148. },
  5149. "type": "library",
  5150. "autoload": {
  5151. "files": [
  5152. "Resources/now.php"
  5153. ],
  5154. "psr-4": {
  5155. "Symfony\\Component\\Clock\\": ""
  5156. },
  5157. "exclude-from-classmap": [
  5158. "/Tests/"
  5159. ]
  5160. },
  5161. "notification-url": "https://packagist.org/downloads/",
  5162. "license": [
  5163. "MIT"
  5164. ],
  5165. "authors": [
  5166. {
  5167. "name": "Nicolas Grekas",
  5168. "email": "p@tchwork.com"
  5169. },
  5170. {
  5171. "name": "Symfony Community",
  5172. "homepage": "https://symfony.com/contributors"
  5173. }
  5174. ],
  5175. "description": "Decouples applications from the system clock",
  5176. "homepage": "https://symfony.com",
  5177. "keywords": [
  5178. "clock",
  5179. "psr20",
  5180. "time"
  5181. ],
  5182. "support": {
  5183. "source": "https://github.com/symfony/clock/tree/v7.1.6"
  5184. },
  5185. "funding": [
  5186. {
  5187. "url": "https://symfony.com/sponsor",
  5188. "type": "custom"
  5189. },
  5190. {
  5191. "url": "https://github.com/fabpot",
  5192. "type": "github"
  5193. },
  5194. {
  5195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5196. "type": "tidelift"
  5197. }
  5198. ],
  5199. "time": "2024-09-25T14:20:29+00:00"
  5200. },
  5201. {
  5202. "name": "symfony/console",
  5203. "version": "v7.1.8",
  5204. "source": {
  5205. "type": "git",
  5206. "url": "https://github.com/symfony/console.git",
  5207. "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5"
  5208. },
  5209. "dist": {
  5210. "type": "zip",
  5211. "url": "https://api.github.com/repos/symfony/console/zipball/ff04e5b5ba043d2badfb308197b9e6b42883fcd5",
  5212. "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5",
  5213. "shasum": ""
  5214. },
  5215. "require": {
  5216. "php": ">=8.2",
  5217. "symfony/polyfill-mbstring": "~1.0",
  5218. "symfony/service-contracts": "^2.5|^3",
  5219. "symfony/string": "^6.4|^7.0"
  5220. },
  5221. "conflict": {
  5222. "symfony/dependency-injection": "<6.4",
  5223. "symfony/dotenv": "<6.4",
  5224. "symfony/event-dispatcher": "<6.4",
  5225. "symfony/lock": "<6.4",
  5226. "symfony/process": "<6.4"
  5227. },
  5228. "provide": {
  5229. "psr/log-implementation": "1.0|2.0|3.0"
  5230. },
  5231. "require-dev": {
  5232. "psr/log": "^1|^2|^3",
  5233. "symfony/config": "^6.4|^7.0",
  5234. "symfony/dependency-injection": "^6.4|^7.0",
  5235. "symfony/event-dispatcher": "^6.4|^7.0",
  5236. "symfony/http-foundation": "^6.4|^7.0",
  5237. "symfony/http-kernel": "^6.4|^7.0",
  5238. "symfony/lock": "^6.4|^7.0",
  5239. "symfony/messenger": "^6.4|^7.0",
  5240. "symfony/process": "^6.4|^7.0",
  5241. "symfony/stopwatch": "^6.4|^7.0",
  5242. "symfony/var-dumper": "^6.4|^7.0"
  5243. },
  5244. "type": "library",
  5245. "autoload": {
  5246. "psr-4": {
  5247. "Symfony\\Component\\Console\\": ""
  5248. },
  5249. "exclude-from-classmap": [
  5250. "/Tests/"
  5251. ]
  5252. },
  5253. "notification-url": "https://packagist.org/downloads/",
  5254. "license": [
  5255. "MIT"
  5256. ],
  5257. "authors": [
  5258. {
  5259. "name": "Fabien Potencier",
  5260. "email": "fabien@symfony.com"
  5261. },
  5262. {
  5263. "name": "Symfony Community",
  5264. "homepage": "https://symfony.com/contributors"
  5265. }
  5266. ],
  5267. "description": "Eases the creation of beautiful and testable command line interfaces",
  5268. "homepage": "https://symfony.com",
  5269. "keywords": [
  5270. "cli",
  5271. "command-line",
  5272. "console",
  5273. "terminal"
  5274. ],
  5275. "support": {
  5276. "source": "https://github.com/symfony/console/tree/v7.1.8"
  5277. },
  5278. "funding": [
  5279. {
  5280. "url": "https://symfony.com/sponsor",
  5281. "type": "custom"
  5282. },
  5283. {
  5284. "url": "https://github.com/fabpot",
  5285. "type": "github"
  5286. },
  5287. {
  5288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5289. "type": "tidelift"
  5290. }
  5291. ],
  5292. "time": "2024-11-06T14:23:19+00:00"
  5293. },
  5294. {
  5295. "name": "symfony/css-selector",
  5296. "version": "v7.1.6",
  5297. "source": {
  5298. "type": "git",
  5299. "url": "https://github.com/symfony/css-selector.git",
  5300. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66"
  5301. },
  5302. "dist": {
  5303. "type": "zip",
  5304. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  5305. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  5306. "shasum": ""
  5307. },
  5308. "require": {
  5309. "php": ">=8.2"
  5310. },
  5311. "type": "library",
  5312. "autoload": {
  5313. "psr-4": {
  5314. "Symfony\\Component\\CssSelector\\": ""
  5315. },
  5316. "exclude-from-classmap": [
  5317. "/Tests/"
  5318. ]
  5319. },
  5320. "notification-url": "https://packagist.org/downloads/",
  5321. "license": [
  5322. "MIT"
  5323. ],
  5324. "authors": [
  5325. {
  5326. "name": "Fabien Potencier",
  5327. "email": "fabien@symfony.com"
  5328. },
  5329. {
  5330. "name": "Jean-François Simon",
  5331. "email": "jeanfrancois.simon@sensiolabs.com"
  5332. },
  5333. {
  5334. "name": "Symfony Community",
  5335. "homepage": "https://symfony.com/contributors"
  5336. }
  5337. ],
  5338. "description": "Converts CSS selectors to XPath expressions",
  5339. "homepage": "https://symfony.com",
  5340. "support": {
  5341. "source": "https://github.com/symfony/css-selector/tree/v7.1.6"
  5342. },
  5343. "funding": [
  5344. {
  5345. "url": "https://symfony.com/sponsor",
  5346. "type": "custom"
  5347. },
  5348. {
  5349. "url": "https://github.com/fabpot",
  5350. "type": "github"
  5351. },
  5352. {
  5353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5354. "type": "tidelift"
  5355. }
  5356. ],
  5357. "time": "2024-09-25T14:20:29+00:00"
  5358. },
  5359. {
  5360. "name": "symfony/deprecation-contracts",
  5361. "version": "v3.5.0",
  5362. "source": {
  5363. "type": "git",
  5364. "url": "https://github.com/symfony/deprecation-contracts.git",
  5365. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5366. },
  5367. "dist": {
  5368. "type": "zip",
  5369. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5370. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5371. "shasum": ""
  5372. },
  5373. "require": {
  5374. "php": ">=8.1"
  5375. },
  5376. "type": "library",
  5377. "extra": {
  5378. "branch-alias": {
  5379. "dev-main": "3.5-dev"
  5380. },
  5381. "thanks": {
  5382. "name": "symfony/contracts",
  5383. "url": "https://github.com/symfony/contracts"
  5384. }
  5385. },
  5386. "autoload": {
  5387. "files": [
  5388. "function.php"
  5389. ]
  5390. },
  5391. "notification-url": "https://packagist.org/downloads/",
  5392. "license": [
  5393. "MIT"
  5394. ],
  5395. "authors": [
  5396. {
  5397. "name": "Nicolas Grekas",
  5398. "email": "p@tchwork.com"
  5399. },
  5400. {
  5401. "name": "Symfony Community",
  5402. "homepage": "https://symfony.com/contributors"
  5403. }
  5404. ],
  5405. "description": "A generic function and convention to trigger deprecation notices",
  5406. "homepage": "https://symfony.com",
  5407. "support": {
  5408. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  5409. },
  5410. "funding": [
  5411. {
  5412. "url": "https://symfony.com/sponsor",
  5413. "type": "custom"
  5414. },
  5415. {
  5416. "url": "https://github.com/fabpot",
  5417. "type": "github"
  5418. },
  5419. {
  5420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5421. "type": "tidelift"
  5422. }
  5423. ],
  5424. "time": "2024-04-18T09:32:20+00:00"
  5425. },
  5426. {
  5427. "name": "symfony/error-handler",
  5428. "version": "v7.1.7",
  5429. "source": {
  5430. "type": "git",
  5431. "url": "https://github.com/symfony/error-handler.git",
  5432. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342"
  5433. },
  5434. "dist": {
  5435. "type": "zip",
  5436. "url": "https://api.github.com/repos/symfony/error-handler/zipball/010e44661f4c6babaf8c4862fe68c24a53903342",
  5437. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342",
  5438. "shasum": ""
  5439. },
  5440. "require": {
  5441. "php": ">=8.2",
  5442. "psr/log": "^1|^2|^3",
  5443. "symfony/var-dumper": "^6.4|^7.0"
  5444. },
  5445. "conflict": {
  5446. "symfony/deprecation-contracts": "<2.5",
  5447. "symfony/http-kernel": "<6.4"
  5448. },
  5449. "require-dev": {
  5450. "symfony/deprecation-contracts": "^2.5|^3",
  5451. "symfony/http-kernel": "^6.4|^7.0",
  5452. "symfony/serializer": "^6.4|^7.0"
  5453. },
  5454. "bin": [
  5455. "Resources/bin/patch-type-declarations"
  5456. ],
  5457. "type": "library",
  5458. "autoload": {
  5459. "psr-4": {
  5460. "Symfony\\Component\\ErrorHandler\\": ""
  5461. },
  5462. "exclude-from-classmap": [
  5463. "/Tests/"
  5464. ]
  5465. },
  5466. "notification-url": "https://packagist.org/downloads/",
  5467. "license": [
  5468. "MIT"
  5469. ],
  5470. "authors": [
  5471. {
  5472. "name": "Fabien Potencier",
  5473. "email": "fabien@symfony.com"
  5474. },
  5475. {
  5476. "name": "Symfony Community",
  5477. "homepage": "https://symfony.com/contributors"
  5478. }
  5479. ],
  5480. "description": "Provides tools to manage errors and ease debugging PHP code",
  5481. "homepage": "https://symfony.com",
  5482. "support": {
  5483. "source": "https://github.com/symfony/error-handler/tree/v7.1.7"
  5484. },
  5485. "funding": [
  5486. {
  5487. "url": "https://symfony.com/sponsor",
  5488. "type": "custom"
  5489. },
  5490. {
  5491. "url": "https://github.com/fabpot",
  5492. "type": "github"
  5493. },
  5494. {
  5495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5496. "type": "tidelift"
  5497. }
  5498. ],
  5499. "time": "2024-11-05T15:34:55+00:00"
  5500. },
  5501. {
  5502. "name": "symfony/event-dispatcher",
  5503. "version": "v7.1.6",
  5504. "source": {
  5505. "type": "git",
  5506. "url": "https://github.com/symfony/event-dispatcher.git",
  5507. "reference": "87254c78dd50721cfd015b62277a8281c5589702"
  5508. },
  5509. "dist": {
  5510. "type": "zip",
  5511. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87254c78dd50721cfd015b62277a8281c5589702",
  5512. "reference": "87254c78dd50721cfd015b62277a8281c5589702",
  5513. "shasum": ""
  5514. },
  5515. "require": {
  5516. "php": ">=8.2",
  5517. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5518. },
  5519. "conflict": {
  5520. "symfony/dependency-injection": "<6.4",
  5521. "symfony/service-contracts": "<2.5"
  5522. },
  5523. "provide": {
  5524. "psr/event-dispatcher-implementation": "1.0",
  5525. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5526. },
  5527. "require-dev": {
  5528. "psr/log": "^1|^2|^3",
  5529. "symfony/config": "^6.4|^7.0",
  5530. "symfony/dependency-injection": "^6.4|^7.0",
  5531. "symfony/error-handler": "^6.4|^7.0",
  5532. "symfony/expression-language": "^6.4|^7.0",
  5533. "symfony/http-foundation": "^6.4|^7.0",
  5534. "symfony/service-contracts": "^2.5|^3",
  5535. "symfony/stopwatch": "^6.4|^7.0"
  5536. },
  5537. "type": "library",
  5538. "autoload": {
  5539. "psr-4": {
  5540. "Symfony\\Component\\EventDispatcher\\": ""
  5541. },
  5542. "exclude-from-classmap": [
  5543. "/Tests/"
  5544. ]
  5545. },
  5546. "notification-url": "https://packagist.org/downloads/",
  5547. "license": [
  5548. "MIT"
  5549. ],
  5550. "authors": [
  5551. {
  5552. "name": "Fabien Potencier",
  5553. "email": "fabien@symfony.com"
  5554. },
  5555. {
  5556. "name": "Symfony Community",
  5557. "homepage": "https://symfony.com/contributors"
  5558. }
  5559. ],
  5560. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5561. "homepage": "https://symfony.com",
  5562. "support": {
  5563. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.6"
  5564. },
  5565. "funding": [
  5566. {
  5567. "url": "https://symfony.com/sponsor",
  5568. "type": "custom"
  5569. },
  5570. {
  5571. "url": "https://github.com/fabpot",
  5572. "type": "github"
  5573. },
  5574. {
  5575. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5576. "type": "tidelift"
  5577. }
  5578. ],
  5579. "time": "2024-09-25T14:20:29+00:00"
  5580. },
  5581. {
  5582. "name": "symfony/event-dispatcher-contracts",
  5583. "version": "v3.5.0",
  5584. "source": {
  5585. "type": "git",
  5586. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5587. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  5588. },
  5589. "dist": {
  5590. "type": "zip",
  5591. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  5592. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  5593. "shasum": ""
  5594. },
  5595. "require": {
  5596. "php": ">=8.1",
  5597. "psr/event-dispatcher": "^1"
  5598. },
  5599. "type": "library",
  5600. "extra": {
  5601. "branch-alias": {
  5602. "dev-main": "3.5-dev"
  5603. },
  5604. "thanks": {
  5605. "name": "symfony/contracts",
  5606. "url": "https://github.com/symfony/contracts"
  5607. }
  5608. },
  5609. "autoload": {
  5610. "psr-4": {
  5611. "Symfony\\Contracts\\EventDispatcher\\": ""
  5612. }
  5613. },
  5614. "notification-url": "https://packagist.org/downloads/",
  5615. "license": [
  5616. "MIT"
  5617. ],
  5618. "authors": [
  5619. {
  5620. "name": "Nicolas Grekas",
  5621. "email": "p@tchwork.com"
  5622. },
  5623. {
  5624. "name": "Symfony Community",
  5625. "homepage": "https://symfony.com/contributors"
  5626. }
  5627. ],
  5628. "description": "Generic abstractions related to dispatching event",
  5629. "homepage": "https://symfony.com",
  5630. "keywords": [
  5631. "abstractions",
  5632. "contracts",
  5633. "decoupling",
  5634. "interfaces",
  5635. "interoperability",
  5636. "standards"
  5637. ],
  5638. "support": {
  5639. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  5640. },
  5641. "funding": [
  5642. {
  5643. "url": "https://symfony.com/sponsor",
  5644. "type": "custom"
  5645. },
  5646. {
  5647. "url": "https://github.com/fabpot",
  5648. "type": "github"
  5649. },
  5650. {
  5651. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5652. "type": "tidelift"
  5653. }
  5654. ],
  5655. "time": "2024-04-18T09:32:20+00:00"
  5656. },
  5657. {
  5658. "name": "symfony/finder",
  5659. "version": "v7.1.6",
  5660. "source": {
  5661. "type": "git",
  5662. "url": "https://github.com/symfony/finder.git",
  5663. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8"
  5664. },
  5665. "dist": {
  5666. "type": "zip",
  5667. "url": "https://api.github.com/repos/symfony/finder/zipball/2cb89664897be33f78c65d3d2845954c8d7a43b8",
  5668. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8",
  5669. "shasum": ""
  5670. },
  5671. "require": {
  5672. "php": ">=8.2"
  5673. },
  5674. "require-dev": {
  5675. "symfony/filesystem": "^6.4|^7.0"
  5676. },
  5677. "type": "library",
  5678. "autoload": {
  5679. "psr-4": {
  5680. "Symfony\\Component\\Finder\\": ""
  5681. },
  5682. "exclude-from-classmap": [
  5683. "/Tests/"
  5684. ]
  5685. },
  5686. "notification-url": "https://packagist.org/downloads/",
  5687. "license": [
  5688. "MIT"
  5689. ],
  5690. "authors": [
  5691. {
  5692. "name": "Fabien Potencier",
  5693. "email": "fabien@symfony.com"
  5694. },
  5695. {
  5696. "name": "Symfony Community",
  5697. "homepage": "https://symfony.com/contributors"
  5698. }
  5699. ],
  5700. "description": "Finds files and directories via an intuitive fluent interface",
  5701. "homepage": "https://symfony.com",
  5702. "support": {
  5703. "source": "https://github.com/symfony/finder/tree/v7.1.6"
  5704. },
  5705. "funding": [
  5706. {
  5707. "url": "https://symfony.com/sponsor",
  5708. "type": "custom"
  5709. },
  5710. {
  5711. "url": "https://github.com/fabpot",
  5712. "type": "github"
  5713. },
  5714. {
  5715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5716. "type": "tidelift"
  5717. }
  5718. ],
  5719. "time": "2024-10-01T08:31:23+00:00"
  5720. },
  5721. {
  5722. "name": "symfony/http-client",
  5723. "version": "v7.1.8",
  5724. "source": {
  5725. "type": "git",
  5726. "url": "https://github.com/symfony/http-client.git",
  5727. "reference": "c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a"
  5728. },
  5729. "dist": {
  5730. "type": "zip",
  5731. "url": "https://api.github.com/repos/symfony/http-client/zipball/c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a",
  5732. "reference": "c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a",
  5733. "shasum": ""
  5734. },
  5735. "require": {
  5736. "php": ">=8.2",
  5737. "psr/log": "^1|^2|^3",
  5738. "symfony/deprecation-contracts": "^2.5|^3",
  5739. "symfony/http-client-contracts": "^3.4.1",
  5740. "symfony/service-contracts": "^2.5|^3"
  5741. },
  5742. "conflict": {
  5743. "php-http/discovery": "<1.15",
  5744. "symfony/http-foundation": "<6.4"
  5745. },
  5746. "provide": {
  5747. "php-http/async-client-implementation": "*",
  5748. "php-http/client-implementation": "*",
  5749. "psr/http-client-implementation": "1.0",
  5750. "symfony/http-client-implementation": "3.0"
  5751. },
  5752. "require-dev": {
  5753. "amphp/amp": "^2.5",
  5754. "amphp/http-client": "^4.2.1",
  5755. "amphp/http-tunnel": "^1.0",
  5756. "amphp/socket": "^1.1",
  5757. "guzzlehttp/promises": "^1.4|^2.0",
  5758. "nyholm/psr7": "^1.0",
  5759. "php-http/httplug": "^1.0|^2.0",
  5760. "psr/http-client": "^1.0",
  5761. "symfony/dependency-injection": "^6.4|^7.0",
  5762. "symfony/http-kernel": "^6.4|^7.0",
  5763. "symfony/messenger": "^6.4|^7.0",
  5764. "symfony/process": "^6.4|^7.0",
  5765. "symfony/rate-limiter": "^6.4|^7.0",
  5766. "symfony/stopwatch": "^6.4|^7.0"
  5767. },
  5768. "type": "library",
  5769. "autoload": {
  5770. "psr-4": {
  5771. "Symfony\\Component\\HttpClient\\": ""
  5772. },
  5773. "exclude-from-classmap": [
  5774. "/Tests/"
  5775. ]
  5776. },
  5777. "notification-url": "https://packagist.org/downloads/",
  5778. "license": [
  5779. "MIT"
  5780. ],
  5781. "authors": [
  5782. {
  5783. "name": "Nicolas Grekas",
  5784. "email": "p@tchwork.com"
  5785. },
  5786. {
  5787. "name": "Symfony Community",
  5788. "homepage": "https://symfony.com/contributors"
  5789. }
  5790. ],
  5791. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5792. "homepage": "https://symfony.com",
  5793. "keywords": [
  5794. "http"
  5795. ],
  5796. "support": {
  5797. "source": "https://github.com/symfony/http-client/tree/v7.1.8"
  5798. },
  5799. "funding": [
  5800. {
  5801. "url": "https://symfony.com/sponsor",
  5802. "type": "custom"
  5803. },
  5804. {
  5805. "url": "https://github.com/fabpot",
  5806. "type": "github"
  5807. },
  5808. {
  5809. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5810. "type": "tidelift"
  5811. }
  5812. ],
  5813. "time": "2024-11-13T13:40:27+00:00"
  5814. },
  5815. {
  5816. "name": "symfony/http-client-contracts",
  5817. "version": "v3.5.0",
  5818. "source": {
  5819. "type": "git",
  5820. "url": "https://github.com/symfony/http-client-contracts.git",
  5821. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  5822. },
  5823. "dist": {
  5824. "type": "zip",
  5825. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  5826. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  5827. "shasum": ""
  5828. },
  5829. "require": {
  5830. "php": ">=8.1"
  5831. },
  5832. "type": "library",
  5833. "extra": {
  5834. "branch-alias": {
  5835. "dev-main": "3.5-dev"
  5836. },
  5837. "thanks": {
  5838. "name": "symfony/contracts",
  5839. "url": "https://github.com/symfony/contracts"
  5840. }
  5841. },
  5842. "autoload": {
  5843. "psr-4": {
  5844. "Symfony\\Contracts\\HttpClient\\": ""
  5845. },
  5846. "exclude-from-classmap": [
  5847. "/Test/"
  5848. ]
  5849. },
  5850. "notification-url": "https://packagist.org/downloads/",
  5851. "license": [
  5852. "MIT"
  5853. ],
  5854. "authors": [
  5855. {
  5856. "name": "Nicolas Grekas",
  5857. "email": "p@tchwork.com"
  5858. },
  5859. {
  5860. "name": "Symfony Community",
  5861. "homepage": "https://symfony.com/contributors"
  5862. }
  5863. ],
  5864. "description": "Generic abstractions related to HTTP clients",
  5865. "homepage": "https://symfony.com",
  5866. "keywords": [
  5867. "abstractions",
  5868. "contracts",
  5869. "decoupling",
  5870. "interfaces",
  5871. "interoperability",
  5872. "standards"
  5873. ],
  5874. "support": {
  5875. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  5876. },
  5877. "funding": [
  5878. {
  5879. "url": "https://symfony.com/sponsor",
  5880. "type": "custom"
  5881. },
  5882. {
  5883. "url": "https://github.com/fabpot",
  5884. "type": "github"
  5885. },
  5886. {
  5887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5888. "type": "tidelift"
  5889. }
  5890. ],
  5891. "time": "2024-04-18T09:32:20+00:00"
  5892. },
  5893. {
  5894. "name": "symfony/http-foundation",
  5895. "version": "v7.1.8",
  5896. "source": {
  5897. "type": "git",
  5898. "url": "https://github.com/symfony/http-foundation.git",
  5899. "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112"
  5900. },
  5901. "dist": {
  5902. "type": "zip",
  5903. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f4419ec69ccfc3f725a4de7c20e4e57626d10112",
  5904. "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112",
  5905. "shasum": ""
  5906. },
  5907. "require": {
  5908. "php": ">=8.2",
  5909. "symfony/polyfill-mbstring": "~1.1",
  5910. "symfony/polyfill-php83": "^1.27"
  5911. },
  5912. "conflict": {
  5913. "doctrine/dbal": "<3.6",
  5914. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  5915. },
  5916. "require-dev": {
  5917. "doctrine/dbal": "^3.6|^4",
  5918. "predis/predis": "^1.1|^2.0",
  5919. "symfony/cache": "^6.4.12|^7.1.5",
  5920. "symfony/dependency-injection": "^6.4|^7.0",
  5921. "symfony/expression-language": "^6.4|^7.0",
  5922. "symfony/http-kernel": "^6.4|^7.0",
  5923. "symfony/mime": "^6.4|^7.0",
  5924. "symfony/rate-limiter": "^6.4|^7.0"
  5925. },
  5926. "type": "library",
  5927. "autoload": {
  5928. "psr-4": {
  5929. "Symfony\\Component\\HttpFoundation\\": ""
  5930. },
  5931. "exclude-from-classmap": [
  5932. "/Tests/"
  5933. ]
  5934. },
  5935. "notification-url": "https://packagist.org/downloads/",
  5936. "license": [
  5937. "MIT"
  5938. ],
  5939. "authors": [
  5940. {
  5941. "name": "Fabien Potencier",
  5942. "email": "fabien@symfony.com"
  5943. },
  5944. {
  5945. "name": "Symfony Community",
  5946. "homepage": "https://symfony.com/contributors"
  5947. }
  5948. ],
  5949. "description": "Defines an object-oriented layer for the HTTP specification",
  5950. "homepage": "https://symfony.com",
  5951. "support": {
  5952. "source": "https://github.com/symfony/http-foundation/tree/v7.1.8"
  5953. },
  5954. "funding": [
  5955. {
  5956. "url": "https://symfony.com/sponsor",
  5957. "type": "custom"
  5958. },
  5959. {
  5960. "url": "https://github.com/fabpot",
  5961. "type": "github"
  5962. },
  5963. {
  5964. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5965. "type": "tidelift"
  5966. }
  5967. ],
  5968. "time": "2024-11-09T09:16:45+00:00"
  5969. },
  5970. {
  5971. "name": "symfony/http-kernel",
  5972. "version": "v7.1.8",
  5973. "source": {
  5974. "type": "git",
  5975. "url": "https://github.com/symfony/http-kernel.git",
  5976. "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e"
  5977. },
  5978. "dist": {
  5979. "type": "zip",
  5980. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/33fef24e3dc79d6d30bf4936531f2f4bd2ca189e",
  5981. "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e",
  5982. "shasum": ""
  5983. },
  5984. "require": {
  5985. "php": ">=8.2",
  5986. "psr/log": "^1|^2|^3",
  5987. "symfony/deprecation-contracts": "^2.5|^3",
  5988. "symfony/error-handler": "^6.4|^7.0",
  5989. "symfony/event-dispatcher": "^6.4|^7.0",
  5990. "symfony/http-foundation": "^6.4|^7.0",
  5991. "symfony/polyfill-ctype": "^1.8"
  5992. },
  5993. "conflict": {
  5994. "symfony/browser-kit": "<6.4",
  5995. "symfony/cache": "<6.4",
  5996. "symfony/config": "<6.4",
  5997. "symfony/console": "<6.4",
  5998. "symfony/dependency-injection": "<6.4",
  5999. "symfony/doctrine-bridge": "<6.4",
  6000. "symfony/form": "<6.4",
  6001. "symfony/http-client": "<6.4",
  6002. "symfony/http-client-contracts": "<2.5",
  6003. "symfony/mailer": "<6.4",
  6004. "symfony/messenger": "<6.4",
  6005. "symfony/translation": "<6.4",
  6006. "symfony/translation-contracts": "<2.5",
  6007. "symfony/twig-bridge": "<6.4",
  6008. "symfony/validator": "<6.4",
  6009. "symfony/var-dumper": "<6.4",
  6010. "twig/twig": "<3.0.4"
  6011. },
  6012. "provide": {
  6013. "psr/log-implementation": "1.0|2.0|3.0"
  6014. },
  6015. "require-dev": {
  6016. "psr/cache": "^1.0|^2.0|^3.0",
  6017. "symfony/browser-kit": "^6.4|^7.0",
  6018. "symfony/clock": "^6.4|^7.0",
  6019. "symfony/config": "^6.4|^7.0",
  6020. "symfony/console": "^6.4|^7.0",
  6021. "symfony/css-selector": "^6.4|^7.0",
  6022. "symfony/dependency-injection": "^6.4|^7.0",
  6023. "symfony/dom-crawler": "^6.4|^7.0",
  6024. "symfony/expression-language": "^6.4|^7.0",
  6025. "symfony/finder": "^6.4|^7.0",
  6026. "symfony/http-client-contracts": "^2.5|^3",
  6027. "symfony/process": "^6.4|^7.0",
  6028. "symfony/property-access": "^7.1",
  6029. "symfony/routing": "^6.4|^7.0",
  6030. "symfony/serializer": "^7.1",
  6031. "symfony/stopwatch": "^6.4|^7.0",
  6032. "symfony/translation": "^6.4|^7.0",
  6033. "symfony/translation-contracts": "^2.5|^3",
  6034. "symfony/uid": "^6.4|^7.0",
  6035. "symfony/validator": "^6.4|^7.0",
  6036. "symfony/var-dumper": "^6.4|^7.0",
  6037. "symfony/var-exporter": "^6.4|^7.0",
  6038. "twig/twig": "^3.0.4"
  6039. },
  6040. "type": "library",
  6041. "autoload": {
  6042. "psr-4": {
  6043. "Symfony\\Component\\HttpKernel\\": ""
  6044. },
  6045. "exclude-from-classmap": [
  6046. "/Tests/"
  6047. ]
  6048. },
  6049. "notification-url": "https://packagist.org/downloads/",
  6050. "license": [
  6051. "MIT"
  6052. ],
  6053. "authors": [
  6054. {
  6055. "name": "Fabien Potencier",
  6056. "email": "fabien@symfony.com"
  6057. },
  6058. {
  6059. "name": "Symfony Community",
  6060. "homepage": "https://symfony.com/contributors"
  6061. }
  6062. ],
  6063. "description": "Provides a structured process for converting a Request into a Response",
  6064. "homepage": "https://symfony.com",
  6065. "support": {
  6066. "source": "https://github.com/symfony/http-kernel/tree/v7.1.8"
  6067. },
  6068. "funding": [
  6069. {
  6070. "url": "https://symfony.com/sponsor",
  6071. "type": "custom"
  6072. },
  6073. {
  6074. "url": "https://github.com/fabpot",
  6075. "type": "github"
  6076. },
  6077. {
  6078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6079. "type": "tidelift"
  6080. }
  6081. ],
  6082. "time": "2024-11-13T14:25:32+00:00"
  6083. },
  6084. {
  6085. "name": "symfony/mailer",
  6086. "version": "v7.1.6",
  6087. "source": {
  6088. "type": "git",
  6089. "url": "https://github.com/symfony/mailer.git",
  6090. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd"
  6091. },
  6092. "dist": {
  6093. "type": "zip",
  6094. "url": "https://api.github.com/repos/symfony/mailer/zipball/69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  6095. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  6096. "shasum": ""
  6097. },
  6098. "require": {
  6099. "egulias/email-validator": "^2.1.10|^3|^4",
  6100. "php": ">=8.2",
  6101. "psr/event-dispatcher": "^1",
  6102. "psr/log": "^1|^2|^3",
  6103. "symfony/event-dispatcher": "^6.4|^7.0",
  6104. "symfony/mime": "^6.4|^7.0",
  6105. "symfony/service-contracts": "^2.5|^3"
  6106. },
  6107. "conflict": {
  6108. "symfony/http-client-contracts": "<2.5",
  6109. "symfony/http-kernel": "<6.4",
  6110. "symfony/messenger": "<6.4",
  6111. "symfony/mime": "<6.4",
  6112. "symfony/twig-bridge": "<6.4"
  6113. },
  6114. "require-dev": {
  6115. "symfony/console": "^6.4|^7.0",
  6116. "symfony/http-client": "^6.4|^7.0",
  6117. "symfony/messenger": "^6.4|^7.0",
  6118. "symfony/twig-bridge": "^6.4|^7.0"
  6119. },
  6120. "type": "library",
  6121. "autoload": {
  6122. "psr-4": {
  6123. "Symfony\\Component\\Mailer\\": ""
  6124. },
  6125. "exclude-from-classmap": [
  6126. "/Tests/"
  6127. ]
  6128. },
  6129. "notification-url": "https://packagist.org/downloads/",
  6130. "license": [
  6131. "MIT"
  6132. ],
  6133. "authors": [
  6134. {
  6135. "name": "Fabien Potencier",
  6136. "email": "fabien@symfony.com"
  6137. },
  6138. {
  6139. "name": "Symfony Community",
  6140. "homepage": "https://symfony.com/contributors"
  6141. }
  6142. ],
  6143. "description": "Helps sending emails",
  6144. "homepage": "https://symfony.com",
  6145. "support": {
  6146. "source": "https://github.com/symfony/mailer/tree/v7.1.6"
  6147. },
  6148. "funding": [
  6149. {
  6150. "url": "https://symfony.com/sponsor",
  6151. "type": "custom"
  6152. },
  6153. {
  6154. "url": "https://github.com/fabpot",
  6155. "type": "github"
  6156. },
  6157. {
  6158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6159. "type": "tidelift"
  6160. }
  6161. ],
  6162. "time": "2024-09-25T14:20:29+00:00"
  6163. },
  6164. {
  6165. "name": "symfony/mime",
  6166. "version": "v7.1.6",
  6167. "source": {
  6168. "type": "git",
  6169. "url": "https://github.com/symfony/mime.git",
  6170. "reference": "caa1e521edb2650b8470918dfe51708c237f0598"
  6171. },
  6172. "dist": {
  6173. "type": "zip",
  6174. "url": "https://api.github.com/repos/symfony/mime/zipball/caa1e521edb2650b8470918dfe51708c237f0598",
  6175. "reference": "caa1e521edb2650b8470918dfe51708c237f0598",
  6176. "shasum": ""
  6177. },
  6178. "require": {
  6179. "php": ">=8.2",
  6180. "symfony/polyfill-intl-idn": "^1.10",
  6181. "symfony/polyfill-mbstring": "^1.0"
  6182. },
  6183. "conflict": {
  6184. "egulias/email-validator": "~3.0.0",
  6185. "phpdocumentor/reflection-docblock": "<3.2.2",
  6186. "phpdocumentor/type-resolver": "<1.4.0",
  6187. "symfony/mailer": "<6.4",
  6188. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  6189. },
  6190. "require-dev": {
  6191. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6192. "league/html-to-markdown": "^5.0",
  6193. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6194. "symfony/dependency-injection": "^6.4|^7.0",
  6195. "symfony/process": "^6.4|^7.0",
  6196. "symfony/property-access": "^6.4|^7.0",
  6197. "symfony/property-info": "^6.4|^7.0",
  6198. "symfony/serializer": "^6.4.3|^7.0.3"
  6199. },
  6200. "type": "library",
  6201. "autoload": {
  6202. "psr-4": {
  6203. "Symfony\\Component\\Mime\\": ""
  6204. },
  6205. "exclude-from-classmap": [
  6206. "/Tests/"
  6207. ]
  6208. },
  6209. "notification-url": "https://packagist.org/downloads/",
  6210. "license": [
  6211. "MIT"
  6212. ],
  6213. "authors": [
  6214. {
  6215. "name": "Fabien Potencier",
  6216. "email": "fabien@symfony.com"
  6217. },
  6218. {
  6219. "name": "Symfony Community",
  6220. "homepage": "https://symfony.com/contributors"
  6221. }
  6222. ],
  6223. "description": "Allows manipulating MIME messages",
  6224. "homepage": "https://symfony.com",
  6225. "keywords": [
  6226. "mime",
  6227. "mime-type"
  6228. ],
  6229. "support": {
  6230. "source": "https://github.com/symfony/mime/tree/v7.1.6"
  6231. },
  6232. "funding": [
  6233. {
  6234. "url": "https://symfony.com/sponsor",
  6235. "type": "custom"
  6236. },
  6237. {
  6238. "url": "https://github.com/fabpot",
  6239. "type": "github"
  6240. },
  6241. {
  6242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6243. "type": "tidelift"
  6244. }
  6245. ],
  6246. "time": "2024-10-25T15:11:02+00:00"
  6247. },
  6248. {
  6249. "name": "symfony/polyfill-ctype",
  6250. "version": "v1.31.0",
  6251. "source": {
  6252. "type": "git",
  6253. "url": "https://github.com/symfony/polyfill-ctype.git",
  6254. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6255. },
  6256. "dist": {
  6257. "type": "zip",
  6258. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6259. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6260. "shasum": ""
  6261. },
  6262. "require": {
  6263. "php": ">=7.2"
  6264. },
  6265. "provide": {
  6266. "ext-ctype": "*"
  6267. },
  6268. "suggest": {
  6269. "ext-ctype": "For best performance"
  6270. },
  6271. "type": "library",
  6272. "extra": {
  6273. "thanks": {
  6274. "name": "symfony/polyfill",
  6275. "url": "https://github.com/symfony/polyfill"
  6276. }
  6277. },
  6278. "autoload": {
  6279. "files": [
  6280. "bootstrap.php"
  6281. ],
  6282. "psr-4": {
  6283. "Symfony\\Polyfill\\Ctype\\": ""
  6284. }
  6285. },
  6286. "notification-url": "https://packagist.org/downloads/",
  6287. "license": [
  6288. "MIT"
  6289. ],
  6290. "authors": [
  6291. {
  6292. "name": "Gert de Pagter",
  6293. "email": "BackEndTea@gmail.com"
  6294. },
  6295. {
  6296. "name": "Symfony Community",
  6297. "homepage": "https://symfony.com/contributors"
  6298. }
  6299. ],
  6300. "description": "Symfony polyfill for ctype functions",
  6301. "homepage": "https://symfony.com",
  6302. "keywords": [
  6303. "compatibility",
  6304. "ctype",
  6305. "polyfill",
  6306. "portable"
  6307. ],
  6308. "support": {
  6309. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6310. },
  6311. "funding": [
  6312. {
  6313. "url": "https://symfony.com/sponsor",
  6314. "type": "custom"
  6315. },
  6316. {
  6317. "url": "https://github.com/fabpot",
  6318. "type": "github"
  6319. },
  6320. {
  6321. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6322. "type": "tidelift"
  6323. }
  6324. ],
  6325. "time": "2024-09-09T11:45:10+00:00"
  6326. },
  6327. {
  6328. "name": "symfony/polyfill-intl-grapheme",
  6329. "version": "v1.31.0",
  6330. "source": {
  6331. "type": "git",
  6332. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6333. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6334. },
  6335. "dist": {
  6336. "type": "zip",
  6337. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6338. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6339. "shasum": ""
  6340. },
  6341. "require": {
  6342. "php": ">=7.2"
  6343. },
  6344. "suggest": {
  6345. "ext-intl": "For best performance"
  6346. },
  6347. "type": "library",
  6348. "extra": {
  6349. "thanks": {
  6350. "name": "symfony/polyfill",
  6351. "url": "https://github.com/symfony/polyfill"
  6352. }
  6353. },
  6354. "autoload": {
  6355. "files": [
  6356. "bootstrap.php"
  6357. ],
  6358. "psr-4": {
  6359. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6360. }
  6361. },
  6362. "notification-url": "https://packagist.org/downloads/",
  6363. "license": [
  6364. "MIT"
  6365. ],
  6366. "authors": [
  6367. {
  6368. "name": "Nicolas Grekas",
  6369. "email": "p@tchwork.com"
  6370. },
  6371. {
  6372. "name": "Symfony Community",
  6373. "homepage": "https://symfony.com/contributors"
  6374. }
  6375. ],
  6376. "description": "Symfony polyfill for intl's grapheme_* functions",
  6377. "homepage": "https://symfony.com",
  6378. "keywords": [
  6379. "compatibility",
  6380. "grapheme",
  6381. "intl",
  6382. "polyfill",
  6383. "portable",
  6384. "shim"
  6385. ],
  6386. "support": {
  6387. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6388. },
  6389. "funding": [
  6390. {
  6391. "url": "https://symfony.com/sponsor",
  6392. "type": "custom"
  6393. },
  6394. {
  6395. "url": "https://github.com/fabpot",
  6396. "type": "github"
  6397. },
  6398. {
  6399. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6400. "type": "tidelift"
  6401. }
  6402. ],
  6403. "time": "2024-09-09T11:45:10+00:00"
  6404. },
  6405. {
  6406. "name": "symfony/polyfill-intl-idn",
  6407. "version": "v1.31.0",
  6408. "source": {
  6409. "type": "git",
  6410. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6411. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  6412. },
  6413. "dist": {
  6414. "type": "zip",
  6415. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  6416. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  6417. "shasum": ""
  6418. },
  6419. "require": {
  6420. "php": ">=7.2",
  6421. "symfony/polyfill-intl-normalizer": "^1.10"
  6422. },
  6423. "suggest": {
  6424. "ext-intl": "For best performance"
  6425. },
  6426. "type": "library",
  6427. "extra": {
  6428. "thanks": {
  6429. "name": "symfony/polyfill",
  6430. "url": "https://github.com/symfony/polyfill"
  6431. }
  6432. },
  6433. "autoload": {
  6434. "files": [
  6435. "bootstrap.php"
  6436. ],
  6437. "psr-4": {
  6438. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6439. }
  6440. },
  6441. "notification-url": "https://packagist.org/downloads/",
  6442. "license": [
  6443. "MIT"
  6444. ],
  6445. "authors": [
  6446. {
  6447. "name": "Laurent Bassin",
  6448. "email": "laurent@bassin.info"
  6449. },
  6450. {
  6451. "name": "Trevor Rowbotham",
  6452. "email": "trevor.rowbotham@pm.me"
  6453. },
  6454. {
  6455. "name": "Symfony Community",
  6456. "homepage": "https://symfony.com/contributors"
  6457. }
  6458. ],
  6459. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6460. "homepage": "https://symfony.com",
  6461. "keywords": [
  6462. "compatibility",
  6463. "idn",
  6464. "intl",
  6465. "polyfill",
  6466. "portable",
  6467. "shim"
  6468. ],
  6469. "support": {
  6470. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  6471. },
  6472. "funding": [
  6473. {
  6474. "url": "https://symfony.com/sponsor",
  6475. "type": "custom"
  6476. },
  6477. {
  6478. "url": "https://github.com/fabpot",
  6479. "type": "github"
  6480. },
  6481. {
  6482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6483. "type": "tidelift"
  6484. }
  6485. ],
  6486. "time": "2024-09-09T11:45:10+00:00"
  6487. },
  6488. {
  6489. "name": "symfony/polyfill-intl-normalizer",
  6490. "version": "v1.31.0",
  6491. "source": {
  6492. "type": "git",
  6493. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6494. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6495. },
  6496. "dist": {
  6497. "type": "zip",
  6498. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6499. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6500. "shasum": ""
  6501. },
  6502. "require": {
  6503. "php": ">=7.2"
  6504. },
  6505. "suggest": {
  6506. "ext-intl": "For best performance"
  6507. },
  6508. "type": "library",
  6509. "extra": {
  6510. "thanks": {
  6511. "name": "symfony/polyfill",
  6512. "url": "https://github.com/symfony/polyfill"
  6513. }
  6514. },
  6515. "autoload": {
  6516. "files": [
  6517. "bootstrap.php"
  6518. ],
  6519. "psr-4": {
  6520. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6521. },
  6522. "classmap": [
  6523. "Resources/stubs"
  6524. ]
  6525. },
  6526. "notification-url": "https://packagist.org/downloads/",
  6527. "license": [
  6528. "MIT"
  6529. ],
  6530. "authors": [
  6531. {
  6532. "name": "Nicolas Grekas",
  6533. "email": "p@tchwork.com"
  6534. },
  6535. {
  6536. "name": "Symfony Community",
  6537. "homepage": "https://symfony.com/contributors"
  6538. }
  6539. ],
  6540. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6541. "homepage": "https://symfony.com",
  6542. "keywords": [
  6543. "compatibility",
  6544. "intl",
  6545. "normalizer",
  6546. "polyfill",
  6547. "portable",
  6548. "shim"
  6549. ],
  6550. "support": {
  6551. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6552. },
  6553. "funding": [
  6554. {
  6555. "url": "https://symfony.com/sponsor",
  6556. "type": "custom"
  6557. },
  6558. {
  6559. "url": "https://github.com/fabpot",
  6560. "type": "github"
  6561. },
  6562. {
  6563. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6564. "type": "tidelift"
  6565. }
  6566. ],
  6567. "time": "2024-09-09T11:45:10+00:00"
  6568. },
  6569. {
  6570. "name": "symfony/polyfill-mbstring",
  6571. "version": "v1.31.0",
  6572. "source": {
  6573. "type": "git",
  6574. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6575. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6576. },
  6577. "dist": {
  6578. "type": "zip",
  6579. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6580. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6581. "shasum": ""
  6582. },
  6583. "require": {
  6584. "php": ">=7.2"
  6585. },
  6586. "provide": {
  6587. "ext-mbstring": "*"
  6588. },
  6589. "suggest": {
  6590. "ext-mbstring": "For best performance"
  6591. },
  6592. "type": "library",
  6593. "extra": {
  6594. "thanks": {
  6595. "name": "symfony/polyfill",
  6596. "url": "https://github.com/symfony/polyfill"
  6597. }
  6598. },
  6599. "autoload": {
  6600. "files": [
  6601. "bootstrap.php"
  6602. ],
  6603. "psr-4": {
  6604. "Symfony\\Polyfill\\Mbstring\\": ""
  6605. }
  6606. },
  6607. "notification-url": "https://packagist.org/downloads/",
  6608. "license": [
  6609. "MIT"
  6610. ],
  6611. "authors": [
  6612. {
  6613. "name": "Nicolas Grekas",
  6614. "email": "p@tchwork.com"
  6615. },
  6616. {
  6617. "name": "Symfony Community",
  6618. "homepage": "https://symfony.com/contributors"
  6619. }
  6620. ],
  6621. "description": "Symfony polyfill for the Mbstring extension",
  6622. "homepage": "https://symfony.com",
  6623. "keywords": [
  6624. "compatibility",
  6625. "mbstring",
  6626. "polyfill",
  6627. "portable",
  6628. "shim"
  6629. ],
  6630. "support": {
  6631. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6632. },
  6633. "funding": [
  6634. {
  6635. "url": "https://symfony.com/sponsor",
  6636. "type": "custom"
  6637. },
  6638. {
  6639. "url": "https://github.com/fabpot",
  6640. "type": "github"
  6641. },
  6642. {
  6643. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6644. "type": "tidelift"
  6645. }
  6646. ],
  6647. "time": "2024-09-09T11:45:10+00:00"
  6648. },
  6649. {
  6650. "name": "symfony/polyfill-php80",
  6651. "version": "v1.31.0",
  6652. "source": {
  6653. "type": "git",
  6654. "url": "https://github.com/symfony/polyfill-php80.git",
  6655. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6656. },
  6657. "dist": {
  6658. "type": "zip",
  6659. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6660. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6661. "shasum": ""
  6662. },
  6663. "require": {
  6664. "php": ">=7.2"
  6665. },
  6666. "type": "library",
  6667. "extra": {
  6668. "thanks": {
  6669. "name": "symfony/polyfill",
  6670. "url": "https://github.com/symfony/polyfill"
  6671. }
  6672. },
  6673. "autoload": {
  6674. "files": [
  6675. "bootstrap.php"
  6676. ],
  6677. "psr-4": {
  6678. "Symfony\\Polyfill\\Php80\\": ""
  6679. },
  6680. "classmap": [
  6681. "Resources/stubs"
  6682. ]
  6683. },
  6684. "notification-url": "https://packagist.org/downloads/",
  6685. "license": [
  6686. "MIT"
  6687. ],
  6688. "authors": [
  6689. {
  6690. "name": "Ion Bazan",
  6691. "email": "ion.bazan@gmail.com"
  6692. },
  6693. {
  6694. "name": "Nicolas Grekas",
  6695. "email": "p@tchwork.com"
  6696. },
  6697. {
  6698. "name": "Symfony Community",
  6699. "homepage": "https://symfony.com/contributors"
  6700. }
  6701. ],
  6702. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6703. "homepage": "https://symfony.com",
  6704. "keywords": [
  6705. "compatibility",
  6706. "polyfill",
  6707. "portable",
  6708. "shim"
  6709. ],
  6710. "support": {
  6711. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6712. },
  6713. "funding": [
  6714. {
  6715. "url": "https://symfony.com/sponsor",
  6716. "type": "custom"
  6717. },
  6718. {
  6719. "url": "https://github.com/fabpot",
  6720. "type": "github"
  6721. },
  6722. {
  6723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6724. "type": "tidelift"
  6725. }
  6726. ],
  6727. "time": "2024-09-09T11:45:10+00:00"
  6728. },
  6729. {
  6730. "name": "symfony/polyfill-php81",
  6731. "version": "v1.31.0",
  6732. "source": {
  6733. "type": "git",
  6734. "url": "https://github.com/symfony/polyfill-php81.git",
  6735. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  6736. },
  6737. "dist": {
  6738. "type": "zip",
  6739. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6740. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6741. "shasum": ""
  6742. },
  6743. "require": {
  6744. "php": ">=7.2"
  6745. },
  6746. "type": "library",
  6747. "extra": {
  6748. "thanks": {
  6749. "name": "symfony/polyfill",
  6750. "url": "https://github.com/symfony/polyfill"
  6751. }
  6752. },
  6753. "autoload": {
  6754. "files": [
  6755. "bootstrap.php"
  6756. ],
  6757. "psr-4": {
  6758. "Symfony\\Polyfill\\Php81\\": ""
  6759. },
  6760. "classmap": [
  6761. "Resources/stubs"
  6762. ]
  6763. },
  6764. "notification-url": "https://packagist.org/downloads/",
  6765. "license": [
  6766. "MIT"
  6767. ],
  6768. "authors": [
  6769. {
  6770. "name": "Nicolas Grekas",
  6771. "email": "p@tchwork.com"
  6772. },
  6773. {
  6774. "name": "Symfony Community",
  6775. "homepage": "https://symfony.com/contributors"
  6776. }
  6777. ],
  6778. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6779. "homepage": "https://symfony.com",
  6780. "keywords": [
  6781. "compatibility",
  6782. "polyfill",
  6783. "portable",
  6784. "shim"
  6785. ],
  6786. "support": {
  6787. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  6788. },
  6789. "funding": [
  6790. {
  6791. "url": "https://symfony.com/sponsor",
  6792. "type": "custom"
  6793. },
  6794. {
  6795. "url": "https://github.com/fabpot",
  6796. "type": "github"
  6797. },
  6798. {
  6799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6800. "type": "tidelift"
  6801. }
  6802. ],
  6803. "time": "2024-09-09T11:45:10+00:00"
  6804. },
  6805. {
  6806. "name": "symfony/polyfill-php83",
  6807. "version": "v1.31.0",
  6808. "source": {
  6809. "type": "git",
  6810. "url": "https://github.com/symfony/polyfill-php83.git",
  6811. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  6812. },
  6813. "dist": {
  6814. "type": "zip",
  6815. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  6816. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  6817. "shasum": ""
  6818. },
  6819. "require": {
  6820. "php": ">=7.2"
  6821. },
  6822. "type": "library",
  6823. "extra": {
  6824. "thanks": {
  6825. "name": "symfony/polyfill",
  6826. "url": "https://github.com/symfony/polyfill"
  6827. }
  6828. },
  6829. "autoload": {
  6830. "files": [
  6831. "bootstrap.php"
  6832. ],
  6833. "psr-4": {
  6834. "Symfony\\Polyfill\\Php83\\": ""
  6835. },
  6836. "classmap": [
  6837. "Resources/stubs"
  6838. ]
  6839. },
  6840. "notification-url": "https://packagist.org/downloads/",
  6841. "license": [
  6842. "MIT"
  6843. ],
  6844. "authors": [
  6845. {
  6846. "name": "Nicolas Grekas",
  6847. "email": "p@tchwork.com"
  6848. },
  6849. {
  6850. "name": "Symfony Community",
  6851. "homepage": "https://symfony.com/contributors"
  6852. }
  6853. ],
  6854. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6855. "homepage": "https://symfony.com",
  6856. "keywords": [
  6857. "compatibility",
  6858. "polyfill",
  6859. "portable",
  6860. "shim"
  6861. ],
  6862. "support": {
  6863. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  6864. },
  6865. "funding": [
  6866. {
  6867. "url": "https://symfony.com/sponsor",
  6868. "type": "custom"
  6869. },
  6870. {
  6871. "url": "https://github.com/fabpot",
  6872. "type": "github"
  6873. },
  6874. {
  6875. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6876. "type": "tidelift"
  6877. }
  6878. ],
  6879. "time": "2024-09-09T11:45:10+00:00"
  6880. },
  6881. {
  6882. "name": "symfony/polyfill-uuid",
  6883. "version": "v1.31.0",
  6884. "source": {
  6885. "type": "git",
  6886. "url": "https://github.com/symfony/polyfill-uuid.git",
  6887. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  6888. },
  6889. "dist": {
  6890. "type": "zip",
  6891. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6892. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6893. "shasum": ""
  6894. },
  6895. "require": {
  6896. "php": ">=7.2"
  6897. },
  6898. "provide": {
  6899. "ext-uuid": "*"
  6900. },
  6901. "suggest": {
  6902. "ext-uuid": "For best performance"
  6903. },
  6904. "type": "library",
  6905. "extra": {
  6906. "thanks": {
  6907. "name": "symfony/polyfill",
  6908. "url": "https://github.com/symfony/polyfill"
  6909. }
  6910. },
  6911. "autoload": {
  6912. "files": [
  6913. "bootstrap.php"
  6914. ],
  6915. "psr-4": {
  6916. "Symfony\\Polyfill\\Uuid\\": ""
  6917. }
  6918. },
  6919. "notification-url": "https://packagist.org/downloads/",
  6920. "license": [
  6921. "MIT"
  6922. ],
  6923. "authors": [
  6924. {
  6925. "name": "Grégoire Pineau",
  6926. "email": "lyrixx@lyrixx.info"
  6927. },
  6928. {
  6929. "name": "Symfony Community",
  6930. "homepage": "https://symfony.com/contributors"
  6931. }
  6932. ],
  6933. "description": "Symfony polyfill for uuid functions",
  6934. "homepage": "https://symfony.com",
  6935. "keywords": [
  6936. "compatibility",
  6937. "polyfill",
  6938. "portable",
  6939. "uuid"
  6940. ],
  6941. "support": {
  6942. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  6943. },
  6944. "funding": [
  6945. {
  6946. "url": "https://symfony.com/sponsor",
  6947. "type": "custom"
  6948. },
  6949. {
  6950. "url": "https://github.com/fabpot",
  6951. "type": "github"
  6952. },
  6953. {
  6954. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6955. "type": "tidelift"
  6956. }
  6957. ],
  6958. "time": "2024-09-09T11:45:10+00:00"
  6959. },
  6960. {
  6961. "name": "symfony/process",
  6962. "version": "v7.1.8",
  6963. "source": {
  6964. "type": "git",
  6965. "url": "https://github.com/symfony/process.git",
  6966. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892"
  6967. },
  6968. "dist": {
  6969. "type": "zip",
  6970. "url": "https://api.github.com/repos/symfony/process/zipball/42783370fda6e538771f7c7a36e9fa2ee3a84892",
  6971. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892",
  6972. "shasum": ""
  6973. },
  6974. "require": {
  6975. "php": ">=8.2"
  6976. },
  6977. "type": "library",
  6978. "autoload": {
  6979. "psr-4": {
  6980. "Symfony\\Component\\Process\\": ""
  6981. },
  6982. "exclude-from-classmap": [
  6983. "/Tests/"
  6984. ]
  6985. },
  6986. "notification-url": "https://packagist.org/downloads/",
  6987. "license": [
  6988. "MIT"
  6989. ],
  6990. "authors": [
  6991. {
  6992. "name": "Fabien Potencier",
  6993. "email": "fabien@symfony.com"
  6994. },
  6995. {
  6996. "name": "Symfony Community",
  6997. "homepage": "https://symfony.com/contributors"
  6998. }
  6999. ],
  7000. "description": "Executes commands in sub-processes",
  7001. "homepage": "https://symfony.com",
  7002. "support": {
  7003. "source": "https://github.com/symfony/process/tree/v7.1.8"
  7004. },
  7005. "funding": [
  7006. {
  7007. "url": "https://symfony.com/sponsor",
  7008. "type": "custom"
  7009. },
  7010. {
  7011. "url": "https://github.com/fabpot",
  7012. "type": "github"
  7013. },
  7014. {
  7015. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7016. "type": "tidelift"
  7017. }
  7018. ],
  7019. "time": "2024-11-06T14:23:19+00:00"
  7020. },
  7021. {
  7022. "name": "symfony/psr-http-message-bridge",
  7023. "version": "v7.1.6",
  7024. "source": {
  7025. "type": "git",
  7026. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7027. "reference": "f16471bb19f6685b9ccf0a2c03c213840ae68cd6"
  7028. },
  7029. "dist": {
  7030. "type": "zip",
  7031. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/f16471bb19f6685b9ccf0a2c03c213840ae68cd6",
  7032. "reference": "f16471bb19f6685b9ccf0a2c03c213840ae68cd6",
  7033. "shasum": ""
  7034. },
  7035. "require": {
  7036. "php": ">=8.2",
  7037. "psr/http-message": "^1.0|^2.0",
  7038. "symfony/http-foundation": "^6.4|^7.0"
  7039. },
  7040. "conflict": {
  7041. "php-http/discovery": "<1.15",
  7042. "symfony/http-kernel": "<6.4"
  7043. },
  7044. "require-dev": {
  7045. "nyholm/psr7": "^1.1",
  7046. "php-http/discovery": "^1.15",
  7047. "psr/log": "^1.1.4|^2|^3",
  7048. "symfony/browser-kit": "^6.4|^7.0",
  7049. "symfony/config": "^6.4|^7.0",
  7050. "symfony/event-dispatcher": "^6.4|^7.0",
  7051. "symfony/framework-bundle": "^6.4|^7.0",
  7052. "symfony/http-kernel": "^6.4|^7.0"
  7053. },
  7054. "type": "symfony-bridge",
  7055. "autoload": {
  7056. "psr-4": {
  7057. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7058. },
  7059. "exclude-from-classmap": [
  7060. "/Tests/"
  7061. ]
  7062. },
  7063. "notification-url": "https://packagist.org/downloads/",
  7064. "license": [
  7065. "MIT"
  7066. ],
  7067. "authors": [
  7068. {
  7069. "name": "Fabien Potencier",
  7070. "email": "fabien@symfony.com"
  7071. },
  7072. {
  7073. "name": "Symfony Community",
  7074. "homepage": "https://symfony.com/contributors"
  7075. }
  7076. ],
  7077. "description": "PSR HTTP message bridge",
  7078. "homepage": "https://symfony.com",
  7079. "keywords": [
  7080. "http",
  7081. "http-message",
  7082. "psr-17",
  7083. "psr-7"
  7084. ],
  7085. "support": {
  7086. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.1.6"
  7087. },
  7088. "funding": [
  7089. {
  7090. "url": "https://symfony.com/sponsor",
  7091. "type": "custom"
  7092. },
  7093. {
  7094. "url": "https://github.com/fabpot",
  7095. "type": "github"
  7096. },
  7097. {
  7098. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7099. "type": "tidelift"
  7100. }
  7101. ],
  7102. "time": "2024-09-25T14:20:29+00:00"
  7103. },
  7104. {
  7105. "name": "symfony/routing",
  7106. "version": "v7.1.6",
  7107. "source": {
  7108. "type": "git",
  7109. "url": "https://github.com/symfony/routing.git",
  7110. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a"
  7111. },
  7112. "dist": {
  7113. "type": "zip",
  7114. "url": "https://api.github.com/repos/symfony/routing/zipball/66a2c469f6c22d08603235c46a20007c0701ea0a",
  7115. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a",
  7116. "shasum": ""
  7117. },
  7118. "require": {
  7119. "php": ">=8.2",
  7120. "symfony/deprecation-contracts": "^2.5|^3"
  7121. },
  7122. "conflict": {
  7123. "symfony/config": "<6.4",
  7124. "symfony/dependency-injection": "<6.4",
  7125. "symfony/yaml": "<6.4"
  7126. },
  7127. "require-dev": {
  7128. "psr/log": "^1|^2|^3",
  7129. "symfony/config": "^6.4|^7.0",
  7130. "symfony/dependency-injection": "^6.4|^7.0",
  7131. "symfony/expression-language": "^6.4|^7.0",
  7132. "symfony/http-foundation": "^6.4|^7.0",
  7133. "symfony/yaml": "^6.4|^7.0"
  7134. },
  7135. "type": "library",
  7136. "autoload": {
  7137. "psr-4": {
  7138. "Symfony\\Component\\Routing\\": ""
  7139. },
  7140. "exclude-from-classmap": [
  7141. "/Tests/"
  7142. ]
  7143. },
  7144. "notification-url": "https://packagist.org/downloads/",
  7145. "license": [
  7146. "MIT"
  7147. ],
  7148. "authors": [
  7149. {
  7150. "name": "Fabien Potencier",
  7151. "email": "fabien@symfony.com"
  7152. },
  7153. {
  7154. "name": "Symfony Community",
  7155. "homepage": "https://symfony.com/contributors"
  7156. }
  7157. ],
  7158. "description": "Maps an HTTP request to a set of configuration variables",
  7159. "homepage": "https://symfony.com",
  7160. "keywords": [
  7161. "router",
  7162. "routing",
  7163. "uri",
  7164. "url"
  7165. ],
  7166. "support": {
  7167. "source": "https://github.com/symfony/routing/tree/v7.1.6"
  7168. },
  7169. "funding": [
  7170. {
  7171. "url": "https://symfony.com/sponsor",
  7172. "type": "custom"
  7173. },
  7174. {
  7175. "url": "https://github.com/fabpot",
  7176. "type": "github"
  7177. },
  7178. {
  7179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7180. "type": "tidelift"
  7181. }
  7182. ],
  7183. "time": "2024-10-01T08:31:23+00:00"
  7184. },
  7185. {
  7186. "name": "symfony/service-contracts",
  7187. "version": "v3.5.0",
  7188. "source": {
  7189. "type": "git",
  7190. "url": "https://github.com/symfony/service-contracts.git",
  7191. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7192. },
  7193. "dist": {
  7194. "type": "zip",
  7195. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7196. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7197. "shasum": ""
  7198. },
  7199. "require": {
  7200. "php": ">=8.1",
  7201. "psr/container": "^1.1|^2.0",
  7202. "symfony/deprecation-contracts": "^2.5|^3"
  7203. },
  7204. "conflict": {
  7205. "ext-psr": "<1.1|>=2"
  7206. },
  7207. "type": "library",
  7208. "extra": {
  7209. "branch-alias": {
  7210. "dev-main": "3.5-dev"
  7211. },
  7212. "thanks": {
  7213. "name": "symfony/contracts",
  7214. "url": "https://github.com/symfony/contracts"
  7215. }
  7216. },
  7217. "autoload": {
  7218. "psr-4": {
  7219. "Symfony\\Contracts\\Service\\": ""
  7220. },
  7221. "exclude-from-classmap": [
  7222. "/Test/"
  7223. ]
  7224. },
  7225. "notification-url": "https://packagist.org/downloads/",
  7226. "license": [
  7227. "MIT"
  7228. ],
  7229. "authors": [
  7230. {
  7231. "name": "Nicolas Grekas",
  7232. "email": "p@tchwork.com"
  7233. },
  7234. {
  7235. "name": "Symfony Community",
  7236. "homepage": "https://symfony.com/contributors"
  7237. }
  7238. ],
  7239. "description": "Generic abstractions related to writing services",
  7240. "homepage": "https://symfony.com",
  7241. "keywords": [
  7242. "abstractions",
  7243. "contracts",
  7244. "decoupling",
  7245. "interfaces",
  7246. "interoperability",
  7247. "standards"
  7248. ],
  7249. "support": {
  7250. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7251. },
  7252. "funding": [
  7253. {
  7254. "url": "https://symfony.com/sponsor",
  7255. "type": "custom"
  7256. },
  7257. {
  7258. "url": "https://github.com/fabpot",
  7259. "type": "github"
  7260. },
  7261. {
  7262. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7263. "type": "tidelift"
  7264. }
  7265. ],
  7266. "time": "2024-04-18T09:32:20+00:00"
  7267. },
  7268. {
  7269. "name": "symfony/string",
  7270. "version": "v7.1.8",
  7271. "source": {
  7272. "type": "git",
  7273. "url": "https://github.com/symfony/string.git",
  7274. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281"
  7275. },
  7276. "dist": {
  7277. "type": "zip",
  7278. "url": "https://api.github.com/repos/symfony/string/zipball/591ebd41565f356fcd8b090fe64dbb5878f50281",
  7279. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281",
  7280. "shasum": ""
  7281. },
  7282. "require": {
  7283. "php": ">=8.2",
  7284. "symfony/polyfill-ctype": "~1.8",
  7285. "symfony/polyfill-intl-grapheme": "~1.0",
  7286. "symfony/polyfill-intl-normalizer": "~1.0",
  7287. "symfony/polyfill-mbstring": "~1.0"
  7288. },
  7289. "conflict": {
  7290. "symfony/translation-contracts": "<2.5"
  7291. },
  7292. "require-dev": {
  7293. "symfony/emoji": "^7.1",
  7294. "symfony/error-handler": "^6.4|^7.0",
  7295. "symfony/http-client": "^6.4|^7.0",
  7296. "symfony/intl": "^6.4|^7.0",
  7297. "symfony/translation-contracts": "^2.5|^3.0",
  7298. "symfony/var-exporter": "^6.4|^7.0"
  7299. },
  7300. "type": "library",
  7301. "autoload": {
  7302. "files": [
  7303. "Resources/functions.php"
  7304. ],
  7305. "psr-4": {
  7306. "Symfony\\Component\\String\\": ""
  7307. },
  7308. "exclude-from-classmap": [
  7309. "/Tests/"
  7310. ]
  7311. },
  7312. "notification-url": "https://packagist.org/downloads/",
  7313. "license": [
  7314. "MIT"
  7315. ],
  7316. "authors": [
  7317. {
  7318. "name": "Nicolas Grekas",
  7319. "email": "p@tchwork.com"
  7320. },
  7321. {
  7322. "name": "Symfony Community",
  7323. "homepage": "https://symfony.com/contributors"
  7324. }
  7325. ],
  7326. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7327. "homepage": "https://symfony.com",
  7328. "keywords": [
  7329. "grapheme",
  7330. "i18n",
  7331. "string",
  7332. "unicode",
  7333. "utf-8",
  7334. "utf8"
  7335. ],
  7336. "support": {
  7337. "source": "https://github.com/symfony/string/tree/v7.1.8"
  7338. },
  7339. "funding": [
  7340. {
  7341. "url": "https://symfony.com/sponsor",
  7342. "type": "custom"
  7343. },
  7344. {
  7345. "url": "https://github.com/fabpot",
  7346. "type": "github"
  7347. },
  7348. {
  7349. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7350. "type": "tidelift"
  7351. }
  7352. ],
  7353. "time": "2024-11-13T13:31:21+00:00"
  7354. },
  7355. {
  7356. "name": "symfony/translation",
  7357. "version": "v7.1.6",
  7358. "source": {
  7359. "type": "git",
  7360. "url": "https://github.com/symfony/translation.git",
  7361. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f"
  7362. },
  7363. "dist": {
  7364. "type": "zip",
  7365. "url": "https://api.github.com/repos/symfony/translation/zipball/b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7366. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7367. "shasum": ""
  7368. },
  7369. "require": {
  7370. "php": ">=8.2",
  7371. "symfony/polyfill-mbstring": "~1.0",
  7372. "symfony/translation-contracts": "^2.5|^3.0"
  7373. },
  7374. "conflict": {
  7375. "symfony/config": "<6.4",
  7376. "symfony/console": "<6.4",
  7377. "symfony/dependency-injection": "<6.4",
  7378. "symfony/http-client-contracts": "<2.5",
  7379. "symfony/http-kernel": "<6.4",
  7380. "symfony/service-contracts": "<2.5",
  7381. "symfony/twig-bundle": "<6.4",
  7382. "symfony/yaml": "<6.4"
  7383. },
  7384. "provide": {
  7385. "symfony/translation-implementation": "2.3|3.0"
  7386. },
  7387. "require-dev": {
  7388. "nikic/php-parser": "^4.18|^5.0",
  7389. "psr/log": "^1|^2|^3",
  7390. "symfony/config": "^6.4|^7.0",
  7391. "symfony/console": "^6.4|^7.0",
  7392. "symfony/dependency-injection": "^6.4|^7.0",
  7393. "symfony/finder": "^6.4|^7.0",
  7394. "symfony/http-client-contracts": "^2.5|^3.0",
  7395. "symfony/http-kernel": "^6.4|^7.0",
  7396. "symfony/intl": "^6.4|^7.0",
  7397. "symfony/polyfill-intl-icu": "^1.21",
  7398. "symfony/routing": "^6.4|^7.0",
  7399. "symfony/service-contracts": "^2.5|^3",
  7400. "symfony/yaml": "^6.4|^7.0"
  7401. },
  7402. "type": "library",
  7403. "autoload": {
  7404. "files": [
  7405. "Resources/functions.php"
  7406. ],
  7407. "psr-4": {
  7408. "Symfony\\Component\\Translation\\": ""
  7409. },
  7410. "exclude-from-classmap": [
  7411. "/Tests/"
  7412. ]
  7413. },
  7414. "notification-url": "https://packagist.org/downloads/",
  7415. "license": [
  7416. "MIT"
  7417. ],
  7418. "authors": [
  7419. {
  7420. "name": "Fabien Potencier",
  7421. "email": "fabien@symfony.com"
  7422. },
  7423. {
  7424. "name": "Symfony Community",
  7425. "homepage": "https://symfony.com/contributors"
  7426. }
  7427. ],
  7428. "description": "Provides tools to internationalize your application",
  7429. "homepage": "https://symfony.com",
  7430. "support": {
  7431. "source": "https://github.com/symfony/translation/tree/v7.1.6"
  7432. },
  7433. "funding": [
  7434. {
  7435. "url": "https://symfony.com/sponsor",
  7436. "type": "custom"
  7437. },
  7438. {
  7439. "url": "https://github.com/fabpot",
  7440. "type": "github"
  7441. },
  7442. {
  7443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7444. "type": "tidelift"
  7445. }
  7446. ],
  7447. "time": "2024-09-28T12:35:13+00:00"
  7448. },
  7449. {
  7450. "name": "symfony/translation-contracts",
  7451. "version": "v3.5.0",
  7452. "source": {
  7453. "type": "git",
  7454. "url": "https://github.com/symfony/translation-contracts.git",
  7455. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7456. },
  7457. "dist": {
  7458. "type": "zip",
  7459. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7460. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7461. "shasum": ""
  7462. },
  7463. "require": {
  7464. "php": ">=8.1"
  7465. },
  7466. "type": "library",
  7467. "extra": {
  7468. "branch-alias": {
  7469. "dev-main": "3.5-dev"
  7470. },
  7471. "thanks": {
  7472. "name": "symfony/contracts",
  7473. "url": "https://github.com/symfony/contracts"
  7474. }
  7475. },
  7476. "autoload": {
  7477. "psr-4": {
  7478. "Symfony\\Contracts\\Translation\\": ""
  7479. },
  7480. "exclude-from-classmap": [
  7481. "/Test/"
  7482. ]
  7483. },
  7484. "notification-url": "https://packagist.org/downloads/",
  7485. "license": [
  7486. "MIT"
  7487. ],
  7488. "authors": [
  7489. {
  7490. "name": "Nicolas Grekas",
  7491. "email": "p@tchwork.com"
  7492. },
  7493. {
  7494. "name": "Symfony Community",
  7495. "homepage": "https://symfony.com/contributors"
  7496. }
  7497. ],
  7498. "description": "Generic abstractions related to translation",
  7499. "homepage": "https://symfony.com",
  7500. "keywords": [
  7501. "abstractions",
  7502. "contracts",
  7503. "decoupling",
  7504. "interfaces",
  7505. "interoperability",
  7506. "standards"
  7507. ],
  7508. "support": {
  7509. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7510. },
  7511. "funding": [
  7512. {
  7513. "url": "https://symfony.com/sponsor",
  7514. "type": "custom"
  7515. },
  7516. {
  7517. "url": "https://github.com/fabpot",
  7518. "type": "github"
  7519. },
  7520. {
  7521. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7522. "type": "tidelift"
  7523. }
  7524. ],
  7525. "time": "2024-04-18T09:32:20+00:00"
  7526. },
  7527. {
  7528. "name": "symfony/uid",
  7529. "version": "v7.1.6",
  7530. "source": {
  7531. "type": "git",
  7532. "url": "https://github.com/symfony/uid.git",
  7533. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917"
  7534. },
  7535. "dist": {
  7536. "type": "zip",
  7537. "url": "https://api.github.com/repos/symfony/uid/zipball/65befb3bb2d503bbffbd08c815aa38b472999917",
  7538. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917",
  7539. "shasum": ""
  7540. },
  7541. "require": {
  7542. "php": ">=8.2",
  7543. "symfony/polyfill-uuid": "^1.15"
  7544. },
  7545. "require-dev": {
  7546. "symfony/console": "^6.4|^7.0"
  7547. },
  7548. "type": "library",
  7549. "autoload": {
  7550. "psr-4": {
  7551. "Symfony\\Component\\Uid\\": ""
  7552. },
  7553. "exclude-from-classmap": [
  7554. "/Tests/"
  7555. ]
  7556. },
  7557. "notification-url": "https://packagist.org/downloads/",
  7558. "license": [
  7559. "MIT"
  7560. ],
  7561. "authors": [
  7562. {
  7563. "name": "Grégoire Pineau",
  7564. "email": "lyrixx@lyrixx.info"
  7565. },
  7566. {
  7567. "name": "Nicolas Grekas",
  7568. "email": "p@tchwork.com"
  7569. },
  7570. {
  7571. "name": "Symfony Community",
  7572. "homepage": "https://symfony.com/contributors"
  7573. }
  7574. ],
  7575. "description": "Provides an object-oriented API to generate and represent UIDs",
  7576. "homepage": "https://symfony.com",
  7577. "keywords": [
  7578. "UID",
  7579. "ulid",
  7580. "uuid"
  7581. ],
  7582. "support": {
  7583. "source": "https://github.com/symfony/uid/tree/v7.1.6"
  7584. },
  7585. "funding": [
  7586. {
  7587. "url": "https://symfony.com/sponsor",
  7588. "type": "custom"
  7589. },
  7590. {
  7591. "url": "https://github.com/fabpot",
  7592. "type": "github"
  7593. },
  7594. {
  7595. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7596. "type": "tidelift"
  7597. }
  7598. ],
  7599. "time": "2024-09-25T14:20:29+00:00"
  7600. },
  7601. {
  7602. "name": "symfony/var-dumper",
  7603. "version": "v7.1.8",
  7604. "source": {
  7605. "type": "git",
  7606. "url": "https://github.com/symfony/var-dumper.git",
  7607. "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8"
  7608. },
  7609. "dist": {
  7610. "type": "zip",
  7611. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
  7612. "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
  7613. "shasum": ""
  7614. },
  7615. "require": {
  7616. "php": ">=8.2",
  7617. "symfony/polyfill-mbstring": "~1.0"
  7618. },
  7619. "conflict": {
  7620. "symfony/console": "<6.4"
  7621. },
  7622. "require-dev": {
  7623. "ext-iconv": "*",
  7624. "symfony/console": "^6.4|^7.0",
  7625. "symfony/http-kernel": "^6.4|^7.0",
  7626. "symfony/process": "^6.4|^7.0",
  7627. "symfony/uid": "^6.4|^7.0",
  7628. "twig/twig": "^3.0.4"
  7629. },
  7630. "bin": [
  7631. "Resources/bin/var-dump-server"
  7632. ],
  7633. "type": "library",
  7634. "autoload": {
  7635. "files": [
  7636. "Resources/functions/dump.php"
  7637. ],
  7638. "psr-4": {
  7639. "Symfony\\Component\\VarDumper\\": ""
  7640. },
  7641. "exclude-from-classmap": [
  7642. "/Tests/"
  7643. ]
  7644. },
  7645. "notification-url": "https://packagist.org/downloads/",
  7646. "license": [
  7647. "MIT"
  7648. ],
  7649. "authors": [
  7650. {
  7651. "name": "Nicolas Grekas",
  7652. "email": "p@tchwork.com"
  7653. },
  7654. {
  7655. "name": "Symfony Community",
  7656. "homepage": "https://symfony.com/contributors"
  7657. }
  7658. ],
  7659. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7660. "homepage": "https://symfony.com",
  7661. "keywords": [
  7662. "debug",
  7663. "dump"
  7664. ],
  7665. "support": {
  7666. "source": "https://github.com/symfony/var-dumper/tree/v7.1.8"
  7667. },
  7668. "funding": [
  7669. {
  7670. "url": "https://symfony.com/sponsor",
  7671. "type": "custom"
  7672. },
  7673. {
  7674. "url": "https://github.com/fabpot",
  7675. "type": "github"
  7676. },
  7677. {
  7678. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7679. "type": "tidelift"
  7680. }
  7681. ],
  7682. "time": "2024-11-08T15:46:42+00:00"
  7683. },
  7684. {
  7685. "name": "symfony/var-exporter",
  7686. "version": "v7.1.6",
  7687. "source": {
  7688. "type": "git",
  7689. "url": "https://github.com/symfony/var-exporter.git",
  7690. "reference": "90173ef89c40e7c8c616653241048705f84130ef"
  7691. },
  7692. "dist": {
  7693. "type": "zip",
  7694. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/90173ef89c40e7c8c616653241048705f84130ef",
  7695. "reference": "90173ef89c40e7c8c616653241048705f84130ef",
  7696. "shasum": ""
  7697. },
  7698. "require": {
  7699. "php": ">=8.2"
  7700. },
  7701. "require-dev": {
  7702. "symfony/property-access": "^6.4|^7.0",
  7703. "symfony/serializer": "^6.4|^7.0",
  7704. "symfony/var-dumper": "^6.4|^7.0"
  7705. },
  7706. "type": "library",
  7707. "autoload": {
  7708. "psr-4": {
  7709. "Symfony\\Component\\VarExporter\\": ""
  7710. },
  7711. "exclude-from-classmap": [
  7712. "/Tests/"
  7713. ]
  7714. },
  7715. "notification-url": "https://packagist.org/downloads/",
  7716. "license": [
  7717. "MIT"
  7718. ],
  7719. "authors": [
  7720. {
  7721. "name": "Nicolas Grekas",
  7722. "email": "p@tchwork.com"
  7723. },
  7724. {
  7725. "name": "Symfony Community",
  7726. "homepage": "https://symfony.com/contributors"
  7727. }
  7728. ],
  7729. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7730. "homepage": "https://symfony.com",
  7731. "keywords": [
  7732. "clone",
  7733. "construct",
  7734. "export",
  7735. "hydrate",
  7736. "instantiate",
  7737. "lazy-loading",
  7738. "proxy",
  7739. "serialize"
  7740. ],
  7741. "support": {
  7742. "source": "https://github.com/symfony/var-exporter/tree/v7.1.6"
  7743. },
  7744. "funding": [
  7745. {
  7746. "url": "https://symfony.com/sponsor",
  7747. "type": "custom"
  7748. },
  7749. {
  7750. "url": "https://github.com/fabpot",
  7751. "type": "github"
  7752. },
  7753. {
  7754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7755. "type": "tidelift"
  7756. }
  7757. ],
  7758. "time": "2024-09-25T14:20:29+00:00"
  7759. },
  7760. {
  7761. "name": "symfony/yaml",
  7762. "version": "v7.1.6",
  7763. "source": {
  7764. "type": "git",
  7765. "url": "https://github.com/symfony/yaml.git",
  7766. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671"
  7767. },
  7768. "dist": {
  7769. "type": "zip",
  7770. "url": "https://api.github.com/repos/symfony/yaml/zipball/3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  7771. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  7772. "shasum": ""
  7773. },
  7774. "require": {
  7775. "php": ">=8.2",
  7776. "symfony/polyfill-ctype": "^1.8"
  7777. },
  7778. "conflict": {
  7779. "symfony/console": "<6.4"
  7780. },
  7781. "require-dev": {
  7782. "symfony/console": "^6.4|^7.0"
  7783. },
  7784. "bin": [
  7785. "Resources/bin/yaml-lint"
  7786. ],
  7787. "type": "library",
  7788. "autoload": {
  7789. "psr-4": {
  7790. "Symfony\\Component\\Yaml\\": ""
  7791. },
  7792. "exclude-from-classmap": [
  7793. "/Tests/"
  7794. ]
  7795. },
  7796. "notification-url": "https://packagist.org/downloads/",
  7797. "license": [
  7798. "MIT"
  7799. ],
  7800. "authors": [
  7801. {
  7802. "name": "Fabien Potencier",
  7803. "email": "fabien@symfony.com"
  7804. },
  7805. {
  7806. "name": "Symfony Community",
  7807. "homepage": "https://symfony.com/contributors"
  7808. }
  7809. ],
  7810. "description": "Loads and dumps YAML files",
  7811. "homepage": "https://symfony.com",
  7812. "support": {
  7813. "source": "https://github.com/symfony/yaml/tree/v7.1.6"
  7814. },
  7815. "funding": [
  7816. {
  7817. "url": "https://symfony.com/sponsor",
  7818. "type": "custom"
  7819. },
  7820. {
  7821. "url": "https://github.com/fabpot",
  7822. "type": "github"
  7823. },
  7824. {
  7825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7826. "type": "tidelift"
  7827. }
  7828. ],
  7829. "time": "2024-09-25T14:20:29+00:00"
  7830. },
  7831. {
  7832. "name": "thenorthmemory/xml",
  7833. "version": "1.1.1",
  7834. "source": {
  7835. "type": "git",
  7836. "url": "https://github.com/TheNorthMemory/xml.git",
  7837. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb"
  7838. },
  7839. "dist": {
  7840. "type": "zip",
  7841. "url": "https://api.github.com/repos/TheNorthMemory/xml/zipball/6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  7842. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  7843. "shasum": ""
  7844. },
  7845. "require": {
  7846. "ext-libxml": "*",
  7847. "ext-simplexml": "*",
  7848. "php": ">=7.1.2"
  7849. },
  7850. "require-dev": {
  7851. "phpstan/phpstan": "^0.12.89 || ^1.0",
  7852. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  7853. },
  7854. "type": "library",
  7855. "autoload": {
  7856. "psr-4": {
  7857. "TheNorthMemory\\Xml\\": "src/"
  7858. }
  7859. },
  7860. "notification-url": "https://packagist.org/downloads/",
  7861. "license": [
  7862. "Apache-2.0"
  7863. ],
  7864. "authors": [
  7865. {
  7866. "name": "James ZHANG",
  7867. "homepage": "https://github.com/TheNorthMemory"
  7868. }
  7869. ],
  7870. "description": "A wrapper of the XML parser and builder",
  7871. "homepage": "https://github.com/TheNorthMemory/xml",
  7872. "keywords": [
  7873. "xml-builder",
  7874. "xml-parser"
  7875. ],
  7876. "support": {
  7877. "issues": "https://github.com/TheNorthMemory/xml/issues",
  7878. "source": "https://github.com/TheNorthMemory/xml/tree/1.1.1"
  7879. },
  7880. "time": "2023-01-15T06:01:13+00:00"
  7881. },
  7882. {
  7883. "name": "tijsverkoyen/css-to-inline-styles",
  7884. "version": "v2.2.7",
  7885. "source": {
  7886. "type": "git",
  7887. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7888. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  7889. },
  7890. "dist": {
  7891. "type": "zip",
  7892. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7893. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7894. "shasum": ""
  7895. },
  7896. "require": {
  7897. "ext-dom": "*",
  7898. "ext-libxml": "*",
  7899. "php": "^5.5 || ^7.0 || ^8.0",
  7900. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  7901. },
  7902. "require-dev": {
  7903. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7904. },
  7905. "type": "library",
  7906. "extra": {
  7907. "branch-alias": {
  7908. "dev-master": "2.2.x-dev"
  7909. }
  7910. },
  7911. "autoload": {
  7912. "psr-4": {
  7913. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7914. }
  7915. },
  7916. "notification-url": "https://packagist.org/downloads/",
  7917. "license": [
  7918. "BSD-3-Clause"
  7919. ],
  7920. "authors": [
  7921. {
  7922. "name": "Tijs Verkoyen",
  7923. "email": "css_to_inline_styles@verkoyen.eu",
  7924. "role": "Developer"
  7925. }
  7926. ],
  7927. "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.",
  7928. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7929. "support": {
  7930. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7931. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  7932. },
  7933. "time": "2023-12-08T13:03:43+00:00"
  7934. },
  7935. {
  7936. "name": "vlucas/phpdotenv",
  7937. "version": "v5.6.1",
  7938. "source": {
  7939. "type": "git",
  7940. "url": "https://github.com/vlucas/phpdotenv.git",
  7941. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7942. },
  7943. "dist": {
  7944. "type": "zip",
  7945. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7946. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7947. "shasum": ""
  7948. },
  7949. "require": {
  7950. "ext-pcre": "*",
  7951. "graham-campbell/result-type": "^1.1.3",
  7952. "php": "^7.2.5 || ^8.0",
  7953. "phpoption/phpoption": "^1.9.3",
  7954. "symfony/polyfill-ctype": "^1.24",
  7955. "symfony/polyfill-mbstring": "^1.24",
  7956. "symfony/polyfill-php80": "^1.24"
  7957. },
  7958. "require-dev": {
  7959. "bamarni/composer-bin-plugin": "^1.8.2",
  7960. "ext-filter": "*",
  7961. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7962. },
  7963. "suggest": {
  7964. "ext-filter": "Required to use the boolean validator."
  7965. },
  7966. "type": "library",
  7967. "extra": {
  7968. "bamarni-bin": {
  7969. "bin-links": true,
  7970. "forward-command": false
  7971. },
  7972. "branch-alias": {
  7973. "dev-master": "5.6-dev"
  7974. }
  7975. },
  7976. "autoload": {
  7977. "psr-4": {
  7978. "Dotenv\\": "src/"
  7979. }
  7980. },
  7981. "notification-url": "https://packagist.org/downloads/",
  7982. "license": [
  7983. "BSD-3-Clause"
  7984. ],
  7985. "authors": [
  7986. {
  7987. "name": "Graham Campbell",
  7988. "email": "hello@gjcampbell.co.uk",
  7989. "homepage": "https://github.com/GrahamCampbell"
  7990. },
  7991. {
  7992. "name": "Vance Lucas",
  7993. "email": "vance@vancelucas.com",
  7994. "homepage": "https://github.com/vlucas"
  7995. }
  7996. ],
  7997. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7998. "keywords": [
  7999. "dotenv",
  8000. "env",
  8001. "environment"
  8002. ],
  8003. "support": {
  8004. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8005. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8006. },
  8007. "funding": [
  8008. {
  8009. "url": "https://github.com/GrahamCampbell",
  8010. "type": "github"
  8011. },
  8012. {
  8013. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8014. "type": "tidelift"
  8015. }
  8016. ],
  8017. "time": "2024-07-20T21:52:34+00:00"
  8018. },
  8019. {
  8020. "name": "voku/portable-ascii",
  8021. "version": "2.0.3",
  8022. "source": {
  8023. "type": "git",
  8024. "url": "https://github.com/voku/portable-ascii.git",
  8025. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  8026. },
  8027. "dist": {
  8028. "type": "zip",
  8029. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  8030. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  8031. "shasum": ""
  8032. },
  8033. "require": {
  8034. "php": ">=7.0.0"
  8035. },
  8036. "require-dev": {
  8037. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8038. },
  8039. "suggest": {
  8040. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8041. },
  8042. "type": "library",
  8043. "autoload": {
  8044. "psr-4": {
  8045. "voku\\": "src/voku/"
  8046. }
  8047. },
  8048. "notification-url": "https://packagist.org/downloads/",
  8049. "license": [
  8050. "MIT"
  8051. ],
  8052. "authors": [
  8053. {
  8054. "name": "Lars Moelleken",
  8055. "homepage": "https://www.moelleken.org/"
  8056. }
  8057. ],
  8058. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8059. "homepage": "https://github.com/voku/portable-ascii",
  8060. "keywords": [
  8061. "ascii",
  8062. "clean",
  8063. "php"
  8064. ],
  8065. "support": {
  8066. "issues": "https://github.com/voku/portable-ascii/issues",
  8067. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  8068. },
  8069. "funding": [
  8070. {
  8071. "url": "https://www.paypal.me/moelleken",
  8072. "type": "custom"
  8073. },
  8074. {
  8075. "url": "https://github.com/voku",
  8076. "type": "github"
  8077. },
  8078. {
  8079. "url": "https://opencollective.com/portable-ascii",
  8080. "type": "open_collective"
  8081. },
  8082. {
  8083. "url": "https://www.patreon.com/voku",
  8084. "type": "patreon"
  8085. },
  8086. {
  8087. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8088. "type": "tidelift"
  8089. }
  8090. ],
  8091. "time": "2024-11-21T01:49:47+00:00"
  8092. },
  8093. {
  8094. "name": "w7corp/easywechat",
  8095. "version": "6.15.5",
  8096. "source": {
  8097. "type": "git",
  8098. "url": "https://github.com/w7corp/easywechat.git",
  8099. "reference": "d643084ba958ba8ca077e82b805748dfeb5aa44d"
  8100. },
  8101. "dist": {
  8102. "type": "zip",
  8103. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/d643084ba958ba8ca077e82b805748dfeb5aa44d",
  8104. "reference": "d643084ba958ba8ca077e82b805748dfeb5aa44d",
  8105. "shasum": ""
  8106. },
  8107. "require": {
  8108. "ext-curl": "*",
  8109. "ext-fileinfo": "*",
  8110. "ext-libxml": "*",
  8111. "ext-openssl": "*",
  8112. "ext-simplexml": "*",
  8113. "ext-sodium": "*",
  8114. "nyholm/psr7": "^1.5",
  8115. "nyholm/psr7-server": "^1.0",
  8116. "overtrue/socialite": "^3.5.4|^4.0.1",
  8117. "php": ">=8.0.2",
  8118. "psr/http-client": "^1.0",
  8119. "psr/simple-cache": "^1.0|^2.0|^3.0",
  8120. "symfony/cache": "^5.4|^6.0|^7.0",
  8121. "symfony/http-client": "^5.4|^6.0|^7.0",
  8122. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8123. "symfony/mime": "^5.4|^6.0|^7.0",
  8124. "symfony/polyfill-php81": "^1.25",
  8125. "symfony/psr-http-message-bridge": "^2.1.2|^6.4.0|^7.1",
  8126. "thenorthmemory/xml": "^1.0"
  8127. },
  8128. "require-dev": {
  8129. "jetbrains/phpstorm-attributes": "^1.0",
  8130. "laravel/pint": "^1.2",
  8131. "mikey179/vfsstream": "^1.6",
  8132. "mockery/mockery": "^1.4.4",
  8133. "phpstan/phpstan": "^1.0",
  8134. "phpunit/phpunit": "^9.5",
  8135. "symfony/var-dumper": "^5.2"
  8136. },
  8137. "type": "library",
  8138. "autoload": {
  8139. "psr-4": {
  8140. "EasyWeChat\\": "src/"
  8141. }
  8142. },
  8143. "notification-url": "https://packagist.org/downloads/",
  8144. "license": [
  8145. "MIT"
  8146. ],
  8147. "authors": [
  8148. {
  8149. "name": "overtrue",
  8150. "email": "anzhengchao@gmail.com"
  8151. }
  8152. ],
  8153. "description": "微信SDK",
  8154. "keywords": [
  8155. "easywechat",
  8156. "sdk",
  8157. "wechat",
  8158. "weixin",
  8159. "weixin-sdk"
  8160. ],
  8161. "support": {
  8162. "issues": "https://github.com/w7corp/easywechat/issues",
  8163. "source": "https://github.com/w7corp/easywechat/tree/6.15.5"
  8164. },
  8165. "funding": [
  8166. {
  8167. "url": "https://github.com/overtrue",
  8168. "type": "github"
  8169. }
  8170. ],
  8171. "time": "2024-11-15T04:34:15+00:00"
  8172. },
  8173. {
  8174. "name": "webmozart/assert",
  8175. "version": "1.11.0",
  8176. "source": {
  8177. "type": "git",
  8178. "url": "https://github.com/webmozarts/assert.git",
  8179. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8180. },
  8181. "dist": {
  8182. "type": "zip",
  8183. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8184. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8185. "shasum": ""
  8186. },
  8187. "require": {
  8188. "ext-ctype": "*",
  8189. "php": "^7.2 || ^8.0"
  8190. },
  8191. "conflict": {
  8192. "phpstan/phpstan": "<0.12.20",
  8193. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8194. },
  8195. "require-dev": {
  8196. "phpunit/phpunit": "^8.5.13"
  8197. },
  8198. "type": "library",
  8199. "extra": {
  8200. "branch-alias": {
  8201. "dev-master": "1.10-dev"
  8202. }
  8203. },
  8204. "autoload": {
  8205. "psr-4": {
  8206. "Webmozart\\Assert\\": "src/"
  8207. }
  8208. },
  8209. "notification-url": "https://packagist.org/downloads/",
  8210. "license": [
  8211. "MIT"
  8212. ],
  8213. "authors": [
  8214. {
  8215. "name": "Bernhard Schussek",
  8216. "email": "bschussek@gmail.com"
  8217. }
  8218. ],
  8219. "description": "Assertions to validate method input/output with nice error messages.",
  8220. "keywords": [
  8221. "assert",
  8222. "check",
  8223. "validate"
  8224. ],
  8225. "support": {
  8226. "issues": "https://github.com/webmozarts/assert/issues",
  8227. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8228. },
  8229. "time": "2022-06-03T18:03:27+00:00"
  8230. }
  8231. ],
  8232. "packages-dev": [
  8233. {
  8234. "name": "barryvdh/laravel-ide-helper",
  8235. "version": "v3.2.2",
  8236. "source": {
  8237. "type": "git",
  8238. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  8239. "reference": "07e3bd8796f3d1414801a03d3783f9d3ec9efc08"
  8240. },
  8241. "dist": {
  8242. "type": "zip",
  8243. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/07e3bd8796f3d1414801a03d3783f9d3ec9efc08",
  8244. "reference": "07e3bd8796f3d1414801a03d3783f9d3ec9efc08",
  8245. "shasum": ""
  8246. },
  8247. "require": {
  8248. "barryvdh/reflection-docblock": "^2.1.2",
  8249. "composer/class-map-generator": "^1.0",
  8250. "ext-json": "*",
  8251. "illuminate/console": "^11.15",
  8252. "illuminate/database": "^11.15",
  8253. "illuminate/filesystem": "^11.15",
  8254. "illuminate/support": "^11.15",
  8255. "nikic/php-parser": "^4.18 || ^5",
  8256. "php": "^8.2",
  8257. "phpdocumentor/type-resolver": "^1.1.0"
  8258. },
  8259. "require-dev": {
  8260. "ext-pdo_sqlite": "*",
  8261. "friendsofphp/php-cs-fixer": "^3",
  8262. "illuminate/config": "^11.15",
  8263. "illuminate/view": "^11.15",
  8264. "mockery/mockery": "^1.4",
  8265. "orchestra/testbench": "^9.2",
  8266. "phpunit/phpunit": "^10.5",
  8267. "spatie/phpunit-snapshot-assertions": "^4 || ^5",
  8268. "vimeo/psalm": "^5.4"
  8269. },
  8270. "suggest": {
  8271. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9|^10|^11)."
  8272. },
  8273. "type": "library",
  8274. "extra": {
  8275. "branch-alias": {
  8276. "dev-master": "3.2-dev"
  8277. },
  8278. "laravel": {
  8279. "providers": [
  8280. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  8281. ]
  8282. }
  8283. },
  8284. "autoload": {
  8285. "psr-4": {
  8286. "Barryvdh\\LaravelIdeHelper\\": "src"
  8287. }
  8288. },
  8289. "notification-url": "https://packagist.org/downloads/",
  8290. "license": [
  8291. "MIT"
  8292. ],
  8293. "authors": [
  8294. {
  8295. "name": "Barry vd. Heuvel",
  8296. "email": "barryvdh@gmail.com"
  8297. }
  8298. ],
  8299. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  8300. "keywords": [
  8301. "autocomplete",
  8302. "codeintel",
  8303. "helper",
  8304. "ide",
  8305. "laravel",
  8306. "netbeans",
  8307. "phpdoc",
  8308. "phpstorm",
  8309. "sublime"
  8310. ],
  8311. "support": {
  8312. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  8313. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v3.2.2"
  8314. },
  8315. "funding": [
  8316. {
  8317. "url": "https://fruitcake.nl",
  8318. "type": "custom"
  8319. },
  8320. {
  8321. "url": "https://github.com/barryvdh",
  8322. "type": "github"
  8323. }
  8324. ],
  8325. "time": "2024-10-29T14:00:16+00:00"
  8326. },
  8327. {
  8328. "name": "barryvdh/reflection-docblock",
  8329. "version": "v2.1.3",
  8330. "source": {
  8331. "type": "git",
  8332. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  8333. "reference": "c6fad15f7c878be21650c51e1f841bca7e49752e"
  8334. },
  8335. "dist": {
  8336. "type": "zip",
  8337. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/c6fad15f7c878be21650c51e1f841bca7e49752e",
  8338. "reference": "c6fad15f7c878be21650c51e1f841bca7e49752e",
  8339. "shasum": ""
  8340. },
  8341. "require": {
  8342. "php": ">=5.3.3"
  8343. },
  8344. "require-dev": {
  8345. "phpunit/phpunit": "^8.5.14|^9"
  8346. },
  8347. "suggest": {
  8348. "dflydev/markdown": "~1.0",
  8349. "erusev/parsedown": "~1.0"
  8350. },
  8351. "type": "library",
  8352. "extra": {
  8353. "branch-alias": {
  8354. "dev-master": "2.0.x-dev"
  8355. }
  8356. },
  8357. "autoload": {
  8358. "psr-0": {
  8359. "Barryvdh": [
  8360. "src/"
  8361. ]
  8362. }
  8363. },
  8364. "notification-url": "https://packagist.org/downloads/",
  8365. "license": [
  8366. "MIT"
  8367. ],
  8368. "authors": [
  8369. {
  8370. "name": "Mike van Riel",
  8371. "email": "mike.vanriel@naenius.com"
  8372. }
  8373. ],
  8374. "support": {
  8375. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.1.3"
  8376. },
  8377. "time": "2024-10-23T11:41:03+00:00"
  8378. },
  8379. {
  8380. "name": "composer/class-map-generator",
  8381. "version": "1.5.0",
  8382. "source": {
  8383. "type": "git",
  8384. "url": "https://github.com/composer/class-map-generator.git",
  8385. "reference": "4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915"
  8386. },
  8387. "dist": {
  8388. "type": "zip",
  8389. "url": "https://api.github.com/repos/composer/class-map-generator/zipball/4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915",
  8390. "reference": "4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915",
  8391. "shasum": ""
  8392. },
  8393. "require": {
  8394. "composer/pcre": "^2.1 || ^3.1",
  8395. "php": "^7.2 || ^8.0",
  8396. "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
  8397. },
  8398. "require-dev": {
  8399. "phpstan/phpstan": "^1.12 || ^2",
  8400. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  8401. "phpstan/phpstan-phpunit": "^1 || ^2",
  8402. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  8403. "phpunit/phpunit": "^8",
  8404. "symfony/filesystem": "^5.4 || ^6"
  8405. },
  8406. "type": "library",
  8407. "extra": {
  8408. "branch-alias": {
  8409. "dev-main": "1.x-dev"
  8410. }
  8411. },
  8412. "autoload": {
  8413. "psr-4": {
  8414. "Composer\\ClassMapGenerator\\": "src"
  8415. }
  8416. },
  8417. "notification-url": "https://packagist.org/downloads/",
  8418. "license": [
  8419. "MIT"
  8420. ],
  8421. "authors": [
  8422. {
  8423. "name": "Jordi Boggiano",
  8424. "email": "j.boggiano@seld.be",
  8425. "homepage": "https://seld.be"
  8426. }
  8427. ],
  8428. "description": "Utilities to scan PHP code and generate class maps.",
  8429. "keywords": [
  8430. "classmap"
  8431. ],
  8432. "support": {
  8433. "issues": "https://github.com/composer/class-map-generator/issues",
  8434. "source": "https://github.com/composer/class-map-generator/tree/1.5.0"
  8435. },
  8436. "funding": [
  8437. {
  8438. "url": "https://packagist.com",
  8439. "type": "custom"
  8440. },
  8441. {
  8442. "url": "https://github.com/composer",
  8443. "type": "github"
  8444. },
  8445. {
  8446. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8447. "type": "tidelift"
  8448. }
  8449. ],
  8450. "time": "2024-11-25T16:11:06+00:00"
  8451. },
  8452. {
  8453. "name": "composer/pcre",
  8454. "version": "3.3.2",
  8455. "source": {
  8456. "type": "git",
  8457. "url": "https://github.com/composer/pcre.git",
  8458. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8459. },
  8460. "dist": {
  8461. "type": "zip",
  8462. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8463. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8464. "shasum": ""
  8465. },
  8466. "require": {
  8467. "php": "^7.4 || ^8.0"
  8468. },
  8469. "conflict": {
  8470. "phpstan/phpstan": "<1.11.10"
  8471. },
  8472. "require-dev": {
  8473. "phpstan/phpstan": "^1.12 || ^2",
  8474. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8475. "phpunit/phpunit": "^8 || ^9"
  8476. },
  8477. "type": "library",
  8478. "extra": {
  8479. "branch-alias": {
  8480. "dev-main": "3.x-dev"
  8481. },
  8482. "phpstan": {
  8483. "includes": [
  8484. "extension.neon"
  8485. ]
  8486. }
  8487. },
  8488. "autoload": {
  8489. "psr-4": {
  8490. "Composer\\Pcre\\": "src"
  8491. }
  8492. },
  8493. "notification-url": "https://packagist.org/downloads/",
  8494. "license": [
  8495. "MIT"
  8496. ],
  8497. "authors": [
  8498. {
  8499. "name": "Jordi Boggiano",
  8500. "email": "j.boggiano@seld.be",
  8501. "homepage": "http://seld.be"
  8502. }
  8503. ],
  8504. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8505. "keywords": [
  8506. "PCRE",
  8507. "preg",
  8508. "regex",
  8509. "regular expression"
  8510. ],
  8511. "support": {
  8512. "issues": "https://github.com/composer/pcre/issues",
  8513. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8514. },
  8515. "funding": [
  8516. {
  8517. "url": "https://packagist.com",
  8518. "type": "custom"
  8519. },
  8520. {
  8521. "url": "https://github.com/composer",
  8522. "type": "github"
  8523. },
  8524. {
  8525. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8526. "type": "tidelift"
  8527. }
  8528. ],
  8529. "time": "2024-11-12T16:29:46+00:00"
  8530. },
  8531. {
  8532. "name": "doctrine/deprecations",
  8533. "version": "1.1.3",
  8534. "source": {
  8535. "type": "git",
  8536. "url": "https://github.com/doctrine/deprecations.git",
  8537. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  8538. },
  8539. "dist": {
  8540. "type": "zip",
  8541. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  8542. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  8543. "shasum": ""
  8544. },
  8545. "require": {
  8546. "php": "^7.1 || ^8.0"
  8547. },
  8548. "require-dev": {
  8549. "doctrine/coding-standard": "^9",
  8550. "phpstan/phpstan": "1.4.10 || 1.10.15",
  8551. "phpstan/phpstan-phpunit": "^1.0",
  8552. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8553. "psalm/plugin-phpunit": "0.18.4",
  8554. "psr/log": "^1 || ^2 || ^3",
  8555. "vimeo/psalm": "4.30.0 || 5.12.0"
  8556. },
  8557. "suggest": {
  8558. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  8559. },
  8560. "type": "library",
  8561. "autoload": {
  8562. "psr-4": {
  8563. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  8564. }
  8565. },
  8566. "notification-url": "https://packagist.org/downloads/",
  8567. "license": [
  8568. "MIT"
  8569. ],
  8570. "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.",
  8571. "homepage": "https://www.doctrine-project.org/",
  8572. "support": {
  8573. "issues": "https://github.com/doctrine/deprecations/issues",
  8574. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  8575. },
  8576. "time": "2024-01-30T19:34:25+00:00"
  8577. },
  8578. {
  8579. "name": "hamcrest/hamcrest-php",
  8580. "version": "v2.0.1",
  8581. "source": {
  8582. "type": "git",
  8583. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8584. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8585. },
  8586. "dist": {
  8587. "type": "zip",
  8588. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8589. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8590. "shasum": ""
  8591. },
  8592. "require": {
  8593. "php": "^5.3|^7.0|^8.0"
  8594. },
  8595. "replace": {
  8596. "cordoval/hamcrest-php": "*",
  8597. "davedevelopment/hamcrest-php": "*",
  8598. "kodova/hamcrest-php": "*"
  8599. },
  8600. "require-dev": {
  8601. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8602. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8603. },
  8604. "type": "library",
  8605. "extra": {
  8606. "branch-alias": {
  8607. "dev-master": "2.1-dev"
  8608. }
  8609. },
  8610. "autoload": {
  8611. "classmap": [
  8612. "hamcrest"
  8613. ]
  8614. },
  8615. "notification-url": "https://packagist.org/downloads/",
  8616. "license": [
  8617. "BSD-3-Clause"
  8618. ],
  8619. "description": "This is the PHP port of Hamcrest Matchers",
  8620. "keywords": [
  8621. "test"
  8622. ],
  8623. "support": {
  8624. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8625. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8626. },
  8627. "time": "2020-07-09T08:09:16+00:00"
  8628. },
  8629. {
  8630. "name": "laravel/pail",
  8631. "version": "v1.2.1",
  8632. "source": {
  8633. "type": "git",
  8634. "url": "https://github.com/laravel/pail.git",
  8635. "reference": "353ac12134b98e2e7c3333d916bd3e523931e583"
  8636. },
  8637. "dist": {
  8638. "type": "zip",
  8639. "url": "https://api.github.com/repos/laravel/pail/zipball/353ac12134b98e2e7c3333d916bd3e523931e583",
  8640. "reference": "353ac12134b98e2e7c3333d916bd3e523931e583",
  8641. "shasum": ""
  8642. },
  8643. "require": {
  8644. "ext-mbstring": "*",
  8645. "illuminate/console": "^10.24|^11.0",
  8646. "illuminate/contracts": "^10.24|^11.0",
  8647. "illuminate/log": "^10.24|^11.0",
  8648. "illuminate/process": "^10.24|^11.0",
  8649. "illuminate/support": "^10.24|^11.0",
  8650. "nunomaduro/termwind": "^1.15|^2.0",
  8651. "php": "^8.2",
  8652. "symfony/console": "^6.0|^7.0"
  8653. },
  8654. "require-dev": {
  8655. "laravel/framework": "^10.24|^11.0",
  8656. "laravel/pint": "^1.13",
  8657. "orchestra/testbench-core": "^8.12|^9.0",
  8658. "pestphp/pest": "^2.20",
  8659. "pestphp/pest-plugin-type-coverage": "^2.3",
  8660. "phpstan/phpstan": "^1.10",
  8661. "symfony/var-dumper": "^6.3|^7.0"
  8662. },
  8663. "type": "library",
  8664. "extra": {
  8665. "branch-alias": {
  8666. "dev-main": "1.x-dev"
  8667. },
  8668. "laravel": {
  8669. "providers": [
  8670. "Laravel\\Pail\\PailServiceProvider"
  8671. ]
  8672. }
  8673. },
  8674. "autoload": {
  8675. "psr-4": {
  8676. "Laravel\\Pail\\": "src/"
  8677. }
  8678. },
  8679. "notification-url": "https://packagist.org/downloads/",
  8680. "license": [
  8681. "MIT"
  8682. ],
  8683. "authors": [
  8684. {
  8685. "name": "Taylor Otwell",
  8686. "email": "taylor@laravel.com"
  8687. },
  8688. {
  8689. "name": "Nuno Maduro",
  8690. "email": "enunomaduro@gmail.com"
  8691. }
  8692. ],
  8693. "description": "Easily delve into your Laravel application's log files directly from the command line.",
  8694. "homepage": "https://github.com/laravel/pail",
  8695. "keywords": [
  8696. "laravel",
  8697. "logs",
  8698. "php",
  8699. "tail"
  8700. ],
  8701. "support": {
  8702. "issues": "https://github.com/laravel/pail/issues",
  8703. "source": "https://github.com/laravel/pail"
  8704. },
  8705. "time": "2024-10-23T12:56:23+00:00"
  8706. },
  8707. {
  8708. "name": "laravel/pint",
  8709. "version": "v1.18.3",
  8710. "source": {
  8711. "type": "git",
  8712. "url": "https://github.com/laravel/pint.git",
  8713. "reference": "cef51821608239040ab841ad6e1c6ae502ae3026"
  8714. },
  8715. "dist": {
  8716. "type": "zip",
  8717. "url": "https://api.github.com/repos/laravel/pint/zipball/cef51821608239040ab841ad6e1c6ae502ae3026",
  8718. "reference": "cef51821608239040ab841ad6e1c6ae502ae3026",
  8719. "shasum": ""
  8720. },
  8721. "require": {
  8722. "ext-json": "*",
  8723. "ext-mbstring": "*",
  8724. "ext-tokenizer": "*",
  8725. "ext-xml": "*",
  8726. "php": "^8.1.0"
  8727. },
  8728. "require-dev": {
  8729. "friendsofphp/php-cs-fixer": "^3.65.0",
  8730. "illuminate/view": "^10.48.24",
  8731. "larastan/larastan": "^2.9.11",
  8732. "laravel-zero/framework": "^10.4.0",
  8733. "mockery/mockery": "^1.6.12",
  8734. "nunomaduro/termwind": "^1.17.0",
  8735. "pestphp/pest": "^2.36.0"
  8736. },
  8737. "bin": [
  8738. "builds/pint"
  8739. ],
  8740. "type": "project",
  8741. "autoload": {
  8742. "psr-4": {
  8743. "App\\": "app/",
  8744. "Database\\Seeders\\": "database/seeders/",
  8745. "Database\\Factories\\": "database/factories/"
  8746. }
  8747. },
  8748. "notification-url": "https://packagist.org/downloads/",
  8749. "license": [
  8750. "MIT"
  8751. ],
  8752. "authors": [
  8753. {
  8754. "name": "Nuno Maduro",
  8755. "email": "enunomaduro@gmail.com"
  8756. }
  8757. ],
  8758. "description": "An opinionated code formatter for PHP.",
  8759. "homepage": "https://laravel.com",
  8760. "keywords": [
  8761. "format",
  8762. "formatter",
  8763. "lint",
  8764. "linter",
  8765. "php"
  8766. ],
  8767. "support": {
  8768. "issues": "https://github.com/laravel/pint/issues",
  8769. "source": "https://github.com/laravel/pint"
  8770. },
  8771. "time": "2024-11-26T15:34:00+00:00"
  8772. },
  8773. {
  8774. "name": "laravel/sail",
  8775. "version": "v1.39.0",
  8776. "source": {
  8777. "type": "git",
  8778. "url": "https://github.com/laravel/sail.git",
  8779. "reference": "be9d67a11133535811f9ec4ab5c176a2f47250fc"
  8780. },
  8781. "dist": {
  8782. "type": "zip",
  8783. "url": "https://api.github.com/repos/laravel/sail/zipball/be9d67a11133535811f9ec4ab5c176a2f47250fc",
  8784. "reference": "be9d67a11133535811f9ec4ab5c176a2f47250fc",
  8785. "shasum": ""
  8786. },
  8787. "require": {
  8788. "illuminate/console": "^9.52.16|^10.0|^11.0",
  8789. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  8790. "illuminate/support": "^9.52.16|^10.0|^11.0",
  8791. "php": "^8.0",
  8792. "symfony/console": "^6.0|^7.0",
  8793. "symfony/yaml": "^6.0|^7.0"
  8794. },
  8795. "require-dev": {
  8796. "orchestra/testbench": "^7.0|^8.0|^9.0",
  8797. "phpstan/phpstan": "^1.10"
  8798. },
  8799. "bin": [
  8800. "bin/sail"
  8801. ],
  8802. "type": "library",
  8803. "extra": {
  8804. "laravel": {
  8805. "providers": [
  8806. "Laravel\\Sail\\SailServiceProvider"
  8807. ]
  8808. }
  8809. },
  8810. "autoload": {
  8811. "psr-4": {
  8812. "Laravel\\Sail\\": "src/"
  8813. }
  8814. },
  8815. "notification-url": "https://packagist.org/downloads/",
  8816. "license": [
  8817. "MIT"
  8818. ],
  8819. "authors": [
  8820. {
  8821. "name": "Taylor Otwell",
  8822. "email": "taylor@laravel.com"
  8823. }
  8824. ],
  8825. "description": "Docker files for running a basic Laravel application.",
  8826. "keywords": [
  8827. "docker",
  8828. "laravel"
  8829. ],
  8830. "support": {
  8831. "issues": "https://github.com/laravel/sail/issues",
  8832. "source": "https://github.com/laravel/sail"
  8833. },
  8834. "time": "2024-11-25T23:48:26+00:00"
  8835. },
  8836. {
  8837. "name": "mockery/mockery",
  8838. "version": "1.6.12",
  8839. "source": {
  8840. "type": "git",
  8841. "url": "https://github.com/mockery/mockery.git",
  8842. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8843. },
  8844. "dist": {
  8845. "type": "zip",
  8846. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8847. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8848. "shasum": ""
  8849. },
  8850. "require": {
  8851. "hamcrest/hamcrest-php": "^2.0.1",
  8852. "lib-pcre": ">=7.0",
  8853. "php": ">=7.3"
  8854. },
  8855. "conflict": {
  8856. "phpunit/phpunit": "<8.0"
  8857. },
  8858. "require-dev": {
  8859. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8860. "symplify/easy-coding-standard": "^12.1.14"
  8861. },
  8862. "type": "library",
  8863. "autoload": {
  8864. "files": [
  8865. "library/helpers.php",
  8866. "library/Mockery.php"
  8867. ],
  8868. "psr-4": {
  8869. "Mockery\\": "library/Mockery"
  8870. }
  8871. },
  8872. "notification-url": "https://packagist.org/downloads/",
  8873. "license": [
  8874. "BSD-3-Clause"
  8875. ],
  8876. "authors": [
  8877. {
  8878. "name": "Pádraic Brady",
  8879. "email": "padraic.brady@gmail.com",
  8880. "homepage": "https://github.com/padraic",
  8881. "role": "Author"
  8882. },
  8883. {
  8884. "name": "Dave Marshall",
  8885. "email": "dave.marshall@atstsolutions.co.uk",
  8886. "homepage": "https://davedevelopment.co.uk",
  8887. "role": "Developer"
  8888. },
  8889. {
  8890. "name": "Nathanael Esayeas",
  8891. "email": "nathanael.esayeas@protonmail.com",
  8892. "homepage": "https://github.com/ghostwriter",
  8893. "role": "Lead Developer"
  8894. }
  8895. ],
  8896. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8897. "homepage": "https://github.com/mockery/mockery",
  8898. "keywords": [
  8899. "BDD",
  8900. "TDD",
  8901. "library",
  8902. "mock",
  8903. "mock objects",
  8904. "mockery",
  8905. "stub",
  8906. "test",
  8907. "test double",
  8908. "testing"
  8909. ],
  8910. "support": {
  8911. "docs": "https://docs.mockery.io/",
  8912. "issues": "https://github.com/mockery/mockery/issues",
  8913. "rss": "https://github.com/mockery/mockery/releases.atom",
  8914. "security": "https://github.com/mockery/mockery/security/advisories",
  8915. "source": "https://github.com/mockery/mockery"
  8916. },
  8917. "time": "2024-05-16T03:13:13+00:00"
  8918. },
  8919. {
  8920. "name": "myclabs/deep-copy",
  8921. "version": "1.12.1",
  8922. "source": {
  8923. "type": "git",
  8924. "url": "https://github.com/myclabs/DeepCopy.git",
  8925. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8926. },
  8927. "dist": {
  8928. "type": "zip",
  8929. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8930. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8931. "shasum": ""
  8932. },
  8933. "require": {
  8934. "php": "^7.1 || ^8.0"
  8935. },
  8936. "conflict": {
  8937. "doctrine/collections": "<1.6.8",
  8938. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8939. },
  8940. "require-dev": {
  8941. "doctrine/collections": "^1.6.8",
  8942. "doctrine/common": "^2.13.3 || ^3.2.2",
  8943. "phpspec/prophecy": "^1.10",
  8944. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8945. },
  8946. "type": "library",
  8947. "autoload": {
  8948. "files": [
  8949. "src/DeepCopy/deep_copy.php"
  8950. ],
  8951. "psr-4": {
  8952. "DeepCopy\\": "src/DeepCopy/"
  8953. }
  8954. },
  8955. "notification-url": "https://packagist.org/downloads/",
  8956. "license": [
  8957. "MIT"
  8958. ],
  8959. "description": "Create deep copies (clones) of your objects",
  8960. "keywords": [
  8961. "clone",
  8962. "copy",
  8963. "duplicate",
  8964. "object",
  8965. "object graph"
  8966. ],
  8967. "support": {
  8968. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8969. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8970. },
  8971. "funding": [
  8972. {
  8973. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8974. "type": "tidelift"
  8975. }
  8976. ],
  8977. "time": "2024-11-08T17:47:46+00:00"
  8978. },
  8979. {
  8980. "name": "phar-io/manifest",
  8981. "version": "2.0.4",
  8982. "source": {
  8983. "type": "git",
  8984. "url": "https://github.com/phar-io/manifest.git",
  8985. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8986. },
  8987. "dist": {
  8988. "type": "zip",
  8989. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8990. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8991. "shasum": ""
  8992. },
  8993. "require": {
  8994. "ext-dom": "*",
  8995. "ext-libxml": "*",
  8996. "ext-phar": "*",
  8997. "ext-xmlwriter": "*",
  8998. "phar-io/version": "^3.0.1",
  8999. "php": "^7.2 || ^8.0"
  9000. },
  9001. "type": "library",
  9002. "extra": {
  9003. "branch-alias": {
  9004. "dev-master": "2.0.x-dev"
  9005. }
  9006. },
  9007. "autoload": {
  9008. "classmap": [
  9009. "src/"
  9010. ]
  9011. },
  9012. "notification-url": "https://packagist.org/downloads/",
  9013. "license": [
  9014. "BSD-3-Clause"
  9015. ],
  9016. "authors": [
  9017. {
  9018. "name": "Arne Blankerts",
  9019. "email": "arne@blankerts.de",
  9020. "role": "Developer"
  9021. },
  9022. {
  9023. "name": "Sebastian Heuer",
  9024. "email": "sebastian@phpeople.de",
  9025. "role": "Developer"
  9026. },
  9027. {
  9028. "name": "Sebastian Bergmann",
  9029. "email": "sebastian@phpunit.de",
  9030. "role": "Developer"
  9031. }
  9032. ],
  9033. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9034. "support": {
  9035. "issues": "https://github.com/phar-io/manifest/issues",
  9036. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9037. },
  9038. "funding": [
  9039. {
  9040. "url": "https://github.com/theseer",
  9041. "type": "github"
  9042. }
  9043. ],
  9044. "time": "2024-03-03T12:33:53+00:00"
  9045. },
  9046. {
  9047. "name": "phar-io/version",
  9048. "version": "3.2.1",
  9049. "source": {
  9050. "type": "git",
  9051. "url": "https://github.com/phar-io/version.git",
  9052. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9053. },
  9054. "dist": {
  9055. "type": "zip",
  9056. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9057. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9058. "shasum": ""
  9059. },
  9060. "require": {
  9061. "php": "^7.2 || ^8.0"
  9062. },
  9063. "type": "library",
  9064. "autoload": {
  9065. "classmap": [
  9066. "src/"
  9067. ]
  9068. },
  9069. "notification-url": "https://packagist.org/downloads/",
  9070. "license": [
  9071. "BSD-3-Clause"
  9072. ],
  9073. "authors": [
  9074. {
  9075. "name": "Arne Blankerts",
  9076. "email": "arne@blankerts.de",
  9077. "role": "Developer"
  9078. },
  9079. {
  9080. "name": "Sebastian Heuer",
  9081. "email": "sebastian@phpeople.de",
  9082. "role": "Developer"
  9083. },
  9084. {
  9085. "name": "Sebastian Bergmann",
  9086. "email": "sebastian@phpunit.de",
  9087. "role": "Developer"
  9088. }
  9089. ],
  9090. "description": "Library for handling version information and constraints",
  9091. "support": {
  9092. "issues": "https://github.com/phar-io/version/issues",
  9093. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9094. },
  9095. "time": "2022-02-21T01:04:05+00:00"
  9096. },
  9097. {
  9098. "name": "phpdocumentor/reflection-common",
  9099. "version": "2.2.0",
  9100. "source": {
  9101. "type": "git",
  9102. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9103. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9104. },
  9105. "dist": {
  9106. "type": "zip",
  9107. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9108. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9109. "shasum": ""
  9110. },
  9111. "require": {
  9112. "php": "^7.2 || ^8.0"
  9113. },
  9114. "type": "library",
  9115. "extra": {
  9116. "branch-alias": {
  9117. "dev-2.x": "2.x-dev"
  9118. }
  9119. },
  9120. "autoload": {
  9121. "psr-4": {
  9122. "phpDocumentor\\Reflection\\": "src/"
  9123. }
  9124. },
  9125. "notification-url": "https://packagist.org/downloads/",
  9126. "license": [
  9127. "MIT"
  9128. ],
  9129. "authors": [
  9130. {
  9131. "name": "Jaap van Otterdijk",
  9132. "email": "opensource@ijaap.nl"
  9133. }
  9134. ],
  9135. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9136. "homepage": "http://www.phpdoc.org",
  9137. "keywords": [
  9138. "FQSEN",
  9139. "phpDocumentor",
  9140. "phpdoc",
  9141. "reflection",
  9142. "static analysis"
  9143. ],
  9144. "support": {
  9145. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9146. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9147. },
  9148. "time": "2020-06-27T09:03:43+00:00"
  9149. },
  9150. {
  9151. "name": "phpdocumentor/type-resolver",
  9152. "version": "1.10.0",
  9153. "source": {
  9154. "type": "git",
  9155. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9156. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  9157. },
  9158. "dist": {
  9159. "type": "zip",
  9160. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  9161. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  9162. "shasum": ""
  9163. },
  9164. "require": {
  9165. "doctrine/deprecations": "^1.0",
  9166. "php": "^7.3 || ^8.0",
  9167. "phpdocumentor/reflection-common": "^2.0",
  9168. "phpstan/phpdoc-parser": "^1.18|^2.0"
  9169. },
  9170. "require-dev": {
  9171. "ext-tokenizer": "*",
  9172. "phpbench/phpbench": "^1.2",
  9173. "phpstan/extension-installer": "^1.1",
  9174. "phpstan/phpstan": "^1.8",
  9175. "phpstan/phpstan-phpunit": "^1.1",
  9176. "phpunit/phpunit": "^9.5",
  9177. "rector/rector": "^0.13.9",
  9178. "vimeo/psalm": "^4.25"
  9179. },
  9180. "type": "library",
  9181. "extra": {
  9182. "branch-alias": {
  9183. "dev-1.x": "1.x-dev"
  9184. }
  9185. },
  9186. "autoload": {
  9187. "psr-4": {
  9188. "phpDocumentor\\Reflection\\": "src"
  9189. }
  9190. },
  9191. "notification-url": "https://packagist.org/downloads/",
  9192. "license": [
  9193. "MIT"
  9194. ],
  9195. "authors": [
  9196. {
  9197. "name": "Mike van Riel",
  9198. "email": "me@mikevanriel.com"
  9199. }
  9200. ],
  9201. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9202. "support": {
  9203. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9204. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  9205. },
  9206. "time": "2024-11-09T15:12:26+00:00"
  9207. },
  9208. {
  9209. "name": "phpstan/phpdoc-parser",
  9210. "version": "2.0.0",
  9211. "source": {
  9212. "type": "git",
  9213. "url": "https://github.com/phpstan/phpdoc-parser.git",
  9214. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299"
  9215. },
  9216. "dist": {
  9217. "type": "zip",
  9218. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/c00d78fb6b29658347f9d37ebe104bffadf36299",
  9219. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299",
  9220. "shasum": ""
  9221. },
  9222. "require": {
  9223. "php": "^7.4 || ^8.0"
  9224. },
  9225. "require-dev": {
  9226. "doctrine/annotations": "^2.0",
  9227. "nikic/php-parser": "^5.3.0",
  9228. "php-parallel-lint/php-parallel-lint": "^1.2",
  9229. "phpstan/extension-installer": "^1.0",
  9230. "phpstan/phpstan": "^2.0",
  9231. "phpstan/phpstan-phpunit": "^2.0",
  9232. "phpstan/phpstan-strict-rules": "^2.0",
  9233. "phpunit/phpunit": "^9.6",
  9234. "symfony/process": "^5.2"
  9235. },
  9236. "type": "library",
  9237. "autoload": {
  9238. "psr-4": {
  9239. "PHPStan\\PhpDocParser\\": [
  9240. "src/"
  9241. ]
  9242. }
  9243. },
  9244. "notification-url": "https://packagist.org/downloads/",
  9245. "license": [
  9246. "MIT"
  9247. ],
  9248. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  9249. "support": {
  9250. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  9251. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.0.0"
  9252. },
  9253. "time": "2024-10-13T11:29:49+00:00"
  9254. },
  9255. {
  9256. "name": "phpunit/php-code-coverage",
  9257. "version": "11.0.7",
  9258. "source": {
  9259. "type": "git",
  9260. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9261. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca"
  9262. },
  9263. "dist": {
  9264. "type": "zip",
  9265. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  9266. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  9267. "shasum": ""
  9268. },
  9269. "require": {
  9270. "ext-dom": "*",
  9271. "ext-libxml": "*",
  9272. "ext-xmlwriter": "*",
  9273. "nikic/php-parser": "^5.3.1",
  9274. "php": ">=8.2",
  9275. "phpunit/php-file-iterator": "^5.1.0",
  9276. "phpunit/php-text-template": "^4.0.1",
  9277. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  9278. "sebastian/complexity": "^4.0.1",
  9279. "sebastian/environment": "^7.2.0",
  9280. "sebastian/lines-of-code": "^3.0.1",
  9281. "sebastian/version": "^5.0.2",
  9282. "theseer/tokenizer": "^1.2.3"
  9283. },
  9284. "require-dev": {
  9285. "phpunit/phpunit": "^11.4.1"
  9286. },
  9287. "suggest": {
  9288. "ext-pcov": "PHP extension that provides line coverage",
  9289. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9290. },
  9291. "type": "library",
  9292. "extra": {
  9293. "branch-alias": {
  9294. "dev-main": "11.0.x-dev"
  9295. }
  9296. },
  9297. "autoload": {
  9298. "classmap": [
  9299. "src/"
  9300. ]
  9301. },
  9302. "notification-url": "https://packagist.org/downloads/",
  9303. "license": [
  9304. "BSD-3-Clause"
  9305. ],
  9306. "authors": [
  9307. {
  9308. "name": "Sebastian Bergmann",
  9309. "email": "sebastian@phpunit.de",
  9310. "role": "lead"
  9311. }
  9312. ],
  9313. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9314. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9315. "keywords": [
  9316. "coverage",
  9317. "testing",
  9318. "xunit"
  9319. ],
  9320. "support": {
  9321. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9322. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9323. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.7"
  9324. },
  9325. "funding": [
  9326. {
  9327. "url": "https://github.com/sebastianbergmann",
  9328. "type": "github"
  9329. }
  9330. ],
  9331. "time": "2024-10-09T06:21:38+00:00"
  9332. },
  9333. {
  9334. "name": "phpunit/php-file-iterator",
  9335. "version": "5.1.0",
  9336. "source": {
  9337. "type": "git",
  9338. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9339. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  9340. },
  9341. "dist": {
  9342. "type": "zip",
  9343. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  9344. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  9345. "shasum": ""
  9346. },
  9347. "require": {
  9348. "php": ">=8.2"
  9349. },
  9350. "require-dev": {
  9351. "phpunit/phpunit": "^11.0"
  9352. },
  9353. "type": "library",
  9354. "extra": {
  9355. "branch-alias": {
  9356. "dev-main": "5.0-dev"
  9357. }
  9358. },
  9359. "autoload": {
  9360. "classmap": [
  9361. "src/"
  9362. ]
  9363. },
  9364. "notification-url": "https://packagist.org/downloads/",
  9365. "license": [
  9366. "BSD-3-Clause"
  9367. ],
  9368. "authors": [
  9369. {
  9370. "name": "Sebastian Bergmann",
  9371. "email": "sebastian@phpunit.de",
  9372. "role": "lead"
  9373. }
  9374. ],
  9375. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9376. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9377. "keywords": [
  9378. "filesystem",
  9379. "iterator"
  9380. ],
  9381. "support": {
  9382. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9383. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9384. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  9385. },
  9386. "funding": [
  9387. {
  9388. "url": "https://github.com/sebastianbergmann",
  9389. "type": "github"
  9390. }
  9391. ],
  9392. "time": "2024-08-27T05:02:59+00:00"
  9393. },
  9394. {
  9395. "name": "phpunit/php-invoker",
  9396. "version": "5.0.1",
  9397. "source": {
  9398. "type": "git",
  9399. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9400. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  9401. },
  9402. "dist": {
  9403. "type": "zip",
  9404. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  9405. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  9406. "shasum": ""
  9407. },
  9408. "require": {
  9409. "php": ">=8.2"
  9410. },
  9411. "require-dev": {
  9412. "ext-pcntl": "*",
  9413. "phpunit/phpunit": "^11.0"
  9414. },
  9415. "suggest": {
  9416. "ext-pcntl": "*"
  9417. },
  9418. "type": "library",
  9419. "extra": {
  9420. "branch-alias": {
  9421. "dev-main": "5.0-dev"
  9422. }
  9423. },
  9424. "autoload": {
  9425. "classmap": [
  9426. "src/"
  9427. ]
  9428. },
  9429. "notification-url": "https://packagist.org/downloads/",
  9430. "license": [
  9431. "BSD-3-Clause"
  9432. ],
  9433. "authors": [
  9434. {
  9435. "name": "Sebastian Bergmann",
  9436. "email": "sebastian@phpunit.de",
  9437. "role": "lead"
  9438. }
  9439. ],
  9440. "description": "Invoke callables with a timeout",
  9441. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9442. "keywords": [
  9443. "process"
  9444. ],
  9445. "support": {
  9446. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9447. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  9448. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  9449. },
  9450. "funding": [
  9451. {
  9452. "url": "https://github.com/sebastianbergmann",
  9453. "type": "github"
  9454. }
  9455. ],
  9456. "time": "2024-07-03T05:07:44+00:00"
  9457. },
  9458. {
  9459. "name": "phpunit/php-text-template",
  9460. "version": "4.0.1",
  9461. "source": {
  9462. "type": "git",
  9463. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9464. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  9465. },
  9466. "dist": {
  9467. "type": "zip",
  9468. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  9469. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  9470. "shasum": ""
  9471. },
  9472. "require": {
  9473. "php": ">=8.2"
  9474. },
  9475. "require-dev": {
  9476. "phpunit/phpunit": "^11.0"
  9477. },
  9478. "type": "library",
  9479. "extra": {
  9480. "branch-alias": {
  9481. "dev-main": "4.0-dev"
  9482. }
  9483. },
  9484. "autoload": {
  9485. "classmap": [
  9486. "src/"
  9487. ]
  9488. },
  9489. "notification-url": "https://packagist.org/downloads/",
  9490. "license": [
  9491. "BSD-3-Clause"
  9492. ],
  9493. "authors": [
  9494. {
  9495. "name": "Sebastian Bergmann",
  9496. "email": "sebastian@phpunit.de",
  9497. "role": "lead"
  9498. }
  9499. ],
  9500. "description": "Simple template engine.",
  9501. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9502. "keywords": [
  9503. "template"
  9504. ],
  9505. "support": {
  9506. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9507. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9508. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  9509. },
  9510. "funding": [
  9511. {
  9512. "url": "https://github.com/sebastianbergmann",
  9513. "type": "github"
  9514. }
  9515. ],
  9516. "time": "2024-07-03T05:08:43+00:00"
  9517. },
  9518. {
  9519. "name": "phpunit/php-timer",
  9520. "version": "7.0.1",
  9521. "source": {
  9522. "type": "git",
  9523. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9524. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  9525. },
  9526. "dist": {
  9527. "type": "zip",
  9528. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  9529. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  9530. "shasum": ""
  9531. },
  9532. "require": {
  9533. "php": ">=8.2"
  9534. },
  9535. "require-dev": {
  9536. "phpunit/phpunit": "^11.0"
  9537. },
  9538. "type": "library",
  9539. "extra": {
  9540. "branch-alias": {
  9541. "dev-main": "7.0-dev"
  9542. }
  9543. },
  9544. "autoload": {
  9545. "classmap": [
  9546. "src/"
  9547. ]
  9548. },
  9549. "notification-url": "https://packagist.org/downloads/",
  9550. "license": [
  9551. "BSD-3-Clause"
  9552. ],
  9553. "authors": [
  9554. {
  9555. "name": "Sebastian Bergmann",
  9556. "email": "sebastian@phpunit.de",
  9557. "role": "lead"
  9558. }
  9559. ],
  9560. "description": "Utility class for timing",
  9561. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9562. "keywords": [
  9563. "timer"
  9564. ],
  9565. "support": {
  9566. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9567. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  9568. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  9569. },
  9570. "funding": [
  9571. {
  9572. "url": "https://github.com/sebastianbergmann",
  9573. "type": "github"
  9574. }
  9575. ],
  9576. "time": "2024-07-03T05:09:35+00:00"
  9577. },
  9578. {
  9579. "name": "phpunit/phpunit",
  9580. "version": "11.4.3",
  9581. "source": {
  9582. "type": "git",
  9583. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9584. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76"
  9585. },
  9586. "dist": {
  9587. "type": "zip",
  9588. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  9589. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  9590. "shasum": ""
  9591. },
  9592. "require": {
  9593. "ext-dom": "*",
  9594. "ext-json": "*",
  9595. "ext-libxml": "*",
  9596. "ext-mbstring": "*",
  9597. "ext-xml": "*",
  9598. "ext-xmlwriter": "*",
  9599. "myclabs/deep-copy": "^1.12.0",
  9600. "phar-io/manifest": "^2.0.4",
  9601. "phar-io/version": "^3.2.1",
  9602. "php": ">=8.2",
  9603. "phpunit/php-code-coverage": "^11.0.7",
  9604. "phpunit/php-file-iterator": "^5.1.0",
  9605. "phpunit/php-invoker": "^5.0.1",
  9606. "phpunit/php-text-template": "^4.0.1",
  9607. "phpunit/php-timer": "^7.0.1",
  9608. "sebastian/cli-parser": "^3.0.2",
  9609. "sebastian/code-unit": "^3.0.1",
  9610. "sebastian/comparator": "^6.1.1",
  9611. "sebastian/diff": "^6.0.2",
  9612. "sebastian/environment": "^7.2.0",
  9613. "sebastian/exporter": "^6.1.3",
  9614. "sebastian/global-state": "^7.0.2",
  9615. "sebastian/object-enumerator": "^6.0.1",
  9616. "sebastian/type": "^5.1.0",
  9617. "sebastian/version": "^5.0.2"
  9618. },
  9619. "suggest": {
  9620. "ext-soap": "To be able to generate mocks based on WSDL files"
  9621. },
  9622. "bin": [
  9623. "phpunit"
  9624. ],
  9625. "type": "library",
  9626. "extra": {
  9627. "branch-alias": {
  9628. "dev-main": "11.4-dev"
  9629. }
  9630. },
  9631. "autoload": {
  9632. "files": [
  9633. "src/Framework/Assert/Functions.php"
  9634. ],
  9635. "classmap": [
  9636. "src/"
  9637. ]
  9638. },
  9639. "notification-url": "https://packagist.org/downloads/",
  9640. "license": [
  9641. "BSD-3-Clause"
  9642. ],
  9643. "authors": [
  9644. {
  9645. "name": "Sebastian Bergmann",
  9646. "email": "sebastian@phpunit.de",
  9647. "role": "lead"
  9648. }
  9649. ],
  9650. "description": "The PHP Unit Testing framework.",
  9651. "homepage": "https://phpunit.de/",
  9652. "keywords": [
  9653. "phpunit",
  9654. "testing",
  9655. "xunit"
  9656. ],
  9657. "support": {
  9658. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9659. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9660. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.4.3"
  9661. },
  9662. "funding": [
  9663. {
  9664. "url": "https://phpunit.de/sponsors.html",
  9665. "type": "custom"
  9666. },
  9667. {
  9668. "url": "https://github.com/sebastianbergmann",
  9669. "type": "github"
  9670. },
  9671. {
  9672. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9673. "type": "tidelift"
  9674. }
  9675. ],
  9676. "time": "2024-10-28T13:07:50+00:00"
  9677. },
  9678. {
  9679. "name": "sebastian/cli-parser",
  9680. "version": "3.0.2",
  9681. "source": {
  9682. "type": "git",
  9683. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9684. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  9685. },
  9686. "dist": {
  9687. "type": "zip",
  9688. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  9689. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  9690. "shasum": ""
  9691. },
  9692. "require": {
  9693. "php": ">=8.2"
  9694. },
  9695. "require-dev": {
  9696. "phpunit/phpunit": "^11.0"
  9697. },
  9698. "type": "library",
  9699. "extra": {
  9700. "branch-alias": {
  9701. "dev-main": "3.0-dev"
  9702. }
  9703. },
  9704. "autoload": {
  9705. "classmap": [
  9706. "src/"
  9707. ]
  9708. },
  9709. "notification-url": "https://packagist.org/downloads/",
  9710. "license": [
  9711. "BSD-3-Clause"
  9712. ],
  9713. "authors": [
  9714. {
  9715. "name": "Sebastian Bergmann",
  9716. "email": "sebastian@phpunit.de",
  9717. "role": "lead"
  9718. }
  9719. ],
  9720. "description": "Library for parsing CLI options",
  9721. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9722. "support": {
  9723. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9724. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9725. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  9726. },
  9727. "funding": [
  9728. {
  9729. "url": "https://github.com/sebastianbergmann",
  9730. "type": "github"
  9731. }
  9732. ],
  9733. "time": "2024-07-03T04:41:36+00:00"
  9734. },
  9735. {
  9736. "name": "sebastian/code-unit",
  9737. "version": "3.0.1",
  9738. "source": {
  9739. "type": "git",
  9740. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9741. "reference": "6bb7d09d6623567178cf54126afa9c2310114268"
  9742. },
  9743. "dist": {
  9744. "type": "zip",
  9745. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6bb7d09d6623567178cf54126afa9c2310114268",
  9746. "reference": "6bb7d09d6623567178cf54126afa9c2310114268",
  9747. "shasum": ""
  9748. },
  9749. "require": {
  9750. "php": ">=8.2"
  9751. },
  9752. "require-dev": {
  9753. "phpunit/phpunit": "^11.0"
  9754. },
  9755. "type": "library",
  9756. "extra": {
  9757. "branch-alias": {
  9758. "dev-main": "3.0-dev"
  9759. }
  9760. },
  9761. "autoload": {
  9762. "classmap": [
  9763. "src/"
  9764. ]
  9765. },
  9766. "notification-url": "https://packagist.org/downloads/",
  9767. "license": [
  9768. "BSD-3-Clause"
  9769. ],
  9770. "authors": [
  9771. {
  9772. "name": "Sebastian Bergmann",
  9773. "email": "sebastian@phpunit.de",
  9774. "role": "lead"
  9775. }
  9776. ],
  9777. "description": "Collection of value objects that represent the PHP code units",
  9778. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9779. "support": {
  9780. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9781. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  9782. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.1"
  9783. },
  9784. "funding": [
  9785. {
  9786. "url": "https://github.com/sebastianbergmann",
  9787. "type": "github"
  9788. }
  9789. ],
  9790. "time": "2024-07-03T04:44:28+00:00"
  9791. },
  9792. {
  9793. "name": "sebastian/code-unit-reverse-lookup",
  9794. "version": "4.0.1",
  9795. "source": {
  9796. "type": "git",
  9797. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9798. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  9799. },
  9800. "dist": {
  9801. "type": "zip",
  9802. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  9803. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  9804. "shasum": ""
  9805. },
  9806. "require": {
  9807. "php": ">=8.2"
  9808. },
  9809. "require-dev": {
  9810. "phpunit/phpunit": "^11.0"
  9811. },
  9812. "type": "library",
  9813. "extra": {
  9814. "branch-alias": {
  9815. "dev-main": "4.0-dev"
  9816. }
  9817. },
  9818. "autoload": {
  9819. "classmap": [
  9820. "src/"
  9821. ]
  9822. },
  9823. "notification-url": "https://packagist.org/downloads/",
  9824. "license": [
  9825. "BSD-3-Clause"
  9826. ],
  9827. "authors": [
  9828. {
  9829. "name": "Sebastian Bergmann",
  9830. "email": "sebastian@phpunit.de"
  9831. }
  9832. ],
  9833. "description": "Looks up which function or method a line of code belongs to",
  9834. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9835. "support": {
  9836. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9837. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  9838. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  9839. },
  9840. "funding": [
  9841. {
  9842. "url": "https://github.com/sebastianbergmann",
  9843. "type": "github"
  9844. }
  9845. ],
  9846. "time": "2024-07-03T04:45:54+00:00"
  9847. },
  9848. {
  9849. "name": "sebastian/comparator",
  9850. "version": "6.2.1",
  9851. "source": {
  9852. "type": "git",
  9853. "url": "https://github.com/sebastianbergmann/comparator.git",
  9854. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739"
  9855. },
  9856. "dist": {
  9857. "type": "zip",
  9858. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/43d129d6a0f81c78bee378b46688293eb7ea3739",
  9859. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739",
  9860. "shasum": ""
  9861. },
  9862. "require": {
  9863. "ext-dom": "*",
  9864. "ext-mbstring": "*",
  9865. "php": ">=8.2",
  9866. "sebastian/diff": "^6.0",
  9867. "sebastian/exporter": "^6.0"
  9868. },
  9869. "require-dev": {
  9870. "phpunit/phpunit": "^11.4"
  9871. },
  9872. "type": "library",
  9873. "extra": {
  9874. "branch-alias": {
  9875. "dev-main": "6.2-dev"
  9876. }
  9877. },
  9878. "autoload": {
  9879. "classmap": [
  9880. "src/"
  9881. ]
  9882. },
  9883. "notification-url": "https://packagist.org/downloads/",
  9884. "license": [
  9885. "BSD-3-Clause"
  9886. ],
  9887. "authors": [
  9888. {
  9889. "name": "Sebastian Bergmann",
  9890. "email": "sebastian@phpunit.de"
  9891. },
  9892. {
  9893. "name": "Jeff Welch",
  9894. "email": "whatthejeff@gmail.com"
  9895. },
  9896. {
  9897. "name": "Volker Dusch",
  9898. "email": "github@wallbash.com"
  9899. },
  9900. {
  9901. "name": "Bernhard Schussek",
  9902. "email": "bschussek@2bepublished.at"
  9903. }
  9904. ],
  9905. "description": "Provides the functionality to compare PHP values for equality",
  9906. "homepage": "https://github.com/sebastianbergmann/comparator",
  9907. "keywords": [
  9908. "comparator",
  9909. "compare",
  9910. "equality"
  9911. ],
  9912. "support": {
  9913. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9914. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9915. "source": "https://github.com/sebastianbergmann/comparator/tree/6.2.1"
  9916. },
  9917. "funding": [
  9918. {
  9919. "url": "https://github.com/sebastianbergmann",
  9920. "type": "github"
  9921. }
  9922. ],
  9923. "time": "2024-10-31T05:30:08+00:00"
  9924. },
  9925. {
  9926. "name": "sebastian/complexity",
  9927. "version": "4.0.1",
  9928. "source": {
  9929. "type": "git",
  9930. "url": "https://github.com/sebastianbergmann/complexity.git",
  9931. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  9932. },
  9933. "dist": {
  9934. "type": "zip",
  9935. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  9936. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  9937. "shasum": ""
  9938. },
  9939. "require": {
  9940. "nikic/php-parser": "^5.0",
  9941. "php": ">=8.2"
  9942. },
  9943. "require-dev": {
  9944. "phpunit/phpunit": "^11.0"
  9945. },
  9946. "type": "library",
  9947. "extra": {
  9948. "branch-alias": {
  9949. "dev-main": "4.0-dev"
  9950. }
  9951. },
  9952. "autoload": {
  9953. "classmap": [
  9954. "src/"
  9955. ]
  9956. },
  9957. "notification-url": "https://packagist.org/downloads/",
  9958. "license": [
  9959. "BSD-3-Clause"
  9960. ],
  9961. "authors": [
  9962. {
  9963. "name": "Sebastian Bergmann",
  9964. "email": "sebastian@phpunit.de",
  9965. "role": "lead"
  9966. }
  9967. ],
  9968. "description": "Library for calculating the complexity of PHP code units",
  9969. "homepage": "https://github.com/sebastianbergmann/complexity",
  9970. "support": {
  9971. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9972. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9973. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  9974. },
  9975. "funding": [
  9976. {
  9977. "url": "https://github.com/sebastianbergmann",
  9978. "type": "github"
  9979. }
  9980. ],
  9981. "time": "2024-07-03T04:49:50+00:00"
  9982. },
  9983. {
  9984. "name": "sebastian/diff",
  9985. "version": "6.0.2",
  9986. "source": {
  9987. "type": "git",
  9988. "url": "https://github.com/sebastianbergmann/diff.git",
  9989. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  9990. },
  9991. "dist": {
  9992. "type": "zip",
  9993. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  9994. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  9995. "shasum": ""
  9996. },
  9997. "require": {
  9998. "php": ">=8.2"
  9999. },
  10000. "require-dev": {
  10001. "phpunit/phpunit": "^11.0",
  10002. "symfony/process": "^4.2 || ^5"
  10003. },
  10004. "type": "library",
  10005. "extra": {
  10006. "branch-alias": {
  10007. "dev-main": "6.0-dev"
  10008. }
  10009. },
  10010. "autoload": {
  10011. "classmap": [
  10012. "src/"
  10013. ]
  10014. },
  10015. "notification-url": "https://packagist.org/downloads/",
  10016. "license": [
  10017. "BSD-3-Clause"
  10018. ],
  10019. "authors": [
  10020. {
  10021. "name": "Sebastian Bergmann",
  10022. "email": "sebastian@phpunit.de"
  10023. },
  10024. {
  10025. "name": "Kore Nordmann",
  10026. "email": "mail@kore-nordmann.de"
  10027. }
  10028. ],
  10029. "description": "Diff implementation",
  10030. "homepage": "https://github.com/sebastianbergmann/diff",
  10031. "keywords": [
  10032. "diff",
  10033. "udiff",
  10034. "unidiff",
  10035. "unified diff"
  10036. ],
  10037. "support": {
  10038. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10039. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10040. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  10041. },
  10042. "funding": [
  10043. {
  10044. "url": "https://github.com/sebastianbergmann",
  10045. "type": "github"
  10046. }
  10047. ],
  10048. "time": "2024-07-03T04:53:05+00:00"
  10049. },
  10050. {
  10051. "name": "sebastian/environment",
  10052. "version": "7.2.0",
  10053. "source": {
  10054. "type": "git",
  10055. "url": "https://github.com/sebastianbergmann/environment.git",
  10056. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  10057. },
  10058. "dist": {
  10059. "type": "zip",
  10060. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  10061. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  10062. "shasum": ""
  10063. },
  10064. "require": {
  10065. "php": ">=8.2"
  10066. },
  10067. "require-dev": {
  10068. "phpunit/phpunit": "^11.0"
  10069. },
  10070. "suggest": {
  10071. "ext-posix": "*"
  10072. },
  10073. "type": "library",
  10074. "extra": {
  10075. "branch-alias": {
  10076. "dev-main": "7.2-dev"
  10077. }
  10078. },
  10079. "autoload": {
  10080. "classmap": [
  10081. "src/"
  10082. ]
  10083. },
  10084. "notification-url": "https://packagist.org/downloads/",
  10085. "license": [
  10086. "BSD-3-Clause"
  10087. ],
  10088. "authors": [
  10089. {
  10090. "name": "Sebastian Bergmann",
  10091. "email": "sebastian@phpunit.de"
  10092. }
  10093. ],
  10094. "description": "Provides functionality to handle HHVM/PHP environments",
  10095. "homepage": "https://github.com/sebastianbergmann/environment",
  10096. "keywords": [
  10097. "Xdebug",
  10098. "environment",
  10099. "hhvm"
  10100. ],
  10101. "support": {
  10102. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10103. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10104. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  10105. },
  10106. "funding": [
  10107. {
  10108. "url": "https://github.com/sebastianbergmann",
  10109. "type": "github"
  10110. }
  10111. ],
  10112. "time": "2024-07-03T04:54:44+00:00"
  10113. },
  10114. {
  10115. "name": "sebastian/exporter",
  10116. "version": "6.1.3",
  10117. "source": {
  10118. "type": "git",
  10119. "url": "https://github.com/sebastianbergmann/exporter.git",
  10120. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e"
  10121. },
  10122. "dist": {
  10123. "type": "zip",
  10124. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  10125. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  10126. "shasum": ""
  10127. },
  10128. "require": {
  10129. "ext-mbstring": "*",
  10130. "php": ">=8.2",
  10131. "sebastian/recursion-context": "^6.0"
  10132. },
  10133. "require-dev": {
  10134. "phpunit/phpunit": "^11.2"
  10135. },
  10136. "type": "library",
  10137. "extra": {
  10138. "branch-alias": {
  10139. "dev-main": "6.1-dev"
  10140. }
  10141. },
  10142. "autoload": {
  10143. "classmap": [
  10144. "src/"
  10145. ]
  10146. },
  10147. "notification-url": "https://packagist.org/downloads/",
  10148. "license": [
  10149. "BSD-3-Clause"
  10150. ],
  10151. "authors": [
  10152. {
  10153. "name": "Sebastian Bergmann",
  10154. "email": "sebastian@phpunit.de"
  10155. },
  10156. {
  10157. "name": "Jeff Welch",
  10158. "email": "whatthejeff@gmail.com"
  10159. },
  10160. {
  10161. "name": "Volker Dusch",
  10162. "email": "github@wallbash.com"
  10163. },
  10164. {
  10165. "name": "Adam Harvey",
  10166. "email": "aharvey@php.net"
  10167. },
  10168. {
  10169. "name": "Bernhard Schussek",
  10170. "email": "bschussek@gmail.com"
  10171. }
  10172. ],
  10173. "description": "Provides the functionality to export PHP variables for visualization",
  10174. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10175. "keywords": [
  10176. "export",
  10177. "exporter"
  10178. ],
  10179. "support": {
  10180. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10181. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10182. "source": "https://github.com/sebastianbergmann/exporter/tree/6.1.3"
  10183. },
  10184. "funding": [
  10185. {
  10186. "url": "https://github.com/sebastianbergmann",
  10187. "type": "github"
  10188. }
  10189. ],
  10190. "time": "2024-07-03T04:56:19+00:00"
  10191. },
  10192. {
  10193. "name": "sebastian/global-state",
  10194. "version": "7.0.2",
  10195. "source": {
  10196. "type": "git",
  10197. "url": "https://github.com/sebastianbergmann/global-state.git",
  10198. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  10199. },
  10200. "dist": {
  10201. "type": "zip",
  10202. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  10203. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  10204. "shasum": ""
  10205. },
  10206. "require": {
  10207. "php": ">=8.2",
  10208. "sebastian/object-reflector": "^4.0",
  10209. "sebastian/recursion-context": "^6.0"
  10210. },
  10211. "require-dev": {
  10212. "ext-dom": "*",
  10213. "phpunit/phpunit": "^11.0"
  10214. },
  10215. "type": "library",
  10216. "extra": {
  10217. "branch-alias": {
  10218. "dev-main": "7.0-dev"
  10219. }
  10220. },
  10221. "autoload": {
  10222. "classmap": [
  10223. "src/"
  10224. ]
  10225. },
  10226. "notification-url": "https://packagist.org/downloads/",
  10227. "license": [
  10228. "BSD-3-Clause"
  10229. ],
  10230. "authors": [
  10231. {
  10232. "name": "Sebastian Bergmann",
  10233. "email": "sebastian@phpunit.de"
  10234. }
  10235. ],
  10236. "description": "Snapshotting of global state",
  10237. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10238. "keywords": [
  10239. "global state"
  10240. ],
  10241. "support": {
  10242. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10243. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10244. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  10245. },
  10246. "funding": [
  10247. {
  10248. "url": "https://github.com/sebastianbergmann",
  10249. "type": "github"
  10250. }
  10251. ],
  10252. "time": "2024-07-03T04:57:36+00:00"
  10253. },
  10254. {
  10255. "name": "sebastian/lines-of-code",
  10256. "version": "3.0.1",
  10257. "source": {
  10258. "type": "git",
  10259. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10260. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  10261. },
  10262. "dist": {
  10263. "type": "zip",
  10264. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  10265. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  10266. "shasum": ""
  10267. },
  10268. "require": {
  10269. "nikic/php-parser": "^5.0",
  10270. "php": ">=8.2"
  10271. },
  10272. "require-dev": {
  10273. "phpunit/phpunit": "^11.0"
  10274. },
  10275. "type": "library",
  10276. "extra": {
  10277. "branch-alias": {
  10278. "dev-main": "3.0-dev"
  10279. }
  10280. },
  10281. "autoload": {
  10282. "classmap": [
  10283. "src/"
  10284. ]
  10285. },
  10286. "notification-url": "https://packagist.org/downloads/",
  10287. "license": [
  10288. "BSD-3-Clause"
  10289. ],
  10290. "authors": [
  10291. {
  10292. "name": "Sebastian Bergmann",
  10293. "email": "sebastian@phpunit.de",
  10294. "role": "lead"
  10295. }
  10296. ],
  10297. "description": "Library for counting the lines of code in PHP source code",
  10298. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10299. "support": {
  10300. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10301. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10302. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  10303. },
  10304. "funding": [
  10305. {
  10306. "url": "https://github.com/sebastianbergmann",
  10307. "type": "github"
  10308. }
  10309. ],
  10310. "time": "2024-07-03T04:58:38+00:00"
  10311. },
  10312. {
  10313. "name": "sebastian/object-enumerator",
  10314. "version": "6.0.1",
  10315. "source": {
  10316. "type": "git",
  10317. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10318. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  10319. },
  10320. "dist": {
  10321. "type": "zip",
  10322. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  10323. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  10324. "shasum": ""
  10325. },
  10326. "require": {
  10327. "php": ">=8.2",
  10328. "sebastian/object-reflector": "^4.0",
  10329. "sebastian/recursion-context": "^6.0"
  10330. },
  10331. "require-dev": {
  10332. "phpunit/phpunit": "^11.0"
  10333. },
  10334. "type": "library",
  10335. "extra": {
  10336. "branch-alias": {
  10337. "dev-main": "6.0-dev"
  10338. }
  10339. },
  10340. "autoload": {
  10341. "classmap": [
  10342. "src/"
  10343. ]
  10344. },
  10345. "notification-url": "https://packagist.org/downloads/",
  10346. "license": [
  10347. "BSD-3-Clause"
  10348. ],
  10349. "authors": [
  10350. {
  10351. "name": "Sebastian Bergmann",
  10352. "email": "sebastian@phpunit.de"
  10353. }
  10354. ],
  10355. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10356. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10357. "support": {
  10358. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10359. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  10360. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  10361. },
  10362. "funding": [
  10363. {
  10364. "url": "https://github.com/sebastianbergmann",
  10365. "type": "github"
  10366. }
  10367. ],
  10368. "time": "2024-07-03T05:00:13+00:00"
  10369. },
  10370. {
  10371. "name": "sebastian/object-reflector",
  10372. "version": "4.0.1",
  10373. "source": {
  10374. "type": "git",
  10375. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10376. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  10377. },
  10378. "dist": {
  10379. "type": "zip",
  10380. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  10381. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  10382. "shasum": ""
  10383. },
  10384. "require": {
  10385. "php": ">=8.2"
  10386. },
  10387. "require-dev": {
  10388. "phpunit/phpunit": "^11.0"
  10389. },
  10390. "type": "library",
  10391. "extra": {
  10392. "branch-alias": {
  10393. "dev-main": "4.0-dev"
  10394. }
  10395. },
  10396. "autoload": {
  10397. "classmap": [
  10398. "src/"
  10399. ]
  10400. },
  10401. "notification-url": "https://packagist.org/downloads/",
  10402. "license": [
  10403. "BSD-3-Clause"
  10404. ],
  10405. "authors": [
  10406. {
  10407. "name": "Sebastian Bergmann",
  10408. "email": "sebastian@phpunit.de"
  10409. }
  10410. ],
  10411. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10412. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10413. "support": {
  10414. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10415. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  10416. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  10417. },
  10418. "funding": [
  10419. {
  10420. "url": "https://github.com/sebastianbergmann",
  10421. "type": "github"
  10422. }
  10423. ],
  10424. "time": "2024-07-03T05:01:32+00:00"
  10425. },
  10426. {
  10427. "name": "sebastian/recursion-context",
  10428. "version": "6.0.2",
  10429. "source": {
  10430. "type": "git",
  10431. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10432. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  10433. },
  10434. "dist": {
  10435. "type": "zip",
  10436. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  10437. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  10438. "shasum": ""
  10439. },
  10440. "require": {
  10441. "php": ">=8.2"
  10442. },
  10443. "require-dev": {
  10444. "phpunit/phpunit": "^11.0"
  10445. },
  10446. "type": "library",
  10447. "extra": {
  10448. "branch-alias": {
  10449. "dev-main": "6.0-dev"
  10450. }
  10451. },
  10452. "autoload": {
  10453. "classmap": [
  10454. "src/"
  10455. ]
  10456. },
  10457. "notification-url": "https://packagist.org/downloads/",
  10458. "license": [
  10459. "BSD-3-Clause"
  10460. ],
  10461. "authors": [
  10462. {
  10463. "name": "Sebastian Bergmann",
  10464. "email": "sebastian@phpunit.de"
  10465. },
  10466. {
  10467. "name": "Jeff Welch",
  10468. "email": "whatthejeff@gmail.com"
  10469. },
  10470. {
  10471. "name": "Adam Harvey",
  10472. "email": "aharvey@php.net"
  10473. }
  10474. ],
  10475. "description": "Provides functionality to recursively process PHP variables",
  10476. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10477. "support": {
  10478. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10479. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  10480. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  10481. },
  10482. "funding": [
  10483. {
  10484. "url": "https://github.com/sebastianbergmann",
  10485. "type": "github"
  10486. }
  10487. ],
  10488. "time": "2024-07-03T05:10:34+00:00"
  10489. },
  10490. {
  10491. "name": "sebastian/type",
  10492. "version": "5.1.0",
  10493. "source": {
  10494. "type": "git",
  10495. "url": "https://github.com/sebastianbergmann/type.git",
  10496. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  10497. },
  10498. "dist": {
  10499. "type": "zip",
  10500. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  10501. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  10502. "shasum": ""
  10503. },
  10504. "require": {
  10505. "php": ">=8.2"
  10506. },
  10507. "require-dev": {
  10508. "phpunit/phpunit": "^11.3"
  10509. },
  10510. "type": "library",
  10511. "extra": {
  10512. "branch-alias": {
  10513. "dev-main": "5.1-dev"
  10514. }
  10515. },
  10516. "autoload": {
  10517. "classmap": [
  10518. "src/"
  10519. ]
  10520. },
  10521. "notification-url": "https://packagist.org/downloads/",
  10522. "license": [
  10523. "BSD-3-Clause"
  10524. ],
  10525. "authors": [
  10526. {
  10527. "name": "Sebastian Bergmann",
  10528. "email": "sebastian@phpunit.de",
  10529. "role": "lead"
  10530. }
  10531. ],
  10532. "description": "Collection of value objects that represent the types of the PHP type system",
  10533. "homepage": "https://github.com/sebastianbergmann/type",
  10534. "support": {
  10535. "issues": "https://github.com/sebastianbergmann/type/issues",
  10536. "security": "https://github.com/sebastianbergmann/type/security/policy",
  10537. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  10538. },
  10539. "funding": [
  10540. {
  10541. "url": "https://github.com/sebastianbergmann",
  10542. "type": "github"
  10543. }
  10544. ],
  10545. "time": "2024-09-17T13:12:04+00:00"
  10546. },
  10547. {
  10548. "name": "sebastian/version",
  10549. "version": "5.0.2",
  10550. "source": {
  10551. "type": "git",
  10552. "url": "https://github.com/sebastianbergmann/version.git",
  10553. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  10554. },
  10555. "dist": {
  10556. "type": "zip",
  10557. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  10558. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  10559. "shasum": ""
  10560. },
  10561. "require": {
  10562. "php": ">=8.2"
  10563. },
  10564. "type": "library",
  10565. "extra": {
  10566. "branch-alias": {
  10567. "dev-main": "5.0-dev"
  10568. }
  10569. },
  10570. "autoload": {
  10571. "classmap": [
  10572. "src/"
  10573. ]
  10574. },
  10575. "notification-url": "https://packagist.org/downloads/",
  10576. "license": [
  10577. "BSD-3-Clause"
  10578. ],
  10579. "authors": [
  10580. {
  10581. "name": "Sebastian Bergmann",
  10582. "email": "sebastian@phpunit.de",
  10583. "role": "lead"
  10584. }
  10585. ],
  10586. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10587. "homepage": "https://github.com/sebastianbergmann/version",
  10588. "support": {
  10589. "issues": "https://github.com/sebastianbergmann/version/issues",
  10590. "security": "https://github.com/sebastianbergmann/version/security/policy",
  10591. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  10592. },
  10593. "funding": [
  10594. {
  10595. "url": "https://github.com/sebastianbergmann",
  10596. "type": "github"
  10597. }
  10598. ],
  10599. "time": "2024-10-09T05:16:32+00:00"
  10600. },
  10601. {
  10602. "name": "theseer/tokenizer",
  10603. "version": "1.2.3",
  10604. "source": {
  10605. "type": "git",
  10606. "url": "https://github.com/theseer/tokenizer.git",
  10607. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10608. },
  10609. "dist": {
  10610. "type": "zip",
  10611. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10612. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10613. "shasum": ""
  10614. },
  10615. "require": {
  10616. "ext-dom": "*",
  10617. "ext-tokenizer": "*",
  10618. "ext-xmlwriter": "*",
  10619. "php": "^7.2 || ^8.0"
  10620. },
  10621. "type": "library",
  10622. "autoload": {
  10623. "classmap": [
  10624. "src/"
  10625. ]
  10626. },
  10627. "notification-url": "https://packagist.org/downloads/",
  10628. "license": [
  10629. "BSD-3-Clause"
  10630. ],
  10631. "authors": [
  10632. {
  10633. "name": "Arne Blankerts",
  10634. "email": "arne@blankerts.de",
  10635. "role": "Developer"
  10636. }
  10637. ],
  10638. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10639. "support": {
  10640. "issues": "https://github.com/theseer/tokenizer/issues",
  10641. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10642. },
  10643. "funding": [
  10644. {
  10645. "url": "https://github.com/theseer",
  10646. "type": "github"
  10647. }
  10648. ],
  10649. "time": "2024-03-03T12:36:25+00:00"
  10650. }
  10651. ],
  10652. "aliases": [],
  10653. "minimum-stability": "stable",
  10654. "stability-flags": {},
  10655. "prefer-stable": true,
  10656. "prefer-lowest": false,
  10657. "platform": {
  10658. "php": "^8.2"
  10659. },
  10660. "platform-dev": {},
  10661. "plugin-api-version": "2.6.0"
  10662. }