composer.lock 341 KB

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