composer.lock 339 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501
  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": "209c9a51a819dfa945ed9da8ee2433c9",
  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": "slowlyo/laravel-support",
  3682. "version": "v0.0.5",
  3683. "source": {
  3684. "type": "git",
  3685. "url": "https://github.com/slowlyo/laravel-support.git",
  3686. "reference": "8ad7d9d12f3c6e9180593812e1f472f225cd42b2"
  3687. },
  3688. "dist": {
  3689. "type": "zip",
  3690. "url": "https://api.github.com/repos/slowlyo/laravel-support/zipball/8ad7d9d12f3c6e9180593812e1f472f225cd42b2",
  3691. "reference": "8ad7d9d12f3c6e9180593812e1f472f225cd42b2",
  3692. "shasum": ""
  3693. },
  3694. "require": {
  3695. "ext-bcmath": "*",
  3696. "ext-json": "*",
  3697. "laravel/framework": ">=8",
  3698. "php": ">=7.4.0"
  3699. },
  3700. "type": "library",
  3701. "extra": {
  3702. "laravel": {
  3703. "providers": [
  3704. "Slowlyo\\Support\\SupportServiceProvider"
  3705. ]
  3706. }
  3707. },
  3708. "autoload": {
  3709. "files": [
  3710. "./src/functions.php"
  3711. ],
  3712. "psr-4": {
  3713. "Slowlyo\\Support\\": "src/"
  3714. }
  3715. },
  3716. "notification-url": "https://packagist.org/downloads/",
  3717. "license": [
  3718. "MIT"
  3719. ],
  3720. "authors": [
  3721. {
  3722. "name": "Slowlyo",
  3723. "email": "slowlyo_email@qq.com"
  3724. }
  3725. ],
  3726. "description": "php/laravel部分代码封装",
  3727. "support": {
  3728. "issues": "https://github.com/slowlyo/laravel-support/issues",
  3729. "source": "https://github.com/slowlyo/laravel-support/tree/v0.0.5"
  3730. },
  3731. "time": "2024-07-20T16:48:21+00:00"
  3732. },
  3733. {
  3734. "name": "slowlyo/owl-admin",
  3735. "version": "v4.0.5",
  3736. "source": {
  3737. "type": "git",
  3738. "url": "https://github.com/slowlyo/owl-admin.git",
  3739. "reference": "843fbe5be86fbd396c690a41583d247c131398dc"
  3740. },
  3741. "dist": {
  3742. "type": "zip",
  3743. "url": "https://api.github.com/repos/slowlyo/owl-admin/zipball/843fbe5be86fbd396c690a41583d247c131398dc",
  3744. "reference": "843fbe5be86fbd396c690a41583d247c131398dc",
  3745. "shasum": ""
  3746. },
  3747. "require": {
  3748. "ext-gd": "*",
  3749. "ext-zip": "*",
  3750. "illuminate/support": ">=11",
  3751. "php": ">=8.2",
  3752. "slowlyo/laravel-support": "*"
  3753. },
  3754. "type": "library",
  3755. "extra": {
  3756. "laravel": {
  3757. "providers": [
  3758. "Slowlyo\\OwlAdmin\\AdminServiceProvider"
  3759. ],
  3760. "aliases": {
  3761. "OwlAdmin": "Slowlyo\\OwlAdmin\\Facades\\OwlAdmin"
  3762. }
  3763. }
  3764. },
  3765. "autoload": {
  3766. "files": [
  3767. "src/Support/helpers.php"
  3768. ],
  3769. "psr-4": {
  3770. "Slowlyo\\OwlAdmin\\": "src/"
  3771. }
  3772. },
  3773. "notification-url": "https://packagist.org/downloads/",
  3774. "license": [
  3775. "MIT"
  3776. ],
  3777. "authors": [
  3778. {
  3779. "name": "slowlyo",
  3780. "email": "slowlyo_email@qq.com",
  3781. "homepage": "https://github.com/slowlyo"
  3782. }
  3783. ],
  3784. "description": "基于 laravel、amis 开发的后台框架~",
  3785. "homepage": "https://github.com/slowlyo/owl-admin",
  3786. "keywords": [
  3787. "admin",
  3788. "amis",
  3789. "laravel",
  3790. "owl-admin"
  3791. ],
  3792. "support": {
  3793. "email": "slowlyo_email@qq.com",
  3794. "forum": "https://github.com/orgs/owl-admin/discussions",
  3795. "issues": "https://github.com/Slowlyo/owl-admin/issues",
  3796. "source": "https://github.com/slowlyo/owl-admin/tree/v4.0.5",
  3797. "wiki": "https://doc.owladmin.com/"
  3798. },
  3799. "time": "2024-11-05T14:02:41+00:00"
  3800. },
  3801. {
  3802. "name": "slowlyo/owl-dict",
  3803. "version": "v1.3.2",
  3804. "source": {
  3805. "type": "git",
  3806. "url": "https://github.com/owl-admin/dict.git",
  3807. "reference": "8754d9258a11175ec17f30e698b6489abade11ef"
  3808. },
  3809. "dist": {
  3810. "type": "zip",
  3811. "url": "https://api.github.com/repos/owl-admin/dict/zipball/8754d9258a11175ec17f30e698b6489abade11ef",
  3812. "reference": "8754d9258a11175ec17f30e698b6489abade11ef",
  3813. "shasum": ""
  3814. },
  3815. "require": {
  3816. "php": ">=8.0",
  3817. "slowlyo/owl-admin": "*"
  3818. },
  3819. "type": "library",
  3820. "extra": {
  3821. "owl-admin": "Slowlyo\\OwlDict\\OwlDictServiceProvider",
  3822. "laravel": {
  3823. "providers": [
  3824. "Slowlyo\\OwlDict\\OwlDictServiceProvider"
  3825. ]
  3826. }
  3827. },
  3828. "autoload": {
  3829. "files": [
  3830. "src/helpers.php"
  3831. ],
  3832. "psr-4": {
  3833. "Slowlyo\\OwlDict\\": "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. }
  3845. ],
  3846. "description": "OwlAdmin 数据字典扩展",
  3847. "homepage": "https://gitee.com/slowlyo/owl-dict",
  3848. "keywords": [
  3849. "Dict",
  3850. "extension",
  3851. "owl-admin"
  3852. ],
  3853. "support": {
  3854. "issues": "https://github.com/owl-admin/dict/issues",
  3855. "source": "https://github.com/owl-admin/dict/tree/v1.3.2"
  3856. },
  3857. "time": "2024-07-08T03:05:14+00:00"
  3858. },
  3859. {
  3860. "name": "slowlyo/owl-log-viewer",
  3861. "version": "1.0.0",
  3862. "source": {
  3863. "type": "git",
  3864. "url": "https://github.com/owl-admin/log-viewer.git",
  3865. "reference": "d249c011dd7febe2f7be5bf800b42ed325b02d40"
  3866. },
  3867. "dist": {
  3868. "type": "zip",
  3869. "url": "https://api.github.com/repos/owl-admin/log-viewer/zipball/d249c011dd7febe2f7be5bf800b42ed325b02d40",
  3870. "reference": "d249c011dd7febe2f7be5bf800b42ed325b02d40",
  3871. "shasum": ""
  3872. },
  3873. "require": {
  3874. "php": ">=8.0",
  3875. "slowlyo/owl-admin": "*"
  3876. },
  3877. "type": "library",
  3878. "extra": {
  3879. "owl-admin": "Slowlyo\\OwlLogViewer\\OwlLogViewerServiceProvider",
  3880. "laravel": {
  3881. "providers": [
  3882. "Slowlyo\\OwlLogViewer\\OwlLogViewerServiceProvider"
  3883. ]
  3884. }
  3885. },
  3886. "autoload": {
  3887. "psr-4": {
  3888. "Slowlyo\\OwlLogViewer\\": "src/"
  3889. }
  3890. },
  3891. "notification-url": "https://packagist.org/downloads/",
  3892. "license": [
  3893. "MIT"
  3894. ],
  3895. "authors": [
  3896. {
  3897. "name": "slowlyo",
  3898. "email": "slowlyo_email@qq.com"
  3899. }
  3900. ],
  3901. "description": "更方便的查看laravel日志",
  3902. "homepage": "https://github.com/slowlyo/owl-log-viewer",
  3903. "keywords": [
  3904. "extension",
  3905. "owl-admin"
  3906. ],
  3907. "support": {
  3908. "issues": "https://github.com/owl-admin/log-viewer/issues",
  3909. "source": "https://github.com/owl-admin/log-viewer/tree/v1.0.0"
  3910. },
  3911. "time": "2024-03-10T13:57:59+00:00"
  3912. },
  3913. {
  3914. "name": "slowlyo/owl-module-notice",
  3915. "version": "v1.1.3",
  3916. "source": {
  3917. "type": "git",
  3918. "url": "https://gitee.com/slowlyo/owl-module-notice",
  3919. "reference": "8410e77a08cee435055f8d8cf6f57cfac5b86e3f"
  3920. },
  3921. "require": {
  3922. "php": ">=8.0",
  3923. "slowlyo/owl-admin": "*"
  3924. },
  3925. "type": "library",
  3926. "extra": {
  3927. "owl-admin": "Slowlyo\\Notice\\NoticeServiceProvider",
  3928. "laravel": {
  3929. "providers": [
  3930. "Slowlyo\\Notice\\NoticeServiceProvider"
  3931. ]
  3932. }
  3933. },
  3934. "autoload": {
  3935. "psr-4": {
  3936. "Slowlyo\\Notice\\": "src/"
  3937. }
  3938. },
  3939. "notification-url": "https://packagist.org/downloads/",
  3940. "license": [
  3941. "MIT"
  3942. ],
  3943. "authors": [
  3944. {
  3945. "name": "slowlyo",
  3946. "email": "slowlyo_email@qq.com"
  3947. }
  3948. ],
  3949. "description": "OwlAdmin 扩展: 后台功能-通知公告管理",
  3950. "homepage": "https://gitee.com/slowlyo/notice",
  3951. "keywords": [
  3952. "extension",
  3953. "notice",
  3954. "owl-admin"
  3955. ],
  3956. "time": "2023-04-10T06:25:51+00:00"
  3957. },
  3958. {
  3959. "name": "slowlyo/owl-operation-log",
  3960. "version": "v0.2.3",
  3961. "source": {
  3962. "type": "git",
  3963. "url": "https://github.com/slowlyo/owl-operation-log.git",
  3964. "reference": "fe03f85e940e069ebc024f8c257da2c44939c78d"
  3965. },
  3966. "dist": {
  3967. "type": "zip",
  3968. "url": "https://api.github.com/repos/slowlyo/owl-operation-log/zipball/fe03f85e940e069ebc024f8c257da2c44939c78d",
  3969. "reference": "fe03f85e940e069ebc024f8c257da2c44939c78d",
  3970. "shasum": ""
  3971. },
  3972. "require": {
  3973. "php": ">=8.0",
  3974. "slowlyo/owl-admin": "*"
  3975. },
  3976. "type": "library",
  3977. "extra": {
  3978. "owl-admin": "Slowlyo\\OwlOperationLog\\OwlOperationLogServiceProvider",
  3979. "laravel": {
  3980. "providers": [
  3981. "Slowlyo\\OwlOperationLog\\OwlOperationLogServiceProvider"
  3982. ]
  3983. }
  3984. },
  3985. "autoload": {
  3986. "psr-4": {
  3987. "Slowlyo\\OwlOperationLog\\": "src/"
  3988. }
  3989. },
  3990. "notification-url": "https://packagist.org/downloads/",
  3991. "license": [
  3992. "MIT"
  3993. ],
  3994. "authors": [
  3995. {
  3996. "name": "slowlyo",
  3997. "email": "slowlyo_email@qq.com"
  3998. }
  3999. ],
  4000. "description": "OwlAdmin 扩展包,用于记录用户操作日志",
  4001. "homepage": "https://github.com/slowlyo/owl-operation-log",
  4002. "keywords": [
  4003. "extension",
  4004. "owl-admin"
  4005. ],
  4006. "support": {
  4007. "issues": "https://github.com/slowlyo/owl-operation-log/issues",
  4008. "source": "https://github.com/slowlyo/owl-operation-log/tree/v0.2.3"
  4009. },
  4010. "time": "2024-03-28T06:49:24+00:00"
  4011. },
  4012. {
  4013. "name": "slowlyo/owl-system-backup",
  4014. "version": "v0.3.1",
  4015. "source": {
  4016. "type": "git",
  4017. "url": "https://github.com/owl-admin/system-backup.git",
  4018. "reference": "3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3"
  4019. },
  4020. "dist": {
  4021. "type": "zip",
  4022. "url": "https://api.github.com/repos/owl-admin/system-backup/zipball/3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3",
  4023. "reference": "3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3",
  4024. "shasum": ""
  4025. },
  4026. "require": {
  4027. "php": ">=8.0",
  4028. "slowlyo/owl-admin": "*"
  4029. },
  4030. "type": "library",
  4031. "extra": {
  4032. "owl-admin": "Slowlyo\\OwlSystemBackup\\OwlSystemBackupServiceProvider",
  4033. "laravel": {
  4034. "providers": [
  4035. "Slowlyo\\OwlSystemBackup\\OwlSystemBackupServiceProvider"
  4036. ]
  4037. }
  4038. },
  4039. "autoload": {
  4040. "psr-4": {
  4041. "Slowlyo\\OwlSystemBackup\\": "src/"
  4042. }
  4043. },
  4044. "notification-url": "https://packagist.org/downloads/",
  4045. "license": [
  4046. "MIT"
  4047. ],
  4048. "authors": [
  4049. {
  4050. "name": "slowlyo",
  4051. "email": "slowlyo_email@qq.com"
  4052. }
  4053. ],
  4054. "description": "Owl Admin 系统备份扩展",
  4055. "homepage": "https://github.com/slowlyo/owl-system-backup",
  4056. "keywords": [
  4057. "extension",
  4058. "owl-admin"
  4059. ],
  4060. "support": {
  4061. "issues": "https://github.com/owl-admin/system-backup/issues",
  4062. "source": "https://github.com/owl-admin/system-backup/tree/v0.3.1"
  4063. },
  4064. "time": "2024-05-22T02:58:47+00:00"
  4065. },
  4066. {
  4067. "name": "symfony/cache",
  4068. "version": "v7.1.7",
  4069. "source": {
  4070. "type": "git",
  4071. "url": "https://github.com/symfony/cache.git",
  4072. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928"
  4073. },
  4074. "dist": {
  4075. "type": "zip",
  4076. "url": "https://api.github.com/repos/symfony/cache/zipball/23b61c9592ee72233c31625f0ae805dd1571e928",
  4077. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928",
  4078. "shasum": ""
  4079. },
  4080. "require": {
  4081. "php": ">=8.2",
  4082. "psr/cache": "^2.0|^3.0",
  4083. "psr/log": "^1.1|^2|^3",
  4084. "symfony/cache-contracts": "^2.5|^3",
  4085. "symfony/deprecation-contracts": "^2.5|^3.0",
  4086. "symfony/service-contracts": "^2.5|^3",
  4087. "symfony/var-exporter": "^6.4|^7.0"
  4088. },
  4089. "conflict": {
  4090. "doctrine/dbal": "<3.6",
  4091. "symfony/dependency-injection": "<6.4",
  4092. "symfony/http-kernel": "<6.4",
  4093. "symfony/var-dumper": "<6.4"
  4094. },
  4095. "provide": {
  4096. "psr/cache-implementation": "2.0|3.0",
  4097. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  4098. "symfony/cache-implementation": "1.1|2.0|3.0"
  4099. },
  4100. "require-dev": {
  4101. "cache/integration-tests": "dev-master",
  4102. "doctrine/dbal": "^3.6|^4",
  4103. "predis/predis": "^1.1|^2.0",
  4104. "psr/simple-cache": "^1.0|^2.0|^3.0",
  4105. "symfony/config": "^6.4|^7.0",
  4106. "symfony/dependency-injection": "^6.4|^7.0",
  4107. "symfony/filesystem": "^6.4|^7.0",
  4108. "symfony/http-kernel": "^6.4|^7.0",
  4109. "symfony/messenger": "^6.4|^7.0",
  4110. "symfony/var-dumper": "^6.4|^7.0"
  4111. },
  4112. "type": "library",
  4113. "autoload": {
  4114. "psr-4": {
  4115. "Symfony\\Component\\Cache\\": ""
  4116. },
  4117. "classmap": [
  4118. "Traits/ValueWrapper.php"
  4119. ],
  4120. "exclude-from-classmap": [
  4121. "/Tests/"
  4122. ]
  4123. },
  4124. "notification-url": "https://packagist.org/downloads/",
  4125. "license": [
  4126. "MIT"
  4127. ],
  4128. "authors": [
  4129. {
  4130. "name": "Nicolas Grekas",
  4131. "email": "p@tchwork.com"
  4132. },
  4133. {
  4134. "name": "Symfony Community",
  4135. "homepage": "https://symfony.com/contributors"
  4136. }
  4137. ],
  4138. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  4139. "homepage": "https://symfony.com",
  4140. "keywords": [
  4141. "caching",
  4142. "psr6"
  4143. ],
  4144. "support": {
  4145. "source": "https://github.com/symfony/cache/tree/v7.1.7"
  4146. },
  4147. "funding": [
  4148. {
  4149. "url": "https://symfony.com/sponsor",
  4150. "type": "custom"
  4151. },
  4152. {
  4153. "url": "https://github.com/fabpot",
  4154. "type": "github"
  4155. },
  4156. {
  4157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4158. "type": "tidelift"
  4159. }
  4160. ],
  4161. "time": "2024-11-05T15:34:55+00:00"
  4162. },
  4163. {
  4164. "name": "symfony/cache-contracts",
  4165. "version": "v3.5.0",
  4166. "source": {
  4167. "type": "git",
  4168. "url": "https://github.com/symfony/cache-contracts.git",
  4169. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  4170. },
  4171. "dist": {
  4172. "type": "zip",
  4173. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  4174. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  4175. "shasum": ""
  4176. },
  4177. "require": {
  4178. "php": ">=8.1",
  4179. "psr/cache": "^3.0"
  4180. },
  4181. "type": "library",
  4182. "extra": {
  4183. "branch-alias": {
  4184. "dev-main": "3.5-dev"
  4185. },
  4186. "thanks": {
  4187. "name": "symfony/contracts",
  4188. "url": "https://github.com/symfony/contracts"
  4189. }
  4190. },
  4191. "autoload": {
  4192. "psr-4": {
  4193. "Symfony\\Contracts\\Cache\\": ""
  4194. }
  4195. },
  4196. "notification-url": "https://packagist.org/downloads/",
  4197. "license": [
  4198. "MIT"
  4199. ],
  4200. "authors": [
  4201. {
  4202. "name": "Nicolas Grekas",
  4203. "email": "p@tchwork.com"
  4204. },
  4205. {
  4206. "name": "Symfony Community",
  4207. "homepage": "https://symfony.com/contributors"
  4208. }
  4209. ],
  4210. "description": "Generic abstractions related to caching",
  4211. "homepage": "https://symfony.com",
  4212. "keywords": [
  4213. "abstractions",
  4214. "contracts",
  4215. "decoupling",
  4216. "interfaces",
  4217. "interoperability",
  4218. "standards"
  4219. ],
  4220. "support": {
  4221. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  4222. },
  4223. "funding": [
  4224. {
  4225. "url": "https://symfony.com/sponsor",
  4226. "type": "custom"
  4227. },
  4228. {
  4229. "url": "https://github.com/fabpot",
  4230. "type": "github"
  4231. },
  4232. {
  4233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4234. "type": "tidelift"
  4235. }
  4236. ],
  4237. "time": "2024-04-18T09:32:20+00:00"
  4238. },
  4239. {
  4240. "name": "symfony/clock",
  4241. "version": "v7.1.6",
  4242. "source": {
  4243. "type": "git",
  4244. "url": "https://github.com/symfony/clock.git",
  4245. "reference": "97bebc53548684c17ed696bc8af016880f0f098d"
  4246. },
  4247. "dist": {
  4248. "type": "zip",
  4249. "url": "https://api.github.com/repos/symfony/clock/zipball/97bebc53548684c17ed696bc8af016880f0f098d",
  4250. "reference": "97bebc53548684c17ed696bc8af016880f0f098d",
  4251. "shasum": ""
  4252. },
  4253. "require": {
  4254. "php": ">=8.2",
  4255. "psr/clock": "^1.0",
  4256. "symfony/polyfill-php83": "^1.28"
  4257. },
  4258. "provide": {
  4259. "psr/clock-implementation": "1.0"
  4260. },
  4261. "type": "library",
  4262. "autoload": {
  4263. "files": [
  4264. "Resources/now.php"
  4265. ],
  4266. "psr-4": {
  4267. "Symfony\\Component\\Clock\\": ""
  4268. },
  4269. "exclude-from-classmap": [
  4270. "/Tests/"
  4271. ]
  4272. },
  4273. "notification-url": "https://packagist.org/downloads/",
  4274. "license": [
  4275. "MIT"
  4276. ],
  4277. "authors": [
  4278. {
  4279. "name": "Nicolas Grekas",
  4280. "email": "p@tchwork.com"
  4281. },
  4282. {
  4283. "name": "Symfony Community",
  4284. "homepage": "https://symfony.com/contributors"
  4285. }
  4286. ],
  4287. "description": "Decouples applications from the system clock",
  4288. "homepage": "https://symfony.com",
  4289. "keywords": [
  4290. "clock",
  4291. "psr20",
  4292. "time"
  4293. ],
  4294. "support": {
  4295. "source": "https://github.com/symfony/clock/tree/v7.1.6"
  4296. },
  4297. "funding": [
  4298. {
  4299. "url": "https://symfony.com/sponsor",
  4300. "type": "custom"
  4301. },
  4302. {
  4303. "url": "https://github.com/fabpot",
  4304. "type": "github"
  4305. },
  4306. {
  4307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4308. "type": "tidelift"
  4309. }
  4310. ],
  4311. "time": "2024-09-25T14:20:29+00:00"
  4312. },
  4313. {
  4314. "name": "symfony/console",
  4315. "version": "v7.1.7",
  4316. "source": {
  4317. "type": "git",
  4318. "url": "https://github.com/symfony/console.git",
  4319. "reference": "3284aafcac338b6e86fd955ee4d794cbe434151a"
  4320. },
  4321. "dist": {
  4322. "type": "zip",
  4323. "url": "https://api.github.com/repos/symfony/console/zipball/3284aafcac338b6e86fd955ee4d794cbe434151a",
  4324. "reference": "3284aafcac338b6e86fd955ee4d794cbe434151a",
  4325. "shasum": ""
  4326. },
  4327. "require": {
  4328. "php": ">=8.2",
  4329. "symfony/polyfill-mbstring": "~1.0",
  4330. "symfony/service-contracts": "^2.5|^3",
  4331. "symfony/string": "^6.4|^7.0"
  4332. },
  4333. "conflict": {
  4334. "symfony/dependency-injection": "<6.4",
  4335. "symfony/dotenv": "<6.4",
  4336. "symfony/event-dispatcher": "<6.4",
  4337. "symfony/lock": "<6.4",
  4338. "symfony/process": "<6.4"
  4339. },
  4340. "provide": {
  4341. "psr/log-implementation": "1.0|2.0|3.0"
  4342. },
  4343. "require-dev": {
  4344. "psr/log": "^1|^2|^3",
  4345. "symfony/config": "^6.4|^7.0",
  4346. "symfony/dependency-injection": "^6.4|^7.0",
  4347. "symfony/event-dispatcher": "^6.4|^7.0",
  4348. "symfony/http-foundation": "^6.4|^7.0",
  4349. "symfony/http-kernel": "^6.4|^7.0",
  4350. "symfony/lock": "^6.4|^7.0",
  4351. "symfony/messenger": "^6.4|^7.0",
  4352. "symfony/process": "^6.4|^7.0",
  4353. "symfony/stopwatch": "^6.4|^7.0",
  4354. "symfony/var-dumper": "^6.4|^7.0"
  4355. },
  4356. "type": "library",
  4357. "autoload": {
  4358. "psr-4": {
  4359. "Symfony\\Component\\Console\\": ""
  4360. },
  4361. "exclude-from-classmap": [
  4362. "/Tests/"
  4363. ]
  4364. },
  4365. "notification-url": "https://packagist.org/downloads/",
  4366. "license": [
  4367. "MIT"
  4368. ],
  4369. "authors": [
  4370. {
  4371. "name": "Fabien Potencier",
  4372. "email": "fabien@symfony.com"
  4373. },
  4374. {
  4375. "name": "Symfony Community",
  4376. "homepage": "https://symfony.com/contributors"
  4377. }
  4378. ],
  4379. "description": "Eases the creation of beautiful and testable command line interfaces",
  4380. "homepage": "https://symfony.com",
  4381. "keywords": [
  4382. "cli",
  4383. "command-line",
  4384. "console",
  4385. "terminal"
  4386. ],
  4387. "support": {
  4388. "source": "https://github.com/symfony/console/tree/v7.1.7"
  4389. },
  4390. "funding": [
  4391. {
  4392. "url": "https://symfony.com/sponsor",
  4393. "type": "custom"
  4394. },
  4395. {
  4396. "url": "https://github.com/fabpot",
  4397. "type": "github"
  4398. },
  4399. {
  4400. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4401. "type": "tidelift"
  4402. }
  4403. ],
  4404. "time": "2024-11-05T15:34:55+00:00"
  4405. },
  4406. {
  4407. "name": "symfony/css-selector",
  4408. "version": "v7.1.6",
  4409. "source": {
  4410. "type": "git",
  4411. "url": "https://github.com/symfony/css-selector.git",
  4412. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66"
  4413. },
  4414. "dist": {
  4415. "type": "zip",
  4416. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  4417. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  4418. "shasum": ""
  4419. },
  4420. "require": {
  4421. "php": ">=8.2"
  4422. },
  4423. "type": "library",
  4424. "autoload": {
  4425. "psr-4": {
  4426. "Symfony\\Component\\CssSelector\\": ""
  4427. },
  4428. "exclude-from-classmap": [
  4429. "/Tests/"
  4430. ]
  4431. },
  4432. "notification-url": "https://packagist.org/downloads/",
  4433. "license": [
  4434. "MIT"
  4435. ],
  4436. "authors": [
  4437. {
  4438. "name": "Fabien Potencier",
  4439. "email": "fabien@symfony.com"
  4440. },
  4441. {
  4442. "name": "Jean-François Simon",
  4443. "email": "jeanfrancois.simon@sensiolabs.com"
  4444. },
  4445. {
  4446. "name": "Symfony Community",
  4447. "homepage": "https://symfony.com/contributors"
  4448. }
  4449. ],
  4450. "description": "Converts CSS selectors to XPath expressions",
  4451. "homepage": "https://symfony.com",
  4452. "support": {
  4453. "source": "https://github.com/symfony/css-selector/tree/v7.1.6"
  4454. },
  4455. "funding": [
  4456. {
  4457. "url": "https://symfony.com/sponsor",
  4458. "type": "custom"
  4459. },
  4460. {
  4461. "url": "https://github.com/fabpot",
  4462. "type": "github"
  4463. },
  4464. {
  4465. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4466. "type": "tidelift"
  4467. }
  4468. ],
  4469. "time": "2024-09-25T14:20:29+00:00"
  4470. },
  4471. {
  4472. "name": "symfony/deprecation-contracts",
  4473. "version": "v3.5.0",
  4474. "source": {
  4475. "type": "git",
  4476. "url": "https://github.com/symfony/deprecation-contracts.git",
  4477. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  4478. },
  4479. "dist": {
  4480. "type": "zip",
  4481. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  4482. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  4483. "shasum": ""
  4484. },
  4485. "require": {
  4486. "php": ">=8.1"
  4487. },
  4488. "type": "library",
  4489. "extra": {
  4490. "branch-alias": {
  4491. "dev-main": "3.5-dev"
  4492. },
  4493. "thanks": {
  4494. "name": "symfony/contracts",
  4495. "url": "https://github.com/symfony/contracts"
  4496. }
  4497. },
  4498. "autoload": {
  4499. "files": [
  4500. "function.php"
  4501. ]
  4502. },
  4503. "notification-url": "https://packagist.org/downloads/",
  4504. "license": [
  4505. "MIT"
  4506. ],
  4507. "authors": [
  4508. {
  4509. "name": "Nicolas Grekas",
  4510. "email": "p@tchwork.com"
  4511. },
  4512. {
  4513. "name": "Symfony Community",
  4514. "homepage": "https://symfony.com/contributors"
  4515. }
  4516. ],
  4517. "description": "A generic function and convention to trigger deprecation notices",
  4518. "homepage": "https://symfony.com",
  4519. "support": {
  4520. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  4521. },
  4522. "funding": [
  4523. {
  4524. "url": "https://symfony.com/sponsor",
  4525. "type": "custom"
  4526. },
  4527. {
  4528. "url": "https://github.com/fabpot",
  4529. "type": "github"
  4530. },
  4531. {
  4532. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4533. "type": "tidelift"
  4534. }
  4535. ],
  4536. "time": "2024-04-18T09:32:20+00:00"
  4537. },
  4538. {
  4539. "name": "symfony/error-handler",
  4540. "version": "v7.1.7",
  4541. "source": {
  4542. "type": "git",
  4543. "url": "https://github.com/symfony/error-handler.git",
  4544. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342"
  4545. },
  4546. "dist": {
  4547. "type": "zip",
  4548. "url": "https://api.github.com/repos/symfony/error-handler/zipball/010e44661f4c6babaf8c4862fe68c24a53903342",
  4549. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342",
  4550. "shasum": ""
  4551. },
  4552. "require": {
  4553. "php": ">=8.2",
  4554. "psr/log": "^1|^2|^3",
  4555. "symfony/var-dumper": "^6.4|^7.0"
  4556. },
  4557. "conflict": {
  4558. "symfony/deprecation-contracts": "<2.5",
  4559. "symfony/http-kernel": "<6.4"
  4560. },
  4561. "require-dev": {
  4562. "symfony/deprecation-contracts": "^2.5|^3",
  4563. "symfony/http-kernel": "^6.4|^7.0",
  4564. "symfony/serializer": "^6.4|^7.0"
  4565. },
  4566. "bin": [
  4567. "Resources/bin/patch-type-declarations"
  4568. ],
  4569. "type": "library",
  4570. "autoload": {
  4571. "psr-4": {
  4572. "Symfony\\Component\\ErrorHandler\\": ""
  4573. },
  4574. "exclude-from-classmap": [
  4575. "/Tests/"
  4576. ]
  4577. },
  4578. "notification-url": "https://packagist.org/downloads/",
  4579. "license": [
  4580. "MIT"
  4581. ],
  4582. "authors": [
  4583. {
  4584. "name": "Fabien Potencier",
  4585. "email": "fabien@symfony.com"
  4586. },
  4587. {
  4588. "name": "Symfony Community",
  4589. "homepage": "https://symfony.com/contributors"
  4590. }
  4591. ],
  4592. "description": "Provides tools to manage errors and ease debugging PHP code",
  4593. "homepage": "https://symfony.com",
  4594. "support": {
  4595. "source": "https://github.com/symfony/error-handler/tree/v7.1.7"
  4596. },
  4597. "funding": [
  4598. {
  4599. "url": "https://symfony.com/sponsor",
  4600. "type": "custom"
  4601. },
  4602. {
  4603. "url": "https://github.com/fabpot",
  4604. "type": "github"
  4605. },
  4606. {
  4607. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4608. "type": "tidelift"
  4609. }
  4610. ],
  4611. "time": "2024-11-05T15:34:55+00:00"
  4612. },
  4613. {
  4614. "name": "symfony/event-dispatcher",
  4615. "version": "v7.1.6",
  4616. "source": {
  4617. "type": "git",
  4618. "url": "https://github.com/symfony/event-dispatcher.git",
  4619. "reference": "87254c78dd50721cfd015b62277a8281c5589702"
  4620. },
  4621. "dist": {
  4622. "type": "zip",
  4623. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87254c78dd50721cfd015b62277a8281c5589702",
  4624. "reference": "87254c78dd50721cfd015b62277a8281c5589702",
  4625. "shasum": ""
  4626. },
  4627. "require": {
  4628. "php": ">=8.2",
  4629. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4630. },
  4631. "conflict": {
  4632. "symfony/dependency-injection": "<6.4",
  4633. "symfony/service-contracts": "<2.5"
  4634. },
  4635. "provide": {
  4636. "psr/event-dispatcher-implementation": "1.0",
  4637. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4638. },
  4639. "require-dev": {
  4640. "psr/log": "^1|^2|^3",
  4641. "symfony/config": "^6.4|^7.0",
  4642. "symfony/dependency-injection": "^6.4|^7.0",
  4643. "symfony/error-handler": "^6.4|^7.0",
  4644. "symfony/expression-language": "^6.4|^7.0",
  4645. "symfony/http-foundation": "^6.4|^7.0",
  4646. "symfony/service-contracts": "^2.5|^3",
  4647. "symfony/stopwatch": "^6.4|^7.0"
  4648. },
  4649. "type": "library",
  4650. "autoload": {
  4651. "psr-4": {
  4652. "Symfony\\Component\\EventDispatcher\\": ""
  4653. },
  4654. "exclude-from-classmap": [
  4655. "/Tests/"
  4656. ]
  4657. },
  4658. "notification-url": "https://packagist.org/downloads/",
  4659. "license": [
  4660. "MIT"
  4661. ],
  4662. "authors": [
  4663. {
  4664. "name": "Fabien Potencier",
  4665. "email": "fabien@symfony.com"
  4666. },
  4667. {
  4668. "name": "Symfony Community",
  4669. "homepage": "https://symfony.com/contributors"
  4670. }
  4671. ],
  4672. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4673. "homepage": "https://symfony.com",
  4674. "support": {
  4675. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.6"
  4676. },
  4677. "funding": [
  4678. {
  4679. "url": "https://symfony.com/sponsor",
  4680. "type": "custom"
  4681. },
  4682. {
  4683. "url": "https://github.com/fabpot",
  4684. "type": "github"
  4685. },
  4686. {
  4687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4688. "type": "tidelift"
  4689. }
  4690. ],
  4691. "time": "2024-09-25T14:20:29+00:00"
  4692. },
  4693. {
  4694. "name": "symfony/event-dispatcher-contracts",
  4695. "version": "v3.5.0",
  4696. "source": {
  4697. "type": "git",
  4698. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4699. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  4700. },
  4701. "dist": {
  4702. "type": "zip",
  4703. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  4704. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  4705. "shasum": ""
  4706. },
  4707. "require": {
  4708. "php": ">=8.1",
  4709. "psr/event-dispatcher": "^1"
  4710. },
  4711. "type": "library",
  4712. "extra": {
  4713. "branch-alias": {
  4714. "dev-main": "3.5-dev"
  4715. },
  4716. "thanks": {
  4717. "name": "symfony/contracts",
  4718. "url": "https://github.com/symfony/contracts"
  4719. }
  4720. },
  4721. "autoload": {
  4722. "psr-4": {
  4723. "Symfony\\Contracts\\EventDispatcher\\": ""
  4724. }
  4725. },
  4726. "notification-url": "https://packagist.org/downloads/",
  4727. "license": [
  4728. "MIT"
  4729. ],
  4730. "authors": [
  4731. {
  4732. "name": "Nicolas Grekas",
  4733. "email": "p@tchwork.com"
  4734. },
  4735. {
  4736. "name": "Symfony Community",
  4737. "homepage": "https://symfony.com/contributors"
  4738. }
  4739. ],
  4740. "description": "Generic abstractions related to dispatching event",
  4741. "homepage": "https://symfony.com",
  4742. "keywords": [
  4743. "abstractions",
  4744. "contracts",
  4745. "decoupling",
  4746. "interfaces",
  4747. "interoperability",
  4748. "standards"
  4749. ],
  4750. "support": {
  4751. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  4752. },
  4753. "funding": [
  4754. {
  4755. "url": "https://symfony.com/sponsor",
  4756. "type": "custom"
  4757. },
  4758. {
  4759. "url": "https://github.com/fabpot",
  4760. "type": "github"
  4761. },
  4762. {
  4763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4764. "type": "tidelift"
  4765. }
  4766. ],
  4767. "time": "2024-04-18T09:32:20+00:00"
  4768. },
  4769. {
  4770. "name": "symfony/finder",
  4771. "version": "v7.1.6",
  4772. "source": {
  4773. "type": "git",
  4774. "url": "https://github.com/symfony/finder.git",
  4775. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8"
  4776. },
  4777. "dist": {
  4778. "type": "zip",
  4779. "url": "https://api.github.com/repos/symfony/finder/zipball/2cb89664897be33f78c65d3d2845954c8d7a43b8",
  4780. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8",
  4781. "shasum": ""
  4782. },
  4783. "require": {
  4784. "php": ">=8.2"
  4785. },
  4786. "require-dev": {
  4787. "symfony/filesystem": "^6.4|^7.0"
  4788. },
  4789. "type": "library",
  4790. "autoload": {
  4791. "psr-4": {
  4792. "Symfony\\Component\\Finder\\": ""
  4793. },
  4794. "exclude-from-classmap": [
  4795. "/Tests/"
  4796. ]
  4797. },
  4798. "notification-url": "https://packagist.org/downloads/",
  4799. "license": [
  4800. "MIT"
  4801. ],
  4802. "authors": [
  4803. {
  4804. "name": "Fabien Potencier",
  4805. "email": "fabien@symfony.com"
  4806. },
  4807. {
  4808. "name": "Symfony Community",
  4809. "homepage": "https://symfony.com/contributors"
  4810. }
  4811. ],
  4812. "description": "Finds files and directories via an intuitive fluent interface",
  4813. "homepage": "https://symfony.com",
  4814. "support": {
  4815. "source": "https://github.com/symfony/finder/tree/v7.1.6"
  4816. },
  4817. "funding": [
  4818. {
  4819. "url": "https://symfony.com/sponsor",
  4820. "type": "custom"
  4821. },
  4822. {
  4823. "url": "https://github.com/fabpot",
  4824. "type": "github"
  4825. },
  4826. {
  4827. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4828. "type": "tidelift"
  4829. }
  4830. ],
  4831. "time": "2024-10-01T08:31:23+00:00"
  4832. },
  4833. {
  4834. "name": "symfony/http-client",
  4835. "version": "v7.1.7",
  4836. "source": {
  4837. "type": "git",
  4838. "url": "https://github.com/symfony/http-client.git",
  4839. "reference": "90ab2a4992dcf5d1f19a9b8737eba36a7c305fd0"
  4840. },
  4841. "dist": {
  4842. "type": "zip",
  4843. "url": "https://api.github.com/repos/symfony/http-client/zipball/90ab2a4992dcf5d1f19a9b8737eba36a7c305fd0",
  4844. "reference": "90ab2a4992dcf5d1f19a9b8737eba36a7c305fd0",
  4845. "shasum": ""
  4846. },
  4847. "require": {
  4848. "php": ">=8.2",
  4849. "psr/log": "^1|^2|^3",
  4850. "symfony/deprecation-contracts": "^2.5|^3",
  4851. "symfony/http-client-contracts": "^3.4.1",
  4852. "symfony/service-contracts": "^2.5|^3"
  4853. },
  4854. "conflict": {
  4855. "php-http/discovery": "<1.15",
  4856. "symfony/http-foundation": "<6.4"
  4857. },
  4858. "provide": {
  4859. "php-http/async-client-implementation": "*",
  4860. "php-http/client-implementation": "*",
  4861. "psr/http-client-implementation": "1.0",
  4862. "symfony/http-client-implementation": "3.0"
  4863. },
  4864. "require-dev": {
  4865. "amphp/amp": "^2.5",
  4866. "amphp/http-client": "^4.2.1",
  4867. "amphp/http-tunnel": "^1.0",
  4868. "amphp/socket": "^1.1",
  4869. "guzzlehttp/promises": "^1.4|^2.0",
  4870. "nyholm/psr7": "^1.0",
  4871. "php-http/httplug": "^1.0|^2.0",
  4872. "psr/http-client": "^1.0",
  4873. "symfony/dependency-injection": "^6.4|^7.0",
  4874. "symfony/http-kernel": "^6.4|^7.0",
  4875. "symfony/messenger": "^6.4|^7.0",
  4876. "symfony/process": "^6.4|^7.0",
  4877. "symfony/rate-limiter": "^6.4|^7.0",
  4878. "symfony/stopwatch": "^6.4|^7.0"
  4879. },
  4880. "type": "library",
  4881. "autoload": {
  4882. "psr-4": {
  4883. "Symfony\\Component\\HttpClient\\": ""
  4884. },
  4885. "exclude-from-classmap": [
  4886. "/Tests/"
  4887. ]
  4888. },
  4889. "notification-url": "https://packagist.org/downloads/",
  4890. "license": [
  4891. "MIT"
  4892. ],
  4893. "authors": [
  4894. {
  4895. "name": "Nicolas Grekas",
  4896. "email": "p@tchwork.com"
  4897. },
  4898. {
  4899. "name": "Symfony Community",
  4900. "homepage": "https://symfony.com/contributors"
  4901. }
  4902. ],
  4903. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4904. "homepage": "https://symfony.com",
  4905. "keywords": [
  4906. "http"
  4907. ],
  4908. "support": {
  4909. "source": "https://github.com/symfony/http-client/tree/v7.1.7"
  4910. },
  4911. "funding": [
  4912. {
  4913. "url": "https://symfony.com/sponsor",
  4914. "type": "custom"
  4915. },
  4916. {
  4917. "url": "https://github.com/fabpot",
  4918. "type": "github"
  4919. },
  4920. {
  4921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4922. "type": "tidelift"
  4923. }
  4924. ],
  4925. "time": "2024-11-05T16:45:54+00:00"
  4926. },
  4927. {
  4928. "name": "symfony/http-client-contracts",
  4929. "version": "v3.5.0",
  4930. "source": {
  4931. "type": "git",
  4932. "url": "https://github.com/symfony/http-client-contracts.git",
  4933. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  4934. },
  4935. "dist": {
  4936. "type": "zip",
  4937. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  4938. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  4939. "shasum": ""
  4940. },
  4941. "require": {
  4942. "php": ">=8.1"
  4943. },
  4944. "type": "library",
  4945. "extra": {
  4946. "branch-alias": {
  4947. "dev-main": "3.5-dev"
  4948. },
  4949. "thanks": {
  4950. "name": "symfony/contracts",
  4951. "url": "https://github.com/symfony/contracts"
  4952. }
  4953. },
  4954. "autoload": {
  4955. "psr-4": {
  4956. "Symfony\\Contracts\\HttpClient\\": ""
  4957. },
  4958. "exclude-from-classmap": [
  4959. "/Test/"
  4960. ]
  4961. },
  4962. "notification-url": "https://packagist.org/downloads/",
  4963. "license": [
  4964. "MIT"
  4965. ],
  4966. "authors": [
  4967. {
  4968. "name": "Nicolas Grekas",
  4969. "email": "p@tchwork.com"
  4970. },
  4971. {
  4972. "name": "Symfony Community",
  4973. "homepage": "https://symfony.com/contributors"
  4974. }
  4975. ],
  4976. "description": "Generic abstractions related to HTTP clients",
  4977. "homepage": "https://symfony.com",
  4978. "keywords": [
  4979. "abstractions",
  4980. "contracts",
  4981. "decoupling",
  4982. "interfaces",
  4983. "interoperability",
  4984. "standards"
  4985. ],
  4986. "support": {
  4987. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  4988. },
  4989. "funding": [
  4990. {
  4991. "url": "https://symfony.com/sponsor",
  4992. "type": "custom"
  4993. },
  4994. {
  4995. "url": "https://github.com/fabpot",
  4996. "type": "github"
  4997. },
  4998. {
  4999. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5000. "type": "tidelift"
  5001. }
  5002. ],
  5003. "time": "2024-04-18T09:32:20+00:00"
  5004. },
  5005. {
  5006. "name": "symfony/http-foundation",
  5007. "version": "v7.1.7",
  5008. "source": {
  5009. "type": "git",
  5010. "url": "https://github.com/symfony/http-foundation.git",
  5011. "reference": "5183b61657807099d98f3367bcccb850238b17a9"
  5012. },
  5013. "dist": {
  5014. "type": "zip",
  5015. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5183b61657807099d98f3367bcccb850238b17a9",
  5016. "reference": "5183b61657807099d98f3367bcccb850238b17a9",
  5017. "shasum": ""
  5018. },
  5019. "require": {
  5020. "php": ">=8.2",
  5021. "symfony/polyfill-mbstring": "~1.1",
  5022. "symfony/polyfill-php83": "^1.27"
  5023. },
  5024. "conflict": {
  5025. "doctrine/dbal": "<3.6",
  5026. "symfony/cache": "<6.4"
  5027. },
  5028. "require-dev": {
  5029. "doctrine/dbal": "^3.6|^4",
  5030. "predis/predis": "^1.1|^2.0",
  5031. "symfony/cache": "^6.4|^7.0",
  5032. "symfony/dependency-injection": "^6.4|^7.0",
  5033. "symfony/expression-language": "^6.4|^7.0",
  5034. "symfony/http-kernel": "^6.4|^7.0",
  5035. "symfony/mime": "^6.4|^7.0",
  5036. "symfony/rate-limiter": "^6.4|^7.0"
  5037. },
  5038. "type": "library",
  5039. "autoload": {
  5040. "psr-4": {
  5041. "Symfony\\Component\\HttpFoundation\\": ""
  5042. },
  5043. "exclude-from-classmap": [
  5044. "/Tests/"
  5045. ]
  5046. },
  5047. "notification-url": "https://packagist.org/downloads/",
  5048. "license": [
  5049. "MIT"
  5050. ],
  5051. "authors": [
  5052. {
  5053. "name": "Fabien Potencier",
  5054. "email": "fabien@symfony.com"
  5055. },
  5056. {
  5057. "name": "Symfony Community",
  5058. "homepage": "https://symfony.com/contributors"
  5059. }
  5060. ],
  5061. "description": "Defines an object-oriented layer for the HTTP specification",
  5062. "homepage": "https://symfony.com",
  5063. "support": {
  5064. "source": "https://github.com/symfony/http-foundation/tree/v7.1.7"
  5065. },
  5066. "funding": [
  5067. {
  5068. "url": "https://symfony.com/sponsor",
  5069. "type": "custom"
  5070. },
  5071. {
  5072. "url": "https://github.com/fabpot",
  5073. "type": "github"
  5074. },
  5075. {
  5076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5077. "type": "tidelift"
  5078. }
  5079. ],
  5080. "time": "2024-11-06T09:02:46+00:00"
  5081. },
  5082. {
  5083. "name": "symfony/http-kernel",
  5084. "version": "v7.1.7",
  5085. "source": {
  5086. "type": "git",
  5087. "url": "https://github.com/symfony/http-kernel.git",
  5088. "reference": "7f137cda31fd41e422edcdc01915f2c095b84399"
  5089. },
  5090. "dist": {
  5091. "type": "zip",
  5092. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/7f137cda31fd41e422edcdc01915f2c095b84399",
  5093. "reference": "7f137cda31fd41e422edcdc01915f2c095b84399",
  5094. "shasum": ""
  5095. },
  5096. "require": {
  5097. "php": ">=8.2",
  5098. "psr/log": "^1|^2|^3",
  5099. "symfony/deprecation-contracts": "^2.5|^3",
  5100. "symfony/error-handler": "^6.4|^7.0",
  5101. "symfony/event-dispatcher": "^6.4|^7.0",
  5102. "symfony/http-foundation": "^6.4|^7.0",
  5103. "symfony/polyfill-ctype": "^1.8"
  5104. },
  5105. "conflict": {
  5106. "symfony/browser-kit": "<6.4",
  5107. "symfony/cache": "<6.4",
  5108. "symfony/config": "<6.4",
  5109. "symfony/console": "<6.4",
  5110. "symfony/dependency-injection": "<6.4",
  5111. "symfony/doctrine-bridge": "<6.4",
  5112. "symfony/form": "<6.4",
  5113. "symfony/http-client": "<6.4",
  5114. "symfony/http-client-contracts": "<2.5",
  5115. "symfony/mailer": "<6.4",
  5116. "symfony/messenger": "<6.4",
  5117. "symfony/translation": "<6.4",
  5118. "symfony/translation-contracts": "<2.5",
  5119. "symfony/twig-bridge": "<6.4",
  5120. "symfony/validator": "<6.4",
  5121. "symfony/var-dumper": "<6.4",
  5122. "twig/twig": "<3.0.4"
  5123. },
  5124. "provide": {
  5125. "psr/log-implementation": "1.0|2.0|3.0"
  5126. },
  5127. "require-dev": {
  5128. "psr/cache": "^1.0|^2.0|^3.0",
  5129. "symfony/browser-kit": "^6.4|^7.0",
  5130. "symfony/clock": "^6.4|^7.0",
  5131. "symfony/config": "^6.4|^7.0",
  5132. "symfony/console": "^6.4|^7.0",
  5133. "symfony/css-selector": "^6.4|^7.0",
  5134. "symfony/dependency-injection": "^6.4|^7.0",
  5135. "symfony/dom-crawler": "^6.4|^7.0",
  5136. "symfony/expression-language": "^6.4|^7.0",
  5137. "symfony/finder": "^6.4|^7.0",
  5138. "symfony/http-client-contracts": "^2.5|^3",
  5139. "symfony/process": "^6.4|^7.0",
  5140. "symfony/property-access": "^7.1",
  5141. "symfony/routing": "^6.4|^7.0",
  5142. "symfony/serializer": "^7.1",
  5143. "symfony/stopwatch": "^6.4|^7.0",
  5144. "symfony/translation": "^6.4|^7.0",
  5145. "symfony/translation-contracts": "^2.5|^3",
  5146. "symfony/uid": "^6.4|^7.0",
  5147. "symfony/validator": "^6.4|^7.0",
  5148. "symfony/var-dumper": "^6.4|^7.0",
  5149. "symfony/var-exporter": "^6.4|^7.0",
  5150. "twig/twig": "^3.0.4"
  5151. },
  5152. "type": "library",
  5153. "autoload": {
  5154. "psr-4": {
  5155. "Symfony\\Component\\HttpKernel\\": ""
  5156. },
  5157. "exclude-from-classmap": [
  5158. "/Tests/"
  5159. ]
  5160. },
  5161. "notification-url": "https://packagist.org/downloads/",
  5162. "license": [
  5163. "MIT"
  5164. ],
  5165. "authors": [
  5166. {
  5167. "name": "Fabien Potencier",
  5168. "email": "fabien@symfony.com"
  5169. },
  5170. {
  5171. "name": "Symfony Community",
  5172. "homepage": "https://symfony.com/contributors"
  5173. }
  5174. ],
  5175. "description": "Provides a structured process for converting a Request into a Response",
  5176. "homepage": "https://symfony.com",
  5177. "support": {
  5178. "source": "https://github.com/symfony/http-kernel/tree/v7.1.7"
  5179. },
  5180. "funding": [
  5181. {
  5182. "url": "https://symfony.com/sponsor",
  5183. "type": "custom"
  5184. },
  5185. {
  5186. "url": "https://github.com/fabpot",
  5187. "type": "github"
  5188. },
  5189. {
  5190. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5191. "type": "tidelift"
  5192. }
  5193. ],
  5194. "time": "2024-11-06T09:54:34+00:00"
  5195. },
  5196. {
  5197. "name": "symfony/mailer",
  5198. "version": "v7.1.6",
  5199. "source": {
  5200. "type": "git",
  5201. "url": "https://github.com/symfony/mailer.git",
  5202. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd"
  5203. },
  5204. "dist": {
  5205. "type": "zip",
  5206. "url": "https://api.github.com/repos/symfony/mailer/zipball/69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  5207. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  5208. "shasum": ""
  5209. },
  5210. "require": {
  5211. "egulias/email-validator": "^2.1.10|^3|^4",
  5212. "php": ">=8.2",
  5213. "psr/event-dispatcher": "^1",
  5214. "psr/log": "^1|^2|^3",
  5215. "symfony/event-dispatcher": "^6.4|^7.0",
  5216. "symfony/mime": "^6.4|^7.0",
  5217. "symfony/service-contracts": "^2.5|^3"
  5218. },
  5219. "conflict": {
  5220. "symfony/http-client-contracts": "<2.5",
  5221. "symfony/http-kernel": "<6.4",
  5222. "symfony/messenger": "<6.4",
  5223. "symfony/mime": "<6.4",
  5224. "symfony/twig-bridge": "<6.4"
  5225. },
  5226. "require-dev": {
  5227. "symfony/console": "^6.4|^7.0",
  5228. "symfony/http-client": "^6.4|^7.0",
  5229. "symfony/messenger": "^6.4|^7.0",
  5230. "symfony/twig-bridge": "^6.4|^7.0"
  5231. },
  5232. "type": "library",
  5233. "autoload": {
  5234. "psr-4": {
  5235. "Symfony\\Component\\Mailer\\": ""
  5236. },
  5237. "exclude-from-classmap": [
  5238. "/Tests/"
  5239. ]
  5240. },
  5241. "notification-url": "https://packagist.org/downloads/",
  5242. "license": [
  5243. "MIT"
  5244. ],
  5245. "authors": [
  5246. {
  5247. "name": "Fabien Potencier",
  5248. "email": "fabien@symfony.com"
  5249. },
  5250. {
  5251. "name": "Symfony Community",
  5252. "homepage": "https://symfony.com/contributors"
  5253. }
  5254. ],
  5255. "description": "Helps sending emails",
  5256. "homepage": "https://symfony.com",
  5257. "support": {
  5258. "source": "https://github.com/symfony/mailer/tree/v7.1.6"
  5259. },
  5260. "funding": [
  5261. {
  5262. "url": "https://symfony.com/sponsor",
  5263. "type": "custom"
  5264. },
  5265. {
  5266. "url": "https://github.com/fabpot",
  5267. "type": "github"
  5268. },
  5269. {
  5270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5271. "type": "tidelift"
  5272. }
  5273. ],
  5274. "time": "2024-09-25T14:20:29+00:00"
  5275. },
  5276. {
  5277. "name": "symfony/mime",
  5278. "version": "v7.1.6",
  5279. "source": {
  5280. "type": "git",
  5281. "url": "https://github.com/symfony/mime.git",
  5282. "reference": "caa1e521edb2650b8470918dfe51708c237f0598"
  5283. },
  5284. "dist": {
  5285. "type": "zip",
  5286. "url": "https://api.github.com/repos/symfony/mime/zipball/caa1e521edb2650b8470918dfe51708c237f0598",
  5287. "reference": "caa1e521edb2650b8470918dfe51708c237f0598",
  5288. "shasum": ""
  5289. },
  5290. "require": {
  5291. "php": ">=8.2",
  5292. "symfony/polyfill-intl-idn": "^1.10",
  5293. "symfony/polyfill-mbstring": "^1.0"
  5294. },
  5295. "conflict": {
  5296. "egulias/email-validator": "~3.0.0",
  5297. "phpdocumentor/reflection-docblock": "<3.2.2",
  5298. "phpdocumentor/type-resolver": "<1.4.0",
  5299. "symfony/mailer": "<6.4",
  5300. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  5301. },
  5302. "require-dev": {
  5303. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5304. "league/html-to-markdown": "^5.0",
  5305. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5306. "symfony/dependency-injection": "^6.4|^7.0",
  5307. "symfony/process": "^6.4|^7.0",
  5308. "symfony/property-access": "^6.4|^7.0",
  5309. "symfony/property-info": "^6.4|^7.0",
  5310. "symfony/serializer": "^6.4.3|^7.0.3"
  5311. },
  5312. "type": "library",
  5313. "autoload": {
  5314. "psr-4": {
  5315. "Symfony\\Component\\Mime\\": ""
  5316. },
  5317. "exclude-from-classmap": [
  5318. "/Tests/"
  5319. ]
  5320. },
  5321. "notification-url": "https://packagist.org/downloads/",
  5322. "license": [
  5323. "MIT"
  5324. ],
  5325. "authors": [
  5326. {
  5327. "name": "Fabien Potencier",
  5328. "email": "fabien@symfony.com"
  5329. },
  5330. {
  5331. "name": "Symfony Community",
  5332. "homepage": "https://symfony.com/contributors"
  5333. }
  5334. ],
  5335. "description": "Allows manipulating MIME messages",
  5336. "homepage": "https://symfony.com",
  5337. "keywords": [
  5338. "mime",
  5339. "mime-type"
  5340. ],
  5341. "support": {
  5342. "source": "https://github.com/symfony/mime/tree/v7.1.6"
  5343. },
  5344. "funding": [
  5345. {
  5346. "url": "https://symfony.com/sponsor",
  5347. "type": "custom"
  5348. },
  5349. {
  5350. "url": "https://github.com/fabpot",
  5351. "type": "github"
  5352. },
  5353. {
  5354. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5355. "type": "tidelift"
  5356. }
  5357. ],
  5358. "time": "2024-10-25T15:11:02+00:00"
  5359. },
  5360. {
  5361. "name": "symfony/polyfill-ctype",
  5362. "version": "v1.31.0",
  5363. "source": {
  5364. "type": "git",
  5365. "url": "https://github.com/symfony/polyfill-ctype.git",
  5366. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  5367. },
  5368. "dist": {
  5369. "type": "zip",
  5370. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  5371. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  5372. "shasum": ""
  5373. },
  5374. "require": {
  5375. "php": ">=7.2"
  5376. },
  5377. "provide": {
  5378. "ext-ctype": "*"
  5379. },
  5380. "suggest": {
  5381. "ext-ctype": "For best performance"
  5382. },
  5383. "type": "library",
  5384. "extra": {
  5385. "thanks": {
  5386. "name": "symfony/polyfill",
  5387. "url": "https://github.com/symfony/polyfill"
  5388. }
  5389. },
  5390. "autoload": {
  5391. "files": [
  5392. "bootstrap.php"
  5393. ],
  5394. "psr-4": {
  5395. "Symfony\\Polyfill\\Ctype\\": ""
  5396. }
  5397. },
  5398. "notification-url": "https://packagist.org/downloads/",
  5399. "license": [
  5400. "MIT"
  5401. ],
  5402. "authors": [
  5403. {
  5404. "name": "Gert de Pagter",
  5405. "email": "BackEndTea@gmail.com"
  5406. },
  5407. {
  5408. "name": "Symfony Community",
  5409. "homepage": "https://symfony.com/contributors"
  5410. }
  5411. ],
  5412. "description": "Symfony polyfill for ctype functions",
  5413. "homepage": "https://symfony.com",
  5414. "keywords": [
  5415. "compatibility",
  5416. "ctype",
  5417. "polyfill",
  5418. "portable"
  5419. ],
  5420. "support": {
  5421. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  5422. },
  5423. "funding": [
  5424. {
  5425. "url": "https://symfony.com/sponsor",
  5426. "type": "custom"
  5427. },
  5428. {
  5429. "url": "https://github.com/fabpot",
  5430. "type": "github"
  5431. },
  5432. {
  5433. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5434. "type": "tidelift"
  5435. }
  5436. ],
  5437. "time": "2024-09-09T11:45:10+00:00"
  5438. },
  5439. {
  5440. "name": "symfony/polyfill-intl-grapheme",
  5441. "version": "v1.31.0",
  5442. "source": {
  5443. "type": "git",
  5444. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5445. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5446. },
  5447. "dist": {
  5448. "type": "zip",
  5449. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5450. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5451. "shasum": ""
  5452. },
  5453. "require": {
  5454. "php": ">=7.2"
  5455. },
  5456. "suggest": {
  5457. "ext-intl": "For best performance"
  5458. },
  5459. "type": "library",
  5460. "extra": {
  5461. "thanks": {
  5462. "name": "symfony/polyfill",
  5463. "url": "https://github.com/symfony/polyfill"
  5464. }
  5465. },
  5466. "autoload": {
  5467. "files": [
  5468. "bootstrap.php"
  5469. ],
  5470. "psr-4": {
  5471. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5472. }
  5473. },
  5474. "notification-url": "https://packagist.org/downloads/",
  5475. "license": [
  5476. "MIT"
  5477. ],
  5478. "authors": [
  5479. {
  5480. "name": "Nicolas Grekas",
  5481. "email": "p@tchwork.com"
  5482. },
  5483. {
  5484. "name": "Symfony Community",
  5485. "homepage": "https://symfony.com/contributors"
  5486. }
  5487. ],
  5488. "description": "Symfony polyfill for intl's grapheme_* functions",
  5489. "homepage": "https://symfony.com",
  5490. "keywords": [
  5491. "compatibility",
  5492. "grapheme",
  5493. "intl",
  5494. "polyfill",
  5495. "portable",
  5496. "shim"
  5497. ],
  5498. "support": {
  5499. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  5500. },
  5501. "funding": [
  5502. {
  5503. "url": "https://symfony.com/sponsor",
  5504. "type": "custom"
  5505. },
  5506. {
  5507. "url": "https://github.com/fabpot",
  5508. "type": "github"
  5509. },
  5510. {
  5511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5512. "type": "tidelift"
  5513. }
  5514. ],
  5515. "time": "2024-09-09T11:45:10+00:00"
  5516. },
  5517. {
  5518. "name": "symfony/polyfill-intl-idn",
  5519. "version": "v1.31.0",
  5520. "source": {
  5521. "type": "git",
  5522. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5523. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  5524. },
  5525. "dist": {
  5526. "type": "zip",
  5527. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  5528. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  5529. "shasum": ""
  5530. },
  5531. "require": {
  5532. "php": ">=7.2",
  5533. "symfony/polyfill-intl-normalizer": "^1.10"
  5534. },
  5535. "suggest": {
  5536. "ext-intl": "For best performance"
  5537. },
  5538. "type": "library",
  5539. "extra": {
  5540. "thanks": {
  5541. "name": "symfony/polyfill",
  5542. "url": "https://github.com/symfony/polyfill"
  5543. }
  5544. },
  5545. "autoload": {
  5546. "files": [
  5547. "bootstrap.php"
  5548. ],
  5549. "psr-4": {
  5550. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5551. }
  5552. },
  5553. "notification-url": "https://packagist.org/downloads/",
  5554. "license": [
  5555. "MIT"
  5556. ],
  5557. "authors": [
  5558. {
  5559. "name": "Laurent Bassin",
  5560. "email": "laurent@bassin.info"
  5561. },
  5562. {
  5563. "name": "Trevor Rowbotham",
  5564. "email": "trevor.rowbotham@pm.me"
  5565. },
  5566. {
  5567. "name": "Symfony Community",
  5568. "homepage": "https://symfony.com/contributors"
  5569. }
  5570. ],
  5571. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5572. "homepage": "https://symfony.com",
  5573. "keywords": [
  5574. "compatibility",
  5575. "idn",
  5576. "intl",
  5577. "polyfill",
  5578. "portable",
  5579. "shim"
  5580. ],
  5581. "support": {
  5582. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  5583. },
  5584. "funding": [
  5585. {
  5586. "url": "https://symfony.com/sponsor",
  5587. "type": "custom"
  5588. },
  5589. {
  5590. "url": "https://github.com/fabpot",
  5591. "type": "github"
  5592. },
  5593. {
  5594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5595. "type": "tidelift"
  5596. }
  5597. ],
  5598. "time": "2024-09-09T11:45:10+00:00"
  5599. },
  5600. {
  5601. "name": "symfony/polyfill-intl-normalizer",
  5602. "version": "v1.31.0",
  5603. "source": {
  5604. "type": "git",
  5605. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5606. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5607. },
  5608. "dist": {
  5609. "type": "zip",
  5610. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5611. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5612. "shasum": ""
  5613. },
  5614. "require": {
  5615. "php": ">=7.2"
  5616. },
  5617. "suggest": {
  5618. "ext-intl": "For best performance"
  5619. },
  5620. "type": "library",
  5621. "extra": {
  5622. "thanks": {
  5623. "name": "symfony/polyfill",
  5624. "url": "https://github.com/symfony/polyfill"
  5625. }
  5626. },
  5627. "autoload": {
  5628. "files": [
  5629. "bootstrap.php"
  5630. ],
  5631. "psr-4": {
  5632. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5633. },
  5634. "classmap": [
  5635. "Resources/stubs"
  5636. ]
  5637. },
  5638. "notification-url": "https://packagist.org/downloads/",
  5639. "license": [
  5640. "MIT"
  5641. ],
  5642. "authors": [
  5643. {
  5644. "name": "Nicolas Grekas",
  5645. "email": "p@tchwork.com"
  5646. },
  5647. {
  5648. "name": "Symfony Community",
  5649. "homepage": "https://symfony.com/contributors"
  5650. }
  5651. ],
  5652. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5653. "homepage": "https://symfony.com",
  5654. "keywords": [
  5655. "compatibility",
  5656. "intl",
  5657. "normalizer",
  5658. "polyfill",
  5659. "portable",
  5660. "shim"
  5661. ],
  5662. "support": {
  5663. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  5664. },
  5665. "funding": [
  5666. {
  5667. "url": "https://symfony.com/sponsor",
  5668. "type": "custom"
  5669. },
  5670. {
  5671. "url": "https://github.com/fabpot",
  5672. "type": "github"
  5673. },
  5674. {
  5675. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5676. "type": "tidelift"
  5677. }
  5678. ],
  5679. "time": "2024-09-09T11:45:10+00:00"
  5680. },
  5681. {
  5682. "name": "symfony/polyfill-mbstring",
  5683. "version": "v1.31.0",
  5684. "source": {
  5685. "type": "git",
  5686. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5687. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  5688. },
  5689. "dist": {
  5690. "type": "zip",
  5691. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5692. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5693. "shasum": ""
  5694. },
  5695. "require": {
  5696. "php": ">=7.2"
  5697. },
  5698. "provide": {
  5699. "ext-mbstring": "*"
  5700. },
  5701. "suggest": {
  5702. "ext-mbstring": "For best performance"
  5703. },
  5704. "type": "library",
  5705. "extra": {
  5706. "thanks": {
  5707. "name": "symfony/polyfill",
  5708. "url": "https://github.com/symfony/polyfill"
  5709. }
  5710. },
  5711. "autoload": {
  5712. "files": [
  5713. "bootstrap.php"
  5714. ],
  5715. "psr-4": {
  5716. "Symfony\\Polyfill\\Mbstring\\": ""
  5717. }
  5718. },
  5719. "notification-url": "https://packagist.org/downloads/",
  5720. "license": [
  5721. "MIT"
  5722. ],
  5723. "authors": [
  5724. {
  5725. "name": "Nicolas Grekas",
  5726. "email": "p@tchwork.com"
  5727. },
  5728. {
  5729. "name": "Symfony Community",
  5730. "homepage": "https://symfony.com/contributors"
  5731. }
  5732. ],
  5733. "description": "Symfony polyfill for the Mbstring extension",
  5734. "homepage": "https://symfony.com",
  5735. "keywords": [
  5736. "compatibility",
  5737. "mbstring",
  5738. "polyfill",
  5739. "portable",
  5740. "shim"
  5741. ],
  5742. "support": {
  5743. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  5744. },
  5745. "funding": [
  5746. {
  5747. "url": "https://symfony.com/sponsor",
  5748. "type": "custom"
  5749. },
  5750. {
  5751. "url": "https://github.com/fabpot",
  5752. "type": "github"
  5753. },
  5754. {
  5755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5756. "type": "tidelift"
  5757. }
  5758. ],
  5759. "time": "2024-09-09T11:45:10+00:00"
  5760. },
  5761. {
  5762. "name": "symfony/polyfill-php80",
  5763. "version": "v1.31.0",
  5764. "source": {
  5765. "type": "git",
  5766. "url": "https://github.com/symfony/polyfill-php80.git",
  5767. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  5768. },
  5769. "dist": {
  5770. "type": "zip",
  5771. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  5772. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  5773. "shasum": ""
  5774. },
  5775. "require": {
  5776. "php": ">=7.2"
  5777. },
  5778. "type": "library",
  5779. "extra": {
  5780. "thanks": {
  5781. "name": "symfony/polyfill",
  5782. "url": "https://github.com/symfony/polyfill"
  5783. }
  5784. },
  5785. "autoload": {
  5786. "files": [
  5787. "bootstrap.php"
  5788. ],
  5789. "psr-4": {
  5790. "Symfony\\Polyfill\\Php80\\": ""
  5791. },
  5792. "classmap": [
  5793. "Resources/stubs"
  5794. ]
  5795. },
  5796. "notification-url": "https://packagist.org/downloads/",
  5797. "license": [
  5798. "MIT"
  5799. ],
  5800. "authors": [
  5801. {
  5802. "name": "Ion Bazan",
  5803. "email": "ion.bazan@gmail.com"
  5804. },
  5805. {
  5806. "name": "Nicolas Grekas",
  5807. "email": "p@tchwork.com"
  5808. },
  5809. {
  5810. "name": "Symfony Community",
  5811. "homepage": "https://symfony.com/contributors"
  5812. }
  5813. ],
  5814. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5815. "homepage": "https://symfony.com",
  5816. "keywords": [
  5817. "compatibility",
  5818. "polyfill",
  5819. "portable",
  5820. "shim"
  5821. ],
  5822. "support": {
  5823. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  5824. },
  5825. "funding": [
  5826. {
  5827. "url": "https://symfony.com/sponsor",
  5828. "type": "custom"
  5829. },
  5830. {
  5831. "url": "https://github.com/fabpot",
  5832. "type": "github"
  5833. },
  5834. {
  5835. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5836. "type": "tidelift"
  5837. }
  5838. ],
  5839. "time": "2024-09-09T11:45:10+00:00"
  5840. },
  5841. {
  5842. "name": "symfony/polyfill-php81",
  5843. "version": "v1.31.0",
  5844. "source": {
  5845. "type": "git",
  5846. "url": "https://github.com/symfony/polyfill-php81.git",
  5847. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  5848. },
  5849. "dist": {
  5850. "type": "zip",
  5851. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  5852. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  5853. "shasum": ""
  5854. },
  5855. "require": {
  5856. "php": ">=7.2"
  5857. },
  5858. "type": "library",
  5859. "extra": {
  5860. "thanks": {
  5861. "name": "symfony/polyfill",
  5862. "url": "https://github.com/symfony/polyfill"
  5863. }
  5864. },
  5865. "autoload": {
  5866. "files": [
  5867. "bootstrap.php"
  5868. ],
  5869. "psr-4": {
  5870. "Symfony\\Polyfill\\Php81\\": ""
  5871. },
  5872. "classmap": [
  5873. "Resources/stubs"
  5874. ]
  5875. },
  5876. "notification-url": "https://packagist.org/downloads/",
  5877. "license": [
  5878. "MIT"
  5879. ],
  5880. "authors": [
  5881. {
  5882. "name": "Nicolas Grekas",
  5883. "email": "p@tchwork.com"
  5884. },
  5885. {
  5886. "name": "Symfony Community",
  5887. "homepage": "https://symfony.com/contributors"
  5888. }
  5889. ],
  5890. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  5891. "homepage": "https://symfony.com",
  5892. "keywords": [
  5893. "compatibility",
  5894. "polyfill",
  5895. "portable",
  5896. "shim"
  5897. ],
  5898. "support": {
  5899. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  5900. },
  5901. "funding": [
  5902. {
  5903. "url": "https://symfony.com/sponsor",
  5904. "type": "custom"
  5905. },
  5906. {
  5907. "url": "https://github.com/fabpot",
  5908. "type": "github"
  5909. },
  5910. {
  5911. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5912. "type": "tidelift"
  5913. }
  5914. ],
  5915. "time": "2024-09-09T11:45:10+00:00"
  5916. },
  5917. {
  5918. "name": "symfony/polyfill-php83",
  5919. "version": "v1.31.0",
  5920. "source": {
  5921. "type": "git",
  5922. "url": "https://github.com/symfony/polyfill-php83.git",
  5923. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  5924. },
  5925. "dist": {
  5926. "type": "zip",
  5927. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  5928. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5929. "shasum": ""
  5930. },
  5931. "require": {
  5932. "php": ">=7.2"
  5933. },
  5934. "type": "library",
  5935. "extra": {
  5936. "thanks": {
  5937. "name": "symfony/polyfill",
  5938. "url": "https://github.com/symfony/polyfill"
  5939. }
  5940. },
  5941. "autoload": {
  5942. "files": [
  5943. "bootstrap.php"
  5944. ],
  5945. "psr-4": {
  5946. "Symfony\\Polyfill\\Php83\\": ""
  5947. },
  5948. "classmap": [
  5949. "Resources/stubs"
  5950. ]
  5951. },
  5952. "notification-url": "https://packagist.org/downloads/",
  5953. "license": [
  5954. "MIT"
  5955. ],
  5956. "authors": [
  5957. {
  5958. "name": "Nicolas Grekas",
  5959. "email": "p@tchwork.com"
  5960. },
  5961. {
  5962. "name": "Symfony Community",
  5963. "homepage": "https://symfony.com/contributors"
  5964. }
  5965. ],
  5966. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5967. "homepage": "https://symfony.com",
  5968. "keywords": [
  5969. "compatibility",
  5970. "polyfill",
  5971. "portable",
  5972. "shim"
  5973. ],
  5974. "support": {
  5975. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  5976. },
  5977. "funding": [
  5978. {
  5979. "url": "https://symfony.com/sponsor",
  5980. "type": "custom"
  5981. },
  5982. {
  5983. "url": "https://github.com/fabpot",
  5984. "type": "github"
  5985. },
  5986. {
  5987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5988. "type": "tidelift"
  5989. }
  5990. ],
  5991. "time": "2024-09-09T11:45:10+00:00"
  5992. },
  5993. {
  5994. "name": "symfony/polyfill-uuid",
  5995. "version": "v1.31.0",
  5996. "source": {
  5997. "type": "git",
  5998. "url": "https://github.com/symfony/polyfill-uuid.git",
  5999. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  6000. },
  6001. "dist": {
  6002. "type": "zip",
  6003. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6004. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6005. "shasum": ""
  6006. },
  6007. "require": {
  6008. "php": ">=7.2"
  6009. },
  6010. "provide": {
  6011. "ext-uuid": "*"
  6012. },
  6013. "suggest": {
  6014. "ext-uuid": "For best performance"
  6015. },
  6016. "type": "library",
  6017. "extra": {
  6018. "thanks": {
  6019. "name": "symfony/polyfill",
  6020. "url": "https://github.com/symfony/polyfill"
  6021. }
  6022. },
  6023. "autoload": {
  6024. "files": [
  6025. "bootstrap.php"
  6026. ],
  6027. "psr-4": {
  6028. "Symfony\\Polyfill\\Uuid\\": ""
  6029. }
  6030. },
  6031. "notification-url": "https://packagist.org/downloads/",
  6032. "license": [
  6033. "MIT"
  6034. ],
  6035. "authors": [
  6036. {
  6037. "name": "Grégoire Pineau",
  6038. "email": "lyrixx@lyrixx.info"
  6039. },
  6040. {
  6041. "name": "Symfony Community",
  6042. "homepage": "https://symfony.com/contributors"
  6043. }
  6044. ],
  6045. "description": "Symfony polyfill for uuid functions",
  6046. "homepage": "https://symfony.com",
  6047. "keywords": [
  6048. "compatibility",
  6049. "polyfill",
  6050. "portable",
  6051. "uuid"
  6052. ],
  6053. "support": {
  6054. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  6055. },
  6056. "funding": [
  6057. {
  6058. "url": "https://symfony.com/sponsor",
  6059. "type": "custom"
  6060. },
  6061. {
  6062. "url": "https://github.com/fabpot",
  6063. "type": "github"
  6064. },
  6065. {
  6066. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6067. "type": "tidelift"
  6068. }
  6069. ],
  6070. "time": "2024-09-09T11:45:10+00:00"
  6071. },
  6072. {
  6073. "name": "symfony/process",
  6074. "version": "v7.1.7",
  6075. "source": {
  6076. "type": "git",
  6077. "url": "https://github.com/symfony/process.git",
  6078. "reference": "9b8a40b7289767aa7117e957573c2a535efe6585"
  6079. },
  6080. "dist": {
  6081. "type": "zip",
  6082. "url": "https://api.github.com/repos/symfony/process/zipball/9b8a40b7289767aa7117e957573c2a535efe6585",
  6083. "reference": "9b8a40b7289767aa7117e957573c2a535efe6585",
  6084. "shasum": ""
  6085. },
  6086. "require": {
  6087. "php": ">=8.2"
  6088. },
  6089. "type": "library",
  6090. "autoload": {
  6091. "psr-4": {
  6092. "Symfony\\Component\\Process\\": ""
  6093. },
  6094. "exclude-from-classmap": [
  6095. "/Tests/"
  6096. ]
  6097. },
  6098. "notification-url": "https://packagist.org/downloads/",
  6099. "license": [
  6100. "MIT"
  6101. ],
  6102. "authors": [
  6103. {
  6104. "name": "Fabien Potencier",
  6105. "email": "fabien@symfony.com"
  6106. },
  6107. {
  6108. "name": "Symfony Community",
  6109. "homepage": "https://symfony.com/contributors"
  6110. }
  6111. ],
  6112. "description": "Executes commands in sub-processes",
  6113. "homepage": "https://symfony.com",
  6114. "support": {
  6115. "source": "https://github.com/symfony/process/tree/v7.1.7"
  6116. },
  6117. "funding": [
  6118. {
  6119. "url": "https://symfony.com/sponsor",
  6120. "type": "custom"
  6121. },
  6122. {
  6123. "url": "https://github.com/fabpot",
  6124. "type": "github"
  6125. },
  6126. {
  6127. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6128. "type": "tidelift"
  6129. }
  6130. ],
  6131. "time": "2024-11-06T09:25:12+00:00"
  6132. },
  6133. {
  6134. "name": "symfony/psr-http-message-bridge",
  6135. "version": "v7.1.6",
  6136. "source": {
  6137. "type": "git",
  6138. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6139. "reference": "f16471bb19f6685b9ccf0a2c03c213840ae68cd6"
  6140. },
  6141. "dist": {
  6142. "type": "zip",
  6143. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/f16471bb19f6685b9ccf0a2c03c213840ae68cd6",
  6144. "reference": "f16471bb19f6685b9ccf0a2c03c213840ae68cd6",
  6145. "shasum": ""
  6146. },
  6147. "require": {
  6148. "php": ">=8.2",
  6149. "psr/http-message": "^1.0|^2.0",
  6150. "symfony/http-foundation": "^6.4|^7.0"
  6151. },
  6152. "conflict": {
  6153. "php-http/discovery": "<1.15",
  6154. "symfony/http-kernel": "<6.4"
  6155. },
  6156. "require-dev": {
  6157. "nyholm/psr7": "^1.1",
  6158. "php-http/discovery": "^1.15",
  6159. "psr/log": "^1.1.4|^2|^3",
  6160. "symfony/browser-kit": "^6.4|^7.0",
  6161. "symfony/config": "^6.4|^7.0",
  6162. "symfony/event-dispatcher": "^6.4|^7.0",
  6163. "symfony/framework-bundle": "^6.4|^7.0",
  6164. "symfony/http-kernel": "^6.4|^7.0"
  6165. },
  6166. "type": "symfony-bridge",
  6167. "autoload": {
  6168. "psr-4": {
  6169. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6170. },
  6171. "exclude-from-classmap": [
  6172. "/Tests/"
  6173. ]
  6174. },
  6175. "notification-url": "https://packagist.org/downloads/",
  6176. "license": [
  6177. "MIT"
  6178. ],
  6179. "authors": [
  6180. {
  6181. "name": "Fabien Potencier",
  6182. "email": "fabien@symfony.com"
  6183. },
  6184. {
  6185. "name": "Symfony Community",
  6186. "homepage": "https://symfony.com/contributors"
  6187. }
  6188. ],
  6189. "description": "PSR HTTP message bridge",
  6190. "homepage": "https://symfony.com",
  6191. "keywords": [
  6192. "http",
  6193. "http-message",
  6194. "psr-17",
  6195. "psr-7"
  6196. ],
  6197. "support": {
  6198. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.1.6"
  6199. },
  6200. "funding": [
  6201. {
  6202. "url": "https://symfony.com/sponsor",
  6203. "type": "custom"
  6204. },
  6205. {
  6206. "url": "https://github.com/fabpot",
  6207. "type": "github"
  6208. },
  6209. {
  6210. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6211. "type": "tidelift"
  6212. }
  6213. ],
  6214. "time": "2024-09-25T14:20:29+00:00"
  6215. },
  6216. {
  6217. "name": "symfony/routing",
  6218. "version": "v7.1.6",
  6219. "source": {
  6220. "type": "git",
  6221. "url": "https://github.com/symfony/routing.git",
  6222. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a"
  6223. },
  6224. "dist": {
  6225. "type": "zip",
  6226. "url": "https://api.github.com/repos/symfony/routing/zipball/66a2c469f6c22d08603235c46a20007c0701ea0a",
  6227. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a",
  6228. "shasum": ""
  6229. },
  6230. "require": {
  6231. "php": ">=8.2",
  6232. "symfony/deprecation-contracts": "^2.5|^3"
  6233. },
  6234. "conflict": {
  6235. "symfony/config": "<6.4",
  6236. "symfony/dependency-injection": "<6.4",
  6237. "symfony/yaml": "<6.4"
  6238. },
  6239. "require-dev": {
  6240. "psr/log": "^1|^2|^3",
  6241. "symfony/config": "^6.4|^7.0",
  6242. "symfony/dependency-injection": "^6.4|^7.0",
  6243. "symfony/expression-language": "^6.4|^7.0",
  6244. "symfony/http-foundation": "^6.4|^7.0",
  6245. "symfony/yaml": "^6.4|^7.0"
  6246. },
  6247. "type": "library",
  6248. "autoload": {
  6249. "psr-4": {
  6250. "Symfony\\Component\\Routing\\": ""
  6251. },
  6252. "exclude-from-classmap": [
  6253. "/Tests/"
  6254. ]
  6255. },
  6256. "notification-url": "https://packagist.org/downloads/",
  6257. "license": [
  6258. "MIT"
  6259. ],
  6260. "authors": [
  6261. {
  6262. "name": "Fabien Potencier",
  6263. "email": "fabien@symfony.com"
  6264. },
  6265. {
  6266. "name": "Symfony Community",
  6267. "homepage": "https://symfony.com/contributors"
  6268. }
  6269. ],
  6270. "description": "Maps an HTTP request to a set of configuration variables",
  6271. "homepage": "https://symfony.com",
  6272. "keywords": [
  6273. "router",
  6274. "routing",
  6275. "uri",
  6276. "url"
  6277. ],
  6278. "support": {
  6279. "source": "https://github.com/symfony/routing/tree/v7.1.6"
  6280. },
  6281. "funding": [
  6282. {
  6283. "url": "https://symfony.com/sponsor",
  6284. "type": "custom"
  6285. },
  6286. {
  6287. "url": "https://github.com/fabpot",
  6288. "type": "github"
  6289. },
  6290. {
  6291. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6292. "type": "tidelift"
  6293. }
  6294. ],
  6295. "time": "2024-10-01T08:31:23+00:00"
  6296. },
  6297. {
  6298. "name": "symfony/service-contracts",
  6299. "version": "v3.5.0",
  6300. "source": {
  6301. "type": "git",
  6302. "url": "https://github.com/symfony/service-contracts.git",
  6303. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6304. },
  6305. "dist": {
  6306. "type": "zip",
  6307. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6308. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6309. "shasum": ""
  6310. },
  6311. "require": {
  6312. "php": ">=8.1",
  6313. "psr/container": "^1.1|^2.0",
  6314. "symfony/deprecation-contracts": "^2.5|^3"
  6315. },
  6316. "conflict": {
  6317. "ext-psr": "<1.1|>=2"
  6318. },
  6319. "type": "library",
  6320. "extra": {
  6321. "branch-alias": {
  6322. "dev-main": "3.5-dev"
  6323. },
  6324. "thanks": {
  6325. "name": "symfony/contracts",
  6326. "url": "https://github.com/symfony/contracts"
  6327. }
  6328. },
  6329. "autoload": {
  6330. "psr-4": {
  6331. "Symfony\\Contracts\\Service\\": ""
  6332. },
  6333. "exclude-from-classmap": [
  6334. "/Test/"
  6335. ]
  6336. },
  6337. "notification-url": "https://packagist.org/downloads/",
  6338. "license": [
  6339. "MIT"
  6340. ],
  6341. "authors": [
  6342. {
  6343. "name": "Nicolas Grekas",
  6344. "email": "p@tchwork.com"
  6345. },
  6346. {
  6347. "name": "Symfony Community",
  6348. "homepage": "https://symfony.com/contributors"
  6349. }
  6350. ],
  6351. "description": "Generic abstractions related to writing services",
  6352. "homepage": "https://symfony.com",
  6353. "keywords": [
  6354. "abstractions",
  6355. "contracts",
  6356. "decoupling",
  6357. "interfaces",
  6358. "interoperability",
  6359. "standards"
  6360. ],
  6361. "support": {
  6362. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6363. },
  6364. "funding": [
  6365. {
  6366. "url": "https://symfony.com/sponsor",
  6367. "type": "custom"
  6368. },
  6369. {
  6370. "url": "https://github.com/fabpot",
  6371. "type": "github"
  6372. },
  6373. {
  6374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6375. "type": "tidelift"
  6376. }
  6377. ],
  6378. "time": "2024-04-18T09:32:20+00:00"
  6379. },
  6380. {
  6381. "name": "symfony/string",
  6382. "version": "v7.1.6",
  6383. "source": {
  6384. "type": "git",
  6385. "url": "https://github.com/symfony/string.git",
  6386. "reference": "61b72d66bf96c360a727ae6232df5ac83c71f626"
  6387. },
  6388. "dist": {
  6389. "type": "zip",
  6390. "url": "https://api.github.com/repos/symfony/string/zipball/61b72d66bf96c360a727ae6232df5ac83c71f626",
  6391. "reference": "61b72d66bf96c360a727ae6232df5ac83c71f626",
  6392. "shasum": ""
  6393. },
  6394. "require": {
  6395. "php": ">=8.2",
  6396. "symfony/polyfill-ctype": "~1.8",
  6397. "symfony/polyfill-intl-grapheme": "~1.0",
  6398. "symfony/polyfill-intl-normalizer": "~1.0",
  6399. "symfony/polyfill-mbstring": "~1.0"
  6400. },
  6401. "conflict": {
  6402. "symfony/translation-contracts": "<2.5"
  6403. },
  6404. "require-dev": {
  6405. "symfony/emoji": "^7.1",
  6406. "symfony/error-handler": "^6.4|^7.0",
  6407. "symfony/http-client": "^6.4|^7.0",
  6408. "symfony/intl": "^6.4|^7.0",
  6409. "symfony/translation-contracts": "^2.5|^3.0",
  6410. "symfony/var-exporter": "^6.4|^7.0"
  6411. },
  6412. "type": "library",
  6413. "autoload": {
  6414. "files": [
  6415. "Resources/functions.php"
  6416. ],
  6417. "psr-4": {
  6418. "Symfony\\Component\\String\\": ""
  6419. },
  6420. "exclude-from-classmap": [
  6421. "/Tests/"
  6422. ]
  6423. },
  6424. "notification-url": "https://packagist.org/downloads/",
  6425. "license": [
  6426. "MIT"
  6427. ],
  6428. "authors": [
  6429. {
  6430. "name": "Nicolas Grekas",
  6431. "email": "p@tchwork.com"
  6432. },
  6433. {
  6434. "name": "Symfony Community",
  6435. "homepage": "https://symfony.com/contributors"
  6436. }
  6437. ],
  6438. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6439. "homepage": "https://symfony.com",
  6440. "keywords": [
  6441. "grapheme",
  6442. "i18n",
  6443. "string",
  6444. "unicode",
  6445. "utf-8",
  6446. "utf8"
  6447. ],
  6448. "support": {
  6449. "source": "https://github.com/symfony/string/tree/v7.1.6"
  6450. },
  6451. "funding": [
  6452. {
  6453. "url": "https://symfony.com/sponsor",
  6454. "type": "custom"
  6455. },
  6456. {
  6457. "url": "https://github.com/fabpot",
  6458. "type": "github"
  6459. },
  6460. {
  6461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6462. "type": "tidelift"
  6463. }
  6464. ],
  6465. "time": "2024-09-25T14:20:29+00:00"
  6466. },
  6467. {
  6468. "name": "symfony/translation",
  6469. "version": "v7.1.6",
  6470. "source": {
  6471. "type": "git",
  6472. "url": "https://github.com/symfony/translation.git",
  6473. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f"
  6474. },
  6475. "dist": {
  6476. "type": "zip",
  6477. "url": "https://api.github.com/repos/symfony/translation/zipball/b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  6478. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  6479. "shasum": ""
  6480. },
  6481. "require": {
  6482. "php": ">=8.2",
  6483. "symfony/polyfill-mbstring": "~1.0",
  6484. "symfony/translation-contracts": "^2.5|^3.0"
  6485. },
  6486. "conflict": {
  6487. "symfony/config": "<6.4",
  6488. "symfony/console": "<6.4",
  6489. "symfony/dependency-injection": "<6.4",
  6490. "symfony/http-client-contracts": "<2.5",
  6491. "symfony/http-kernel": "<6.4",
  6492. "symfony/service-contracts": "<2.5",
  6493. "symfony/twig-bundle": "<6.4",
  6494. "symfony/yaml": "<6.4"
  6495. },
  6496. "provide": {
  6497. "symfony/translation-implementation": "2.3|3.0"
  6498. },
  6499. "require-dev": {
  6500. "nikic/php-parser": "^4.18|^5.0",
  6501. "psr/log": "^1|^2|^3",
  6502. "symfony/config": "^6.4|^7.0",
  6503. "symfony/console": "^6.4|^7.0",
  6504. "symfony/dependency-injection": "^6.4|^7.0",
  6505. "symfony/finder": "^6.4|^7.0",
  6506. "symfony/http-client-contracts": "^2.5|^3.0",
  6507. "symfony/http-kernel": "^6.4|^7.0",
  6508. "symfony/intl": "^6.4|^7.0",
  6509. "symfony/polyfill-intl-icu": "^1.21",
  6510. "symfony/routing": "^6.4|^7.0",
  6511. "symfony/service-contracts": "^2.5|^3",
  6512. "symfony/yaml": "^6.4|^7.0"
  6513. },
  6514. "type": "library",
  6515. "autoload": {
  6516. "files": [
  6517. "Resources/functions.php"
  6518. ],
  6519. "psr-4": {
  6520. "Symfony\\Component\\Translation\\": ""
  6521. },
  6522. "exclude-from-classmap": [
  6523. "/Tests/"
  6524. ]
  6525. },
  6526. "notification-url": "https://packagist.org/downloads/",
  6527. "license": [
  6528. "MIT"
  6529. ],
  6530. "authors": [
  6531. {
  6532. "name": "Fabien Potencier",
  6533. "email": "fabien@symfony.com"
  6534. },
  6535. {
  6536. "name": "Symfony Community",
  6537. "homepage": "https://symfony.com/contributors"
  6538. }
  6539. ],
  6540. "description": "Provides tools to internationalize your application",
  6541. "homepage": "https://symfony.com",
  6542. "support": {
  6543. "source": "https://github.com/symfony/translation/tree/v7.1.6"
  6544. },
  6545. "funding": [
  6546. {
  6547. "url": "https://symfony.com/sponsor",
  6548. "type": "custom"
  6549. },
  6550. {
  6551. "url": "https://github.com/fabpot",
  6552. "type": "github"
  6553. },
  6554. {
  6555. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6556. "type": "tidelift"
  6557. }
  6558. ],
  6559. "time": "2024-09-28T12:35:13+00:00"
  6560. },
  6561. {
  6562. "name": "symfony/translation-contracts",
  6563. "version": "v3.5.0",
  6564. "source": {
  6565. "type": "git",
  6566. "url": "https://github.com/symfony/translation-contracts.git",
  6567. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6568. },
  6569. "dist": {
  6570. "type": "zip",
  6571. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6572. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6573. "shasum": ""
  6574. },
  6575. "require": {
  6576. "php": ">=8.1"
  6577. },
  6578. "type": "library",
  6579. "extra": {
  6580. "branch-alias": {
  6581. "dev-main": "3.5-dev"
  6582. },
  6583. "thanks": {
  6584. "name": "symfony/contracts",
  6585. "url": "https://github.com/symfony/contracts"
  6586. }
  6587. },
  6588. "autoload": {
  6589. "psr-4": {
  6590. "Symfony\\Contracts\\Translation\\": ""
  6591. },
  6592. "exclude-from-classmap": [
  6593. "/Test/"
  6594. ]
  6595. },
  6596. "notification-url": "https://packagist.org/downloads/",
  6597. "license": [
  6598. "MIT"
  6599. ],
  6600. "authors": [
  6601. {
  6602. "name": "Nicolas Grekas",
  6603. "email": "p@tchwork.com"
  6604. },
  6605. {
  6606. "name": "Symfony Community",
  6607. "homepage": "https://symfony.com/contributors"
  6608. }
  6609. ],
  6610. "description": "Generic abstractions related to translation",
  6611. "homepage": "https://symfony.com",
  6612. "keywords": [
  6613. "abstractions",
  6614. "contracts",
  6615. "decoupling",
  6616. "interfaces",
  6617. "interoperability",
  6618. "standards"
  6619. ],
  6620. "support": {
  6621. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6622. },
  6623. "funding": [
  6624. {
  6625. "url": "https://symfony.com/sponsor",
  6626. "type": "custom"
  6627. },
  6628. {
  6629. "url": "https://github.com/fabpot",
  6630. "type": "github"
  6631. },
  6632. {
  6633. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6634. "type": "tidelift"
  6635. }
  6636. ],
  6637. "time": "2024-04-18T09:32:20+00:00"
  6638. },
  6639. {
  6640. "name": "symfony/uid",
  6641. "version": "v7.1.6",
  6642. "source": {
  6643. "type": "git",
  6644. "url": "https://github.com/symfony/uid.git",
  6645. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917"
  6646. },
  6647. "dist": {
  6648. "type": "zip",
  6649. "url": "https://api.github.com/repos/symfony/uid/zipball/65befb3bb2d503bbffbd08c815aa38b472999917",
  6650. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917",
  6651. "shasum": ""
  6652. },
  6653. "require": {
  6654. "php": ">=8.2",
  6655. "symfony/polyfill-uuid": "^1.15"
  6656. },
  6657. "require-dev": {
  6658. "symfony/console": "^6.4|^7.0"
  6659. },
  6660. "type": "library",
  6661. "autoload": {
  6662. "psr-4": {
  6663. "Symfony\\Component\\Uid\\": ""
  6664. },
  6665. "exclude-from-classmap": [
  6666. "/Tests/"
  6667. ]
  6668. },
  6669. "notification-url": "https://packagist.org/downloads/",
  6670. "license": [
  6671. "MIT"
  6672. ],
  6673. "authors": [
  6674. {
  6675. "name": "Grégoire Pineau",
  6676. "email": "lyrixx@lyrixx.info"
  6677. },
  6678. {
  6679. "name": "Nicolas Grekas",
  6680. "email": "p@tchwork.com"
  6681. },
  6682. {
  6683. "name": "Symfony Community",
  6684. "homepage": "https://symfony.com/contributors"
  6685. }
  6686. ],
  6687. "description": "Provides an object-oriented API to generate and represent UIDs",
  6688. "homepage": "https://symfony.com",
  6689. "keywords": [
  6690. "UID",
  6691. "ulid",
  6692. "uuid"
  6693. ],
  6694. "support": {
  6695. "source": "https://github.com/symfony/uid/tree/v7.1.6"
  6696. },
  6697. "funding": [
  6698. {
  6699. "url": "https://symfony.com/sponsor",
  6700. "type": "custom"
  6701. },
  6702. {
  6703. "url": "https://github.com/fabpot",
  6704. "type": "github"
  6705. },
  6706. {
  6707. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6708. "type": "tidelift"
  6709. }
  6710. ],
  6711. "time": "2024-09-25T14:20:29+00:00"
  6712. },
  6713. {
  6714. "name": "symfony/var-dumper",
  6715. "version": "v7.1.7",
  6716. "source": {
  6717. "type": "git",
  6718. "url": "https://github.com/symfony/var-dumper.git",
  6719. "reference": "f6ea51f669760cacd7464bf7eaa0be87b8072db1"
  6720. },
  6721. "dist": {
  6722. "type": "zip",
  6723. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f6ea51f669760cacd7464bf7eaa0be87b8072db1",
  6724. "reference": "f6ea51f669760cacd7464bf7eaa0be87b8072db1",
  6725. "shasum": ""
  6726. },
  6727. "require": {
  6728. "php": ">=8.2",
  6729. "symfony/polyfill-mbstring": "~1.0"
  6730. },
  6731. "conflict": {
  6732. "symfony/console": "<6.4"
  6733. },
  6734. "require-dev": {
  6735. "ext-iconv": "*",
  6736. "symfony/console": "^6.4|^7.0",
  6737. "symfony/http-kernel": "^6.4|^7.0",
  6738. "symfony/process": "^6.4|^7.0",
  6739. "symfony/uid": "^6.4|^7.0",
  6740. "twig/twig": "^3.0.4"
  6741. },
  6742. "bin": [
  6743. "Resources/bin/var-dump-server"
  6744. ],
  6745. "type": "library",
  6746. "autoload": {
  6747. "files": [
  6748. "Resources/functions/dump.php"
  6749. ],
  6750. "psr-4": {
  6751. "Symfony\\Component\\VarDumper\\": ""
  6752. },
  6753. "exclude-from-classmap": [
  6754. "/Tests/"
  6755. ]
  6756. },
  6757. "notification-url": "https://packagist.org/downloads/",
  6758. "license": [
  6759. "MIT"
  6760. ],
  6761. "authors": [
  6762. {
  6763. "name": "Nicolas Grekas",
  6764. "email": "p@tchwork.com"
  6765. },
  6766. {
  6767. "name": "Symfony Community",
  6768. "homepage": "https://symfony.com/contributors"
  6769. }
  6770. ],
  6771. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6772. "homepage": "https://symfony.com",
  6773. "keywords": [
  6774. "debug",
  6775. "dump"
  6776. ],
  6777. "support": {
  6778. "source": "https://github.com/symfony/var-dumper/tree/v7.1.7"
  6779. },
  6780. "funding": [
  6781. {
  6782. "url": "https://symfony.com/sponsor",
  6783. "type": "custom"
  6784. },
  6785. {
  6786. "url": "https://github.com/fabpot",
  6787. "type": "github"
  6788. },
  6789. {
  6790. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6791. "type": "tidelift"
  6792. }
  6793. ],
  6794. "time": "2024-11-05T15:34:55+00:00"
  6795. },
  6796. {
  6797. "name": "symfony/var-exporter",
  6798. "version": "v7.1.6",
  6799. "source": {
  6800. "type": "git",
  6801. "url": "https://github.com/symfony/var-exporter.git",
  6802. "reference": "90173ef89c40e7c8c616653241048705f84130ef"
  6803. },
  6804. "dist": {
  6805. "type": "zip",
  6806. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/90173ef89c40e7c8c616653241048705f84130ef",
  6807. "reference": "90173ef89c40e7c8c616653241048705f84130ef",
  6808. "shasum": ""
  6809. },
  6810. "require": {
  6811. "php": ">=8.2"
  6812. },
  6813. "require-dev": {
  6814. "symfony/property-access": "^6.4|^7.0",
  6815. "symfony/serializer": "^6.4|^7.0",
  6816. "symfony/var-dumper": "^6.4|^7.0"
  6817. },
  6818. "type": "library",
  6819. "autoload": {
  6820. "psr-4": {
  6821. "Symfony\\Component\\VarExporter\\": ""
  6822. },
  6823. "exclude-from-classmap": [
  6824. "/Tests/"
  6825. ]
  6826. },
  6827. "notification-url": "https://packagist.org/downloads/",
  6828. "license": [
  6829. "MIT"
  6830. ],
  6831. "authors": [
  6832. {
  6833. "name": "Nicolas Grekas",
  6834. "email": "p@tchwork.com"
  6835. },
  6836. {
  6837. "name": "Symfony Community",
  6838. "homepage": "https://symfony.com/contributors"
  6839. }
  6840. ],
  6841. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  6842. "homepage": "https://symfony.com",
  6843. "keywords": [
  6844. "clone",
  6845. "construct",
  6846. "export",
  6847. "hydrate",
  6848. "instantiate",
  6849. "lazy-loading",
  6850. "proxy",
  6851. "serialize"
  6852. ],
  6853. "support": {
  6854. "source": "https://github.com/symfony/var-exporter/tree/v7.1.6"
  6855. },
  6856. "funding": [
  6857. {
  6858. "url": "https://symfony.com/sponsor",
  6859. "type": "custom"
  6860. },
  6861. {
  6862. "url": "https://github.com/fabpot",
  6863. "type": "github"
  6864. },
  6865. {
  6866. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6867. "type": "tidelift"
  6868. }
  6869. ],
  6870. "time": "2024-09-25T14:20:29+00:00"
  6871. },
  6872. {
  6873. "name": "thenorthmemory/xml",
  6874. "version": "1.1.1",
  6875. "source": {
  6876. "type": "git",
  6877. "url": "https://github.com/TheNorthMemory/xml.git",
  6878. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb"
  6879. },
  6880. "dist": {
  6881. "type": "zip",
  6882. "url": "https://api.github.com/repos/TheNorthMemory/xml/zipball/6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  6883. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  6884. "shasum": ""
  6885. },
  6886. "require": {
  6887. "ext-libxml": "*",
  6888. "ext-simplexml": "*",
  6889. "php": ">=7.1.2"
  6890. },
  6891. "require-dev": {
  6892. "phpstan/phpstan": "^0.12.89 || ^1.0",
  6893. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  6894. },
  6895. "type": "library",
  6896. "autoload": {
  6897. "psr-4": {
  6898. "TheNorthMemory\\Xml\\": "src/"
  6899. }
  6900. },
  6901. "notification-url": "https://packagist.org/downloads/",
  6902. "license": [
  6903. "Apache-2.0"
  6904. ],
  6905. "authors": [
  6906. {
  6907. "name": "James ZHANG",
  6908. "homepage": "https://github.com/TheNorthMemory"
  6909. }
  6910. ],
  6911. "description": "A wrapper of the XML parser and builder",
  6912. "homepage": "https://github.com/TheNorthMemory/xml",
  6913. "keywords": [
  6914. "xml-builder",
  6915. "xml-parser"
  6916. ],
  6917. "support": {
  6918. "issues": "https://github.com/TheNorthMemory/xml/issues",
  6919. "source": "https://github.com/TheNorthMemory/xml/tree/1.1.1"
  6920. },
  6921. "time": "2023-01-15T06:01:13+00:00"
  6922. },
  6923. {
  6924. "name": "tijsverkoyen/css-to-inline-styles",
  6925. "version": "v2.2.7",
  6926. "source": {
  6927. "type": "git",
  6928. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6929. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  6930. },
  6931. "dist": {
  6932. "type": "zip",
  6933. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  6934. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  6935. "shasum": ""
  6936. },
  6937. "require": {
  6938. "ext-dom": "*",
  6939. "ext-libxml": "*",
  6940. "php": "^5.5 || ^7.0 || ^8.0",
  6941. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  6942. },
  6943. "require-dev": {
  6944. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  6945. },
  6946. "type": "library",
  6947. "extra": {
  6948. "branch-alias": {
  6949. "dev-master": "2.2.x-dev"
  6950. }
  6951. },
  6952. "autoload": {
  6953. "psr-4": {
  6954. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6955. }
  6956. },
  6957. "notification-url": "https://packagist.org/downloads/",
  6958. "license": [
  6959. "BSD-3-Clause"
  6960. ],
  6961. "authors": [
  6962. {
  6963. "name": "Tijs Verkoyen",
  6964. "email": "css_to_inline_styles@verkoyen.eu",
  6965. "role": "Developer"
  6966. }
  6967. ],
  6968. "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.",
  6969. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6970. "support": {
  6971. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  6972. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  6973. },
  6974. "time": "2023-12-08T13:03:43+00:00"
  6975. },
  6976. {
  6977. "name": "vlucas/phpdotenv",
  6978. "version": "v5.6.1",
  6979. "source": {
  6980. "type": "git",
  6981. "url": "https://github.com/vlucas/phpdotenv.git",
  6982. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  6983. },
  6984. "dist": {
  6985. "type": "zip",
  6986. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  6987. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  6988. "shasum": ""
  6989. },
  6990. "require": {
  6991. "ext-pcre": "*",
  6992. "graham-campbell/result-type": "^1.1.3",
  6993. "php": "^7.2.5 || ^8.0",
  6994. "phpoption/phpoption": "^1.9.3",
  6995. "symfony/polyfill-ctype": "^1.24",
  6996. "symfony/polyfill-mbstring": "^1.24",
  6997. "symfony/polyfill-php80": "^1.24"
  6998. },
  6999. "require-dev": {
  7000. "bamarni/composer-bin-plugin": "^1.8.2",
  7001. "ext-filter": "*",
  7002. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7003. },
  7004. "suggest": {
  7005. "ext-filter": "Required to use the boolean validator."
  7006. },
  7007. "type": "library",
  7008. "extra": {
  7009. "bamarni-bin": {
  7010. "bin-links": true,
  7011. "forward-command": false
  7012. },
  7013. "branch-alias": {
  7014. "dev-master": "5.6-dev"
  7015. }
  7016. },
  7017. "autoload": {
  7018. "psr-4": {
  7019. "Dotenv\\": "src/"
  7020. }
  7021. },
  7022. "notification-url": "https://packagist.org/downloads/",
  7023. "license": [
  7024. "BSD-3-Clause"
  7025. ],
  7026. "authors": [
  7027. {
  7028. "name": "Graham Campbell",
  7029. "email": "hello@gjcampbell.co.uk",
  7030. "homepage": "https://github.com/GrahamCampbell"
  7031. },
  7032. {
  7033. "name": "Vance Lucas",
  7034. "email": "vance@vancelucas.com",
  7035. "homepage": "https://github.com/vlucas"
  7036. }
  7037. ],
  7038. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7039. "keywords": [
  7040. "dotenv",
  7041. "env",
  7042. "environment"
  7043. ],
  7044. "support": {
  7045. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7046. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7047. },
  7048. "funding": [
  7049. {
  7050. "url": "https://github.com/GrahamCampbell",
  7051. "type": "github"
  7052. },
  7053. {
  7054. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7055. "type": "tidelift"
  7056. }
  7057. ],
  7058. "time": "2024-07-20T21:52:34+00:00"
  7059. },
  7060. {
  7061. "name": "voku/portable-ascii",
  7062. "version": "2.0.1",
  7063. "source": {
  7064. "type": "git",
  7065. "url": "https://github.com/voku/portable-ascii.git",
  7066. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  7067. },
  7068. "dist": {
  7069. "type": "zip",
  7070. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  7071. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  7072. "shasum": ""
  7073. },
  7074. "require": {
  7075. "php": ">=7.0.0"
  7076. },
  7077. "require-dev": {
  7078. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7079. },
  7080. "suggest": {
  7081. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7082. },
  7083. "type": "library",
  7084. "autoload": {
  7085. "psr-4": {
  7086. "voku\\": "src/voku/"
  7087. }
  7088. },
  7089. "notification-url": "https://packagist.org/downloads/",
  7090. "license": [
  7091. "MIT"
  7092. ],
  7093. "authors": [
  7094. {
  7095. "name": "Lars Moelleken",
  7096. "homepage": "http://www.moelleken.org/"
  7097. }
  7098. ],
  7099. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7100. "homepage": "https://github.com/voku/portable-ascii",
  7101. "keywords": [
  7102. "ascii",
  7103. "clean",
  7104. "php"
  7105. ],
  7106. "support": {
  7107. "issues": "https://github.com/voku/portable-ascii/issues",
  7108. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  7109. },
  7110. "funding": [
  7111. {
  7112. "url": "https://www.paypal.me/moelleken",
  7113. "type": "custom"
  7114. },
  7115. {
  7116. "url": "https://github.com/voku",
  7117. "type": "github"
  7118. },
  7119. {
  7120. "url": "https://opencollective.com/portable-ascii",
  7121. "type": "open_collective"
  7122. },
  7123. {
  7124. "url": "https://www.patreon.com/voku",
  7125. "type": "patreon"
  7126. },
  7127. {
  7128. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7129. "type": "tidelift"
  7130. }
  7131. ],
  7132. "time": "2022-03-08T17:03:00+00:00"
  7133. },
  7134. {
  7135. "name": "w7corp/easywechat",
  7136. "version": "6.15.4",
  7137. "source": {
  7138. "type": "git",
  7139. "url": "https://github.com/w7corp/easywechat.git",
  7140. "reference": "3299422c387407b231de4dd293770b917f288c2b"
  7141. },
  7142. "dist": {
  7143. "type": "zip",
  7144. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/3299422c387407b231de4dd293770b917f288c2b",
  7145. "reference": "3299422c387407b231de4dd293770b917f288c2b",
  7146. "shasum": ""
  7147. },
  7148. "require": {
  7149. "ext-curl": "*",
  7150. "ext-fileinfo": "*",
  7151. "ext-libxml": "*",
  7152. "ext-openssl": "*",
  7153. "ext-simplexml": "*",
  7154. "ext-sodium": "*",
  7155. "nyholm/psr7": "^1.5",
  7156. "nyholm/psr7-server": "^1.0",
  7157. "overtrue/socialite": "^3.5.4|^4.0.1",
  7158. "php": ">=8.0.2",
  7159. "psr/http-client": "^1.0",
  7160. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7161. "symfony/cache": "^5.4|^6.0|^7.0",
  7162. "symfony/http-client": "^5.4|^6.0|^7.0",
  7163. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7164. "symfony/mime": "^5.4|^6.0|^7.0",
  7165. "symfony/polyfill-php81": "^1.25",
  7166. "symfony/psr-http-message-bridge": "^2.1.2|^6.4.0|^7.1",
  7167. "thenorthmemory/xml": "^1.0"
  7168. },
  7169. "require-dev": {
  7170. "jetbrains/phpstorm-attributes": "^1.0",
  7171. "laravel/pint": "^1.2",
  7172. "mikey179/vfsstream": "^1.6",
  7173. "mockery/mockery": "^1.4.4",
  7174. "phpstan/phpstan": "^1.0",
  7175. "phpunit/phpunit": "^9.5",
  7176. "symfony/var-dumper": "^5.2"
  7177. },
  7178. "type": "library",
  7179. "autoload": {
  7180. "psr-4": {
  7181. "EasyWeChat\\": "src/"
  7182. }
  7183. },
  7184. "notification-url": "https://packagist.org/downloads/",
  7185. "license": [
  7186. "MIT"
  7187. ],
  7188. "authors": [
  7189. {
  7190. "name": "overtrue",
  7191. "email": "anzhengchao@gmail.com"
  7192. }
  7193. ],
  7194. "description": "微信SDK",
  7195. "keywords": [
  7196. "easywechat",
  7197. "sdk",
  7198. "wechat",
  7199. "weixin",
  7200. "weixin-sdk"
  7201. ],
  7202. "support": {
  7203. "issues": "https://github.com/w7corp/easywechat/issues",
  7204. "source": "https://github.com/w7corp/easywechat/tree/6.15.4"
  7205. },
  7206. "funding": [
  7207. {
  7208. "url": "https://github.com/overtrue",
  7209. "type": "github"
  7210. }
  7211. ],
  7212. "time": "2024-10-09T07:07:09+00:00"
  7213. },
  7214. {
  7215. "name": "webmozart/assert",
  7216. "version": "1.11.0",
  7217. "source": {
  7218. "type": "git",
  7219. "url": "https://github.com/webmozarts/assert.git",
  7220. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7221. },
  7222. "dist": {
  7223. "type": "zip",
  7224. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7225. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7226. "shasum": ""
  7227. },
  7228. "require": {
  7229. "ext-ctype": "*",
  7230. "php": "^7.2 || ^8.0"
  7231. },
  7232. "conflict": {
  7233. "phpstan/phpstan": "<0.12.20",
  7234. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7235. },
  7236. "require-dev": {
  7237. "phpunit/phpunit": "^8.5.13"
  7238. },
  7239. "type": "library",
  7240. "extra": {
  7241. "branch-alias": {
  7242. "dev-master": "1.10-dev"
  7243. }
  7244. },
  7245. "autoload": {
  7246. "psr-4": {
  7247. "Webmozart\\Assert\\": "src/"
  7248. }
  7249. },
  7250. "notification-url": "https://packagist.org/downloads/",
  7251. "license": [
  7252. "MIT"
  7253. ],
  7254. "authors": [
  7255. {
  7256. "name": "Bernhard Schussek",
  7257. "email": "bschussek@gmail.com"
  7258. }
  7259. ],
  7260. "description": "Assertions to validate method input/output with nice error messages.",
  7261. "keywords": [
  7262. "assert",
  7263. "check",
  7264. "validate"
  7265. ],
  7266. "support": {
  7267. "issues": "https://github.com/webmozarts/assert/issues",
  7268. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7269. },
  7270. "time": "2022-06-03T18:03:27+00:00"
  7271. }
  7272. ],
  7273. "packages-dev": [
  7274. {
  7275. "name": "fakerphp/faker",
  7276. "version": "v1.23.1",
  7277. "source": {
  7278. "type": "git",
  7279. "url": "https://github.com/FakerPHP/Faker.git",
  7280. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  7281. },
  7282. "dist": {
  7283. "type": "zip",
  7284. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  7285. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  7286. "shasum": ""
  7287. },
  7288. "require": {
  7289. "php": "^7.4 || ^8.0",
  7290. "psr/container": "^1.0 || ^2.0",
  7291. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  7292. },
  7293. "conflict": {
  7294. "fzaninotto/faker": "*"
  7295. },
  7296. "require-dev": {
  7297. "bamarni/composer-bin-plugin": "^1.4.1",
  7298. "doctrine/persistence": "^1.3 || ^2.0",
  7299. "ext-intl": "*",
  7300. "phpunit/phpunit": "^9.5.26",
  7301. "symfony/phpunit-bridge": "^5.4.16"
  7302. },
  7303. "suggest": {
  7304. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  7305. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  7306. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  7307. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  7308. "ext-mbstring": "Required for multibyte Unicode string functionality."
  7309. },
  7310. "type": "library",
  7311. "autoload": {
  7312. "psr-4": {
  7313. "Faker\\": "src/Faker/"
  7314. }
  7315. },
  7316. "notification-url": "https://packagist.org/downloads/",
  7317. "license": [
  7318. "MIT"
  7319. ],
  7320. "authors": [
  7321. {
  7322. "name": "François Zaninotto"
  7323. }
  7324. ],
  7325. "description": "Faker is a PHP library that generates fake data for you.",
  7326. "keywords": [
  7327. "data",
  7328. "faker",
  7329. "fixtures"
  7330. ],
  7331. "support": {
  7332. "issues": "https://github.com/FakerPHP/Faker/issues",
  7333. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  7334. },
  7335. "time": "2024-01-02T13:46:09+00:00"
  7336. },
  7337. {
  7338. "name": "filp/whoops",
  7339. "version": "2.16.0",
  7340. "source": {
  7341. "type": "git",
  7342. "url": "https://github.com/filp/whoops.git",
  7343. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  7344. },
  7345. "dist": {
  7346. "type": "zip",
  7347. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  7348. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  7349. "shasum": ""
  7350. },
  7351. "require": {
  7352. "php": "^7.1 || ^8.0",
  7353. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  7354. },
  7355. "require-dev": {
  7356. "mockery/mockery": "^1.0",
  7357. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  7358. "symfony/var-dumper": "^4.0 || ^5.0"
  7359. },
  7360. "suggest": {
  7361. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7362. "whoops/soap": "Formats errors as SOAP responses"
  7363. },
  7364. "type": "library",
  7365. "extra": {
  7366. "branch-alias": {
  7367. "dev-master": "2.7-dev"
  7368. }
  7369. },
  7370. "autoload": {
  7371. "psr-4": {
  7372. "Whoops\\": "src/Whoops/"
  7373. }
  7374. },
  7375. "notification-url": "https://packagist.org/downloads/",
  7376. "license": [
  7377. "MIT"
  7378. ],
  7379. "authors": [
  7380. {
  7381. "name": "Filipe Dobreira",
  7382. "homepage": "https://github.com/filp",
  7383. "role": "Developer"
  7384. }
  7385. ],
  7386. "description": "php error handling for cool kids",
  7387. "homepage": "https://filp.github.io/whoops/",
  7388. "keywords": [
  7389. "error",
  7390. "exception",
  7391. "handling",
  7392. "library",
  7393. "throwable",
  7394. "whoops"
  7395. ],
  7396. "support": {
  7397. "issues": "https://github.com/filp/whoops/issues",
  7398. "source": "https://github.com/filp/whoops/tree/2.16.0"
  7399. },
  7400. "funding": [
  7401. {
  7402. "url": "https://github.com/denis-sokolov",
  7403. "type": "github"
  7404. }
  7405. ],
  7406. "time": "2024-09-25T12:00:00+00:00"
  7407. },
  7408. {
  7409. "name": "hamcrest/hamcrest-php",
  7410. "version": "v2.0.1",
  7411. "source": {
  7412. "type": "git",
  7413. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7414. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7415. },
  7416. "dist": {
  7417. "type": "zip",
  7418. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7419. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7420. "shasum": ""
  7421. },
  7422. "require": {
  7423. "php": "^5.3|^7.0|^8.0"
  7424. },
  7425. "replace": {
  7426. "cordoval/hamcrest-php": "*",
  7427. "davedevelopment/hamcrest-php": "*",
  7428. "kodova/hamcrest-php": "*"
  7429. },
  7430. "require-dev": {
  7431. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7432. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7433. },
  7434. "type": "library",
  7435. "extra": {
  7436. "branch-alias": {
  7437. "dev-master": "2.1-dev"
  7438. }
  7439. },
  7440. "autoload": {
  7441. "classmap": [
  7442. "hamcrest"
  7443. ]
  7444. },
  7445. "notification-url": "https://packagist.org/downloads/",
  7446. "license": [
  7447. "BSD-3-Clause"
  7448. ],
  7449. "description": "This is the PHP port of Hamcrest Matchers",
  7450. "keywords": [
  7451. "test"
  7452. ],
  7453. "support": {
  7454. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7455. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7456. },
  7457. "time": "2020-07-09T08:09:16+00:00"
  7458. },
  7459. {
  7460. "name": "laravel/pail",
  7461. "version": "v1.2.0",
  7462. "source": {
  7463. "type": "git",
  7464. "url": "https://github.com/laravel/pail.git",
  7465. "reference": "085a2306b520c3896afa361c25704e5fa3c27bf0"
  7466. },
  7467. "dist": {
  7468. "type": "zip",
  7469. "url": "https://api.github.com/repos/laravel/pail/zipball/085a2306b520c3896afa361c25704e5fa3c27bf0",
  7470. "reference": "085a2306b520c3896afa361c25704e5fa3c27bf0",
  7471. "shasum": ""
  7472. },
  7473. "require": {
  7474. "ext-mbstring": "*",
  7475. "illuminate/console": "^10.24|^11.0",
  7476. "illuminate/contracts": "^10.24|^11.0",
  7477. "illuminate/log": "^10.24|^11.0",
  7478. "illuminate/process": "^10.24|^11.0",
  7479. "illuminate/support": "^10.24|^11.0",
  7480. "nunomaduro/termwind": "^1.15|^2.0",
  7481. "php": "^8.2",
  7482. "symfony/console": "^6.0|^7.0"
  7483. },
  7484. "require-dev": {
  7485. "laravel/pint": "^1.13",
  7486. "orchestra/testbench": "^8.12|^9.0",
  7487. "pestphp/pest": "^2.20",
  7488. "pestphp/pest-plugin-type-coverage": "^2.3",
  7489. "phpstan/phpstan": "^1.10",
  7490. "symfony/var-dumper": "^6.3|^7.0"
  7491. },
  7492. "type": "library",
  7493. "extra": {
  7494. "branch-alias": {
  7495. "dev-main": "1.x-dev"
  7496. },
  7497. "laravel": {
  7498. "providers": [
  7499. "Laravel\\Pail\\PailServiceProvider"
  7500. ]
  7501. }
  7502. },
  7503. "autoload": {
  7504. "psr-4": {
  7505. "Laravel\\Pail\\": "src/"
  7506. }
  7507. },
  7508. "notification-url": "https://packagist.org/downloads/",
  7509. "license": [
  7510. "MIT"
  7511. ],
  7512. "authors": [
  7513. {
  7514. "name": "Taylor Otwell",
  7515. "email": "taylor@laravel.com"
  7516. },
  7517. {
  7518. "name": "Nuno Maduro",
  7519. "email": "enunomaduro@gmail.com"
  7520. }
  7521. ],
  7522. "description": "Easily delve into your Laravel application's log files directly from the command line.",
  7523. "homepage": "https://github.com/laravel/pail",
  7524. "keywords": [
  7525. "laravel",
  7526. "logs",
  7527. "php",
  7528. "tail"
  7529. ],
  7530. "support": {
  7531. "issues": "https://github.com/laravel/pail/issues",
  7532. "source": "https://github.com/laravel/pail"
  7533. },
  7534. "time": "2024-10-21T13:59:30+00:00"
  7535. },
  7536. {
  7537. "name": "laravel/pint",
  7538. "version": "v1.18.1",
  7539. "source": {
  7540. "type": "git",
  7541. "url": "https://github.com/laravel/pint.git",
  7542. "reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9"
  7543. },
  7544. "dist": {
  7545. "type": "zip",
  7546. "url": "https://api.github.com/repos/laravel/pint/zipball/35c00c05ec43e6b46d295efc0f4386ceb30d50d9",
  7547. "reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9",
  7548. "shasum": ""
  7549. },
  7550. "require": {
  7551. "ext-json": "*",
  7552. "ext-mbstring": "*",
  7553. "ext-tokenizer": "*",
  7554. "ext-xml": "*",
  7555. "php": "^8.1.0"
  7556. },
  7557. "require-dev": {
  7558. "friendsofphp/php-cs-fixer": "^3.64.0",
  7559. "illuminate/view": "^10.48.20",
  7560. "larastan/larastan": "^2.9.8",
  7561. "laravel-zero/framework": "^10.4.0",
  7562. "mockery/mockery": "^1.6.12",
  7563. "nunomaduro/termwind": "^1.15.1",
  7564. "pestphp/pest": "^2.35.1"
  7565. },
  7566. "bin": [
  7567. "builds/pint"
  7568. ],
  7569. "type": "project",
  7570. "autoload": {
  7571. "psr-4": {
  7572. "App\\": "app/",
  7573. "Database\\Seeders\\": "database/seeders/",
  7574. "Database\\Factories\\": "database/factories/"
  7575. }
  7576. },
  7577. "notification-url": "https://packagist.org/downloads/",
  7578. "license": [
  7579. "MIT"
  7580. ],
  7581. "authors": [
  7582. {
  7583. "name": "Nuno Maduro",
  7584. "email": "enunomaduro@gmail.com"
  7585. }
  7586. ],
  7587. "description": "An opinionated code formatter for PHP.",
  7588. "homepage": "https://laravel.com",
  7589. "keywords": [
  7590. "format",
  7591. "formatter",
  7592. "lint",
  7593. "linter",
  7594. "php"
  7595. ],
  7596. "support": {
  7597. "issues": "https://github.com/laravel/pint/issues",
  7598. "source": "https://github.com/laravel/pint"
  7599. },
  7600. "time": "2024-09-24T17:22:50+00:00"
  7601. },
  7602. {
  7603. "name": "laravel/sail",
  7604. "version": "v1.37.1",
  7605. "source": {
  7606. "type": "git",
  7607. "url": "https://github.com/laravel/sail.git",
  7608. "reference": "7efa151ea0d16f48233d6a6cd69f81270acc6e93"
  7609. },
  7610. "dist": {
  7611. "type": "zip",
  7612. "url": "https://api.github.com/repos/laravel/sail/zipball/7efa151ea0d16f48233d6a6cd69f81270acc6e93",
  7613. "reference": "7efa151ea0d16f48233d6a6cd69f81270acc6e93",
  7614. "shasum": ""
  7615. },
  7616. "require": {
  7617. "illuminate/console": "^9.52.16|^10.0|^11.0",
  7618. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  7619. "illuminate/support": "^9.52.16|^10.0|^11.0",
  7620. "php": "^8.0",
  7621. "symfony/console": "^6.0|^7.0",
  7622. "symfony/yaml": "^6.0|^7.0"
  7623. },
  7624. "require-dev": {
  7625. "orchestra/testbench": "^7.0|^8.0|^9.0",
  7626. "phpstan/phpstan": "^1.10"
  7627. },
  7628. "bin": [
  7629. "bin/sail"
  7630. ],
  7631. "type": "library",
  7632. "extra": {
  7633. "laravel": {
  7634. "providers": [
  7635. "Laravel\\Sail\\SailServiceProvider"
  7636. ]
  7637. }
  7638. },
  7639. "autoload": {
  7640. "psr-4": {
  7641. "Laravel\\Sail\\": "src/"
  7642. }
  7643. },
  7644. "notification-url": "https://packagist.org/downloads/",
  7645. "license": [
  7646. "MIT"
  7647. ],
  7648. "authors": [
  7649. {
  7650. "name": "Taylor Otwell",
  7651. "email": "taylor@laravel.com"
  7652. }
  7653. ],
  7654. "description": "Docker files for running a basic Laravel application.",
  7655. "keywords": [
  7656. "docker",
  7657. "laravel"
  7658. ],
  7659. "support": {
  7660. "issues": "https://github.com/laravel/sail/issues",
  7661. "source": "https://github.com/laravel/sail"
  7662. },
  7663. "time": "2024-10-29T20:18:14+00:00"
  7664. },
  7665. {
  7666. "name": "mockery/mockery",
  7667. "version": "1.6.12",
  7668. "source": {
  7669. "type": "git",
  7670. "url": "https://github.com/mockery/mockery.git",
  7671. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7672. },
  7673. "dist": {
  7674. "type": "zip",
  7675. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7676. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7677. "shasum": ""
  7678. },
  7679. "require": {
  7680. "hamcrest/hamcrest-php": "^2.0.1",
  7681. "lib-pcre": ">=7.0",
  7682. "php": ">=7.3"
  7683. },
  7684. "conflict": {
  7685. "phpunit/phpunit": "<8.0"
  7686. },
  7687. "require-dev": {
  7688. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7689. "symplify/easy-coding-standard": "^12.1.14"
  7690. },
  7691. "type": "library",
  7692. "autoload": {
  7693. "files": [
  7694. "library/helpers.php",
  7695. "library/Mockery.php"
  7696. ],
  7697. "psr-4": {
  7698. "Mockery\\": "library/Mockery"
  7699. }
  7700. },
  7701. "notification-url": "https://packagist.org/downloads/",
  7702. "license": [
  7703. "BSD-3-Clause"
  7704. ],
  7705. "authors": [
  7706. {
  7707. "name": "Pádraic Brady",
  7708. "email": "padraic.brady@gmail.com",
  7709. "homepage": "https://github.com/padraic",
  7710. "role": "Author"
  7711. },
  7712. {
  7713. "name": "Dave Marshall",
  7714. "email": "dave.marshall@atstsolutions.co.uk",
  7715. "homepage": "https://davedevelopment.co.uk",
  7716. "role": "Developer"
  7717. },
  7718. {
  7719. "name": "Nathanael Esayeas",
  7720. "email": "nathanael.esayeas@protonmail.com",
  7721. "homepage": "https://github.com/ghostwriter",
  7722. "role": "Lead Developer"
  7723. }
  7724. ],
  7725. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7726. "homepage": "https://github.com/mockery/mockery",
  7727. "keywords": [
  7728. "BDD",
  7729. "TDD",
  7730. "library",
  7731. "mock",
  7732. "mock objects",
  7733. "mockery",
  7734. "stub",
  7735. "test",
  7736. "test double",
  7737. "testing"
  7738. ],
  7739. "support": {
  7740. "docs": "https://docs.mockery.io/",
  7741. "issues": "https://github.com/mockery/mockery/issues",
  7742. "rss": "https://github.com/mockery/mockery/releases.atom",
  7743. "security": "https://github.com/mockery/mockery/security/advisories",
  7744. "source": "https://github.com/mockery/mockery"
  7745. },
  7746. "time": "2024-05-16T03:13:13+00:00"
  7747. },
  7748. {
  7749. "name": "myclabs/deep-copy",
  7750. "version": "1.12.0",
  7751. "source": {
  7752. "type": "git",
  7753. "url": "https://github.com/myclabs/DeepCopy.git",
  7754. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  7755. },
  7756. "dist": {
  7757. "type": "zip",
  7758. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  7759. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  7760. "shasum": ""
  7761. },
  7762. "require": {
  7763. "php": "^7.1 || ^8.0"
  7764. },
  7765. "conflict": {
  7766. "doctrine/collections": "<1.6.8",
  7767. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7768. },
  7769. "require-dev": {
  7770. "doctrine/collections": "^1.6.8",
  7771. "doctrine/common": "^2.13.3 || ^3.2.2",
  7772. "phpspec/prophecy": "^1.10",
  7773. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7774. },
  7775. "type": "library",
  7776. "autoload": {
  7777. "files": [
  7778. "src/DeepCopy/deep_copy.php"
  7779. ],
  7780. "psr-4": {
  7781. "DeepCopy\\": "src/DeepCopy/"
  7782. }
  7783. },
  7784. "notification-url": "https://packagist.org/downloads/",
  7785. "license": [
  7786. "MIT"
  7787. ],
  7788. "description": "Create deep copies (clones) of your objects",
  7789. "keywords": [
  7790. "clone",
  7791. "copy",
  7792. "duplicate",
  7793. "object",
  7794. "object graph"
  7795. ],
  7796. "support": {
  7797. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7798. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  7799. },
  7800. "funding": [
  7801. {
  7802. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7803. "type": "tidelift"
  7804. }
  7805. ],
  7806. "time": "2024-06-12T14:39:25+00:00"
  7807. },
  7808. {
  7809. "name": "nunomaduro/collision",
  7810. "version": "v8.5.0",
  7811. "source": {
  7812. "type": "git",
  7813. "url": "https://github.com/nunomaduro/collision.git",
  7814. "reference": "f5c101b929c958e849a633283adff296ed5f38f5"
  7815. },
  7816. "dist": {
  7817. "type": "zip",
  7818. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f5c101b929c958e849a633283adff296ed5f38f5",
  7819. "reference": "f5c101b929c958e849a633283adff296ed5f38f5",
  7820. "shasum": ""
  7821. },
  7822. "require": {
  7823. "filp/whoops": "^2.16.0",
  7824. "nunomaduro/termwind": "^2.1.0",
  7825. "php": "^8.2.0",
  7826. "symfony/console": "^7.1.5"
  7827. },
  7828. "conflict": {
  7829. "laravel/framework": "<11.0.0 || >=12.0.0",
  7830. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  7831. },
  7832. "require-dev": {
  7833. "larastan/larastan": "^2.9.8",
  7834. "laravel/framework": "^11.28.0",
  7835. "laravel/pint": "^1.18.1",
  7836. "laravel/sail": "^1.36.0",
  7837. "laravel/sanctum": "^4.0.3",
  7838. "laravel/tinker": "^2.10.0",
  7839. "orchestra/testbench-core": "^9.5.3",
  7840. "pestphp/pest": "^2.36.0 || ^3.4.0",
  7841. "sebastian/environment": "^6.1.0 || ^7.2.0"
  7842. },
  7843. "type": "library",
  7844. "extra": {
  7845. "laravel": {
  7846. "providers": [
  7847. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  7848. ]
  7849. },
  7850. "branch-alias": {
  7851. "dev-8.x": "8.x-dev"
  7852. }
  7853. },
  7854. "autoload": {
  7855. "files": [
  7856. "./src/Adapters/Phpunit/Autoload.php"
  7857. ],
  7858. "psr-4": {
  7859. "NunoMaduro\\Collision\\": "src/"
  7860. }
  7861. },
  7862. "notification-url": "https://packagist.org/downloads/",
  7863. "license": [
  7864. "MIT"
  7865. ],
  7866. "authors": [
  7867. {
  7868. "name": "Nuno Maduro",
  7869. "email": "enunomaduro@gmail.com"
  7870. }
  7871. ],
  7872. "description": "Cli error handling for console/command-line PHP applications.",
  7873. "keywords": [
  7874. "artisan",
  7875. "cli",
  7876. "command-line",
  7877. "console",
  7878. "error",
  7879. "handling",
  7880. "laravel",
  7881. "laravel-zero",
  7882. "php",
  7883. "symfony"
  7884. ],
  7885. "support": {
  7886. "issues": "https://github.com/nunomaduro/collision/issues",
  7887. "source": "https://github.com/nunomaduro/collision"
  7888. },
  7889. "funding": [
  7890. {
  7891. "url": "https://www.paypal.com/paypalme/enunomaduro",
  7892. "type": "custom"
  7893. },
  7894. {
  7895. "url": "https://github.com/nunomaduro",
  7896. "type": "github"
  7897. },
  7898. {
  7899. "url": "https://www.patreon.com/nunomaduro",
  7900. "type": "patreon"
  7901. }
  7902. ],
  7903. "time": "2024-10-15T16:06:32+00:00"
  7904. },
  7905. {
  7906. "name": "phar-io/manifest",
  7907. "version": "2.0.4",
  7908. "source": {
  7909. "type": "git",
  7910. "url": "https://github.com/phar-io/manifest.git",
  7911. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7912. },
  7913. "dist": {
  7914. "type": "zip",
  7915. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7916. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7917. "shasum": ""
  7918. },
  7919. "require": {
  7920. "ext-dom": "*",
  7921. "ext-libxml": "*",
  7922. "ext-phar": "*",
  7923. "ext-xmlwriter": "*",
  7924. "phar-io/version": "^3.0.1",
  7925. "php": "^7.2 || ^8.0"
  7926. },
  7927. "type": "library",
  7928. "extra": {
  7929. "branch-alias": {
  7930. "dev-master": "2.0.x-dev"
  7931. }
  7932. },
  7933. "autoload": {
  7934. "classmap": [
  7935. "src/"
  7936. ]
  7937. },
  7938. "notification-url": "https://packagist.org/downloads/",
  7939. "license": [
  7940. "BSD-3-Clause"
  7941. ],
  7942. "authors": [
  7943. {
  7944. "name": "Arne Blankerts",
  7945. "email": "arne@blankerts.de",
  7946. "role": "Developer"
  7947. },
  7948. {
  7949. "name": "Sebastian Heuer",
  7950. "email": "sebastian@phpeople.de",
  7951. "role": "Developer"
  7952. },
  7953. {
  7954. "name": "Sebastian Bergmann",
  7955. "email": "sebastian@phpunit.de",
  7956. "role": "Developer"
  7957. }
  7958. ],
  7959. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7960. "support": {
  7961. "issues": "https://github.com/phar-io/manifest/issues",
  7962. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7963. },
  7964. "funding": [
  7965. {
  7966. "url": "https://github.com/theseer",
  7967. "type": "github"
  7968. }
  7969. ],
  7970. "time": "2024-03-03T12:33:53+00:00"
  7971. },
  7972. {
  7973. "name": "phar-io/version",
  7974. "version": "3.2.1",
  7975. "source": {
  7976. "type": "git",
  7977. "url": "https://github.com/phar-io/version.git",
  7978. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7979. },
  7980. "dist": {
  7981. "type": "zip",
  7982. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7983. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7984. "shasum": ""
  7985. },
  7986. "require": {
  7987. "php": "^7.2 || ^8.0"
  7988. },
  7989. "type": "library",
  7990. "autoload": {
  7991. "classmap": [
  7992. "src/"
  7993. ]
  7994. },
  7995. "notification-url": "https://packagist.org/downloads/",
  7996. "license": [
  7997. "BSD-3-Clause"
  7998. ],
  7999. "authors": [
  8000. {
  8001. "name": "Arne Blankerts",
  8002. "email": "arne@blankerts.de",
  8003. "role": "Developer"
  8004. },
  8005. {
  8006. "name": "Sebastian Heuer",
  8007. "email": "sebastian@phpeople.de",
  8008. "role": "Developer"
  8009. },
  8010. {
  8011. "name": "Sebastian Bergmann",
  8012. "email": "sebastian@phpunit.de",
  8013. "role": "Developer"
  8014. }
  8015. ],
  8016. "description": "Library for handling version information and constraints",
  8017. "support": {
  8018. "issues": "https://github.com/phar-io/version/issues",
  8019. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8020. },
  8021. "time": "2022-02-21T01:04:05+00:00"
  8022. },
  8023. {
  8024. "name": "phpunit/php-code-coverage",
  8025. "version": "11.0.7",
  8026. "source": {
  8027. "type": "git",
  8028. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8029. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca"
  8030. },
  8031. "dist": {
  8032. "type": "zip",
  8033. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  8034. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  8035. "shasum": ""
  8036. },
  8037. "require": {
  8038. "ext-dom": "*",
  8039. "ext-libxml": "*",
  8040. "ext-xmlwriter": "*",
  8041. "nikic/php-parser": "^5.3.1",
  8042. "php": ">=8.2",
  8043. "phpunit/php-file-iterator": "^5.1.0",
  8044. "phpunit/php-text-template": "^4.0.1",
  8045. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  8046. "sebastian/complexity": "^4.0.1",
  8047. "sebastian/environment": "^7.2.0",
  8048. "sebastian/lines-of-code": "^3.0.1",
  8049. "sebastian/version": "^5.0.2",
  8050. "theseer/tokenizer": "^1.2.3"
  8051. },
  8052. "require-dev": {
  8053. "phpunit/phpunit": "^11.4.1"
  8054. },
  8055. "suggest": {
  8056. "ext-pcov": "PHP extension that provides line coverage",
  8057. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8058. },
  8059. "type": "library",
  8060. "extra": {
  8061. "branch-alias": {
  8062. "dev-main": "11.0.x-dev"
  8063. }
  8064. },
  8065. "autoload": {
  8066. "classmap": [
  8067. "src/"
  8068. ]
  8069. },
  8070. "notification-url": "https://packagist.org/downloads/",
  8071. "license": [
  8072. "BSD-3-Clause"
  8073. ],
  8074. "authors": [
  8075. {
  8076. "name": "Sebastian Bergmann",
  8077. "email": "sebastian@phpunit.de",
  8078. "role": "lead"
  8079. }
  8080. ],
  8081. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8082. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8083. "keywords": [
  8084. "coverage",
  8085. "testing",
  8086. "xunit"
  8087. ],
  8088. "support": {
  8089. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8090. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8091. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.7"
  8092. },
  8093. "funding": [
  8094. {
  8095. "url": "https://github.com/sebastianbergmann",
  8096. "type": "github"
  8097. }
  8098. ],
  8099. "time": "2024-10-09T06:21:38+00:00"
  8100. },
  8101. {
  8102. "name": "phpunit/php-file-iterator",
  8103. "version": "5.1.0",
  8104. "source": {
  8105. "type": "git",
  8106. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8107. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  8108. },
  8109. "dist": {
  8110. "type": "zip",
  8111. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  8112. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  8113. "shasum": ""
  8114. },
  8115. "require": {
  8116. "php": ">=8.2"
  8117. },
  8118. "require-dev": {
  8119. "phpunit/phpunit": "^11.0"
  8120. },
  8121. "type": "library",
  8122. "extra": {
  8123. "branch-alias": {
  8124. "dev-main": "5.0-dev"
  8125. }
  8126. },
  8127. "autoload": {
  8128. "classmap": [
  8129. "src/"
  8130. ]
  8131. },
  8132. "notification-url": "https://packagist.org/downloads/",
  8133. "license": [
  8134. "BSD-3-Clause"
  8135. ],
  8136. "authors": [
  8137. {
  8138. "name": "Sebastian Bergmann",
  8139. "email": "sebastian@phpunit.de",
  8140. "role": "lead"
  8141. }
  8142. ],
  8143. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8144. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8145. "keywords": [
  8146. "filesystem",
  8147. "iterator"
  8148. ],
  8149. "support": {
  8150. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8151. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8152. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  8153. },
  8154. "funding": [
  8155. {
  8156. "url": "https://github.com/sebastianbergmann",
  8157. "type": "github"
  8158. }
  8159. ],
  8160. "time": "2024-08-27T05:02:59+00:00"
  8161. },
  8162. {
  8163. "name": "phpunit/php-invoker",
  8164. "version": "5.0.1",
  8165. "source": {
  8166. "type": "git",
  8167. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8168. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  8169. },
  8170. "dist": {
  8171. "type": "zip",
  8172. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  8173. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  8174. "shasum": ""
  8175. },
  8176. "require": {
  8177. "php": ">=8.2"
  8178. },
  8179. "require-dev": {
  8180. "ext-pcntl": "*",
  8181. "phpunit/phpunit": "^11.0"
  8182. },
  8183. "suggest": {
  8184. "ext-pcntl": "*"
  8185. },
  8186. "type": "library",
  8187. "extra": {
  8188. "branch-alias": {
  8189. "dev-main": "5.0-dev"
  8190. }
  8191. },
  8192. "autoload": {
  8193. "classmap": [
  8194. "src/"
  8195. ]
  8196. },
  8197. "notification-url": "https://packagist.org/downloads/",
  8198. "license": [
  8199. "BSD-3-Clause"
  8200. ],
  8201. "authors": [
  8202. {
  8203. "name": "Sebastian Bergmann",
  8204. "email": "sebastian@phpunit.de",
  8205. "role": "lead"
  8206. }
  8207. ],
  8208. "description": "Invoke callables with a timeout",
  8209. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8210. "keywords": [
  8211. "process"
  8212. ],
  8213. "support": {
  8214. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8215. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  8216. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  8217. },
  8218. "funding": [
  8219. {
  8220. "url": "https://github.com/sebastianbergmann",
  8221. "type": "github"
  8222. }
  8223. ],
  8224. "time": "2024-07-03T05:07:44+00:00"
  8225. },
  8226. {
  8227. "name": "phpunit/php-text-template",
  8228. "version": "4.0.1",
  8229. "source": {
  8230. "type": "git",
  8231. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8232. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  8233. },
  8234. "dist": {
  8235. "type": "zip",
  8236. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  8237. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  8238. "shasum": ""
  8239. },
  8240. "require": {
  8241. "php": ">=8.2"
  8242. },
  8243. "require-dev": {
  8244. "phpunit/phpunit": "^11.0"
  8245. },
  8246. "type": "library",
  8247. "extra": {
  8248. "branch-alias": {
  8249. "dev-main": "4.0-dev"
  8250. }
  8251. },
  8252. "autoload": {
  8253. "classmap": [
  8254. "src/"
  8255. ]
  8256. },
  8257. "notification-url": "https://packagist.org/downloads/",
  8258. "license": [
  8259. "BSD-3-Clause"
  8260. ],
  8261. "authors": [
  8262. {
  8263. "name": "Sebastian Bergmann",
  8264. "email": "sebastian@phpunit.de",
  8265. "role": "lead"
  8266. }
  8267. ],
  8268. "description": "Simple template engine.",
  8269. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8270. "keywords": [
  8271. "template"
  8272. ],
  8273. "support": {
  8274. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8275. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8276. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  8277. },
  8278. "funding": [
  8279. {
  8280. "url": "https://github.com/sebastianbergmann",
  8281. "type": "github"
  8282. }
  8283. ],
  8284. "time": "2024-07-03T05:08:43+00:00"
  8285. },
  8286. {
  8287. "name": "phpunit/php-timer",
  8288. "version": "7.0.1",
  8289. "source": {
  8290. "type": "git",
  8291. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8292. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  8293. },
  8294. "dist": {
  8295. "type": "zip",
  8296. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  8297. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  8298. "shasum": ""
  8299. },
  8300. "require": {
  8301. "php": ">=8.2"
  8302. },
  8303. "require-dev": {
  8304. "phpunit/phpunit": "^11.0"
  8305. },
  8306. "type": "library",
  8307. "extra": {
  8308. "branch-alias": {
  8309. "dev-main": "7.0-dev"
  8310. }
  8311. },
  8312. "autoload": {
  8313. "classmap": [
  8314. "src/"
  8315. ]
  8316. },
  8317. "notification-url": "https://packagist.org/downloads/",
  8318. "license": [
  8319. "BSD-3-Clause"
  8320. ],
  8321. "authors": [
  8322. {
  8323. "name": "Sebastian Bergmann",
  8324. "email": "sebastian@phpunit.de",
  8325. "role": "lead"
  8326. }
  8327. ],
  8328. "description": "Utility class for timing",
  8329. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8330. "keywords": [
  8331. "timer"
  8332. ],
  8333. "support": {
  8334. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8335. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  8336. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  8337. },
  8338. "funding": [
  8339. {
  8340. "url": "https://github.com/sebastianbergmann",
  8341. "type": "github"
  8342. }
  8343. ],
  8344. "time": "2024-07-03T05:09:35+00:00"
  8345. },
  8346. {
  8347. "name": "phpunit/phpunit",
  8348. "version": "11.4.3",
  8349. "source": {
  8350. "type": "git",
  8351. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8352. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76"
  8353. },
  8354. "dist": {
  8355. "type": "zip",
  8356. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  8357. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  8358. "shasum": ""
  8359. },
  8360. "require": {
  8361. "ext-dom": "*",
  8362. "ext-json": "*",
  8363. "ext-libxml": "*",
  8364. "ext-mbstring": "*",
  8365. "ext-xml": "*",
  8366. "ext-xmlwriter": "*",
  8367. "myclabs/deep-copy": "^1.12.0",
  8368. "phar-io/manifest": "^2.0.4",
  8369. "phar-io/version": "^3.2.1",
  8370. "php": ">=8.2",
  8371. "phpunit/php-code-coverage": "^11.0.7",
  8372. "phpunit/php-file-iterator": "^5.1.0",
  8373. "phpunit/php-invoker": "^5.0.1",
  8374. "phpunit/php-text-template": "^4.0.1",
  8375. "phpunit/php-timer": "^7.0.1",
  8376. "sebastian/cli-parser": "^3.0.2",
  8377. "sebastian/code-unit": "^3.0.1",
  8378. "sebastian/comparator": "^6.1.1",
  8379. "sebastian/diff": "^6.0.2",
  8380. "sebastian/environment": "^7.2.0",
  8381. "sebastian/exporter": "^6.1.3",
  8382. "sebastian/global-state": "^7.0.2",
  8383. "sebastian/object-enumerator": "^6.0.1",
  8384. "sebastian/type": "^5.1.0",
  8385. "sebastian/version": "^5.0.2"
  8386. },
  8387. "suggest": {
  8388. "ext-soap": "To be able to generate mocks based on WSDL files"
  8389. },
  8390. "bin": [
  8391. "phpunit"
  8392. ],
  8393. "type": "library",
  8394. "extra": {
  8395. "branch-alias": {
  8396. "dev-main": "11.4-dev"
  8397. }
  8398. },
  8399. "autoload": {
  8400. "files": [
  8401. "src/Framework/Assert/Functions.php"
  8402. ],
  8403. "classmap": [
  8404. "src/"
  8405. ]
  8406. },
  8407. "notification-url": "https://packagist.org/downloads/",
  8408. "license": [
  8409. "BSD-3-Clause"
  8410. ],
  8411. "authors": [
  8412. {
  8413. "name": "Sebastian Bergmann",
  8414. "email": "sebastian@phpunit.de",
  8415. "role": "lead"
  8416. }
  8417. ],
  8418. "description": "The PHP Unit Testing framework.",
  8419. "homepage": "https://phpunit.de/",
  8420. "keywords": [
  8421. "phpunit",
  8422. "testing",
  8423. "xunit"
  8424. ],
  8425. "support": {
  8426. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8427. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8428. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.4.3"
  8429. },
  8430. "funding": [
  8431. {
  8432. "url": "https://phpunit.de/sponsors.html",
  8433. "type": "custom"
  8434. },
  8435. {
  8436. "url": "https://github.com/sebastianbergmann",
  8437. "type": "github"
  8438. },
  8439. {
  8440. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8441. "type": "tidelift"
  8442. }
  8443. ],
  8444. "time": "2024-10-28T13:07:50+00:00"
  8445. },
  8446. {
  8447. "name": "sebastian/cli-parser",
  8448. "version": "3.0.2",
  8449. "source": {
  8450. "type": "git",
  8451. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8452. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  8453. },
  8454. "dist": {
  8455. "type": "zip",
  8456. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  8457. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  8458. "shasum": ""
  8459. },
  8460. "require": {
  8461. "php": ">=8.2"
  8462. },
  8463. "require-dev": {
  8464. "phpunit/phpunit": "^11.0"
  8465. },
  8466. "type": "library",
  8467. "extra": {
  8468. "branch-alias": {
  8469. "dev-main": "3.0-dev"
  8470. }
  8471. },
  8472. "autoload": {
  8473. "classmap": [
  8474. "src/"
  8475. ]
  8476. },
  8477. "notification-url": "https://packagist.org/downloads/",
  8478. "license": [
  8479. "BSD-3-Clause"
  8480. ],
  8481. "authors": [
  8482. {
  8483. "name": "Sebastian Bergmann",
  8484. "email": "sebastian@phpunit.de",
  8485. "role": "lead"
  8486. }
  8487. ],
  8488. "description": "Library for parsing CLI options",
  8489. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8490. "support": {
  8491. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8492. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8493. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  8494. },
  8495. "funding": [
  8496. {
  8497. "url": "https://github.com/sebastianbergmann",
  8498. "type": "github"
  8499. }
  8500. ],
  8501. "time": "2024-07-03T04:41:36+00:00"
  8502. },
  8503. {
  8504. "name": "sebastian/code-unit",
  8505. "version": "3.0.1",
  8506. "source": {
  8507. "type": "git",
  8508. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8509. "reference": "6bb7d09d6623567178cf54126afa9c2310114268"
  8510. },
  8511. "dist": {
  8512. "type": "zip",
  8513. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6bb7d09d6623567178cf54126afa9c2310114268",
  8514. "reference": "6bb7d09d6623567178cf54126afa9c2310114268",
  8515. "shasum": ""
  8516. },
  8517. "require": {
  8518. "php": ">=8.2"
  8519. },
  8520. "require-dev": {
  8521. "phpunit/phpunit": "^11.0"
  8522. },
  8523. "type": "library",
  8524. "extra": {
  8525. "branch-alias": {
  8526. "dev-main": "3.0-dev"
  8527. }
  8528. },
  8529. "autoload": {
  8530. "classmap": [
  8531. "src/"
  8532. ]
  8533. },
  8534. "notification-url": "https://packagist.org/downloads/",
  8535. "license": [
  8536. "BSD-3-Clause"
  8537. ],
  8538. "authors": [
  8539. {
  8540. "name": "Sebastian Bergmann",
  8541. "email": "sebastian@phpunit.de",
  8542. "role": "lead"
  8543. }
  8544. ],
  8545. "description": "Collection of value objects that represent the PHP code units",
  8546. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8547. "support": {
  8548. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8549. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  8550. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.1"
  8551. },
  8552. "funding": [
  8553. {
  8554. "url": "https://github.com/sebastianbergmann",
  8555. "type": "github"
  8556. }
  8557. ],
  8558. "time": "2024-07-03T04:44:28+00:00"
  8559. },
  8560. {
  8561. "name": "sebastian/code-unit-reverse-lookup",
  8562. "version": "4.0.1",
  8563. "source": {
  8564. "type": "git",
  8565. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8566. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  8567. },
  8568. "dist": {
  8569. "type": "zip",
  8570. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  8571. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  8572. "shasum": ""
  8573. },
  8574. "require": {
  8575. "php": ">=8.2"
  8576. },
  8577. "require-dev": {
  8578. "phpunit/phpunit": "^11.0"
  8579. },
  8580. "type": "library",
  8581. "extra": {
  8582. "branch-alias": {
  8583. "dev-main": "4.0-dev"
  8584. }
  8585. },
  8586. "autoload": {
  8587. "classmap": [
  8588. "src/"
  8589. ]
  8590. },
  8591. "notification-url": "https://packagist.org/downloads/",
  8592. "license": [
  8593. "BSD-3-Clause"
  8594. ],
  8595. "authors": [
  8596. {
  8597. "name": "Sebastian Bergmann",
  8598. "email": "sebastian@phpunit.de"
  8599. }
  8600. ],
  8601. "description": "Looks up which function or method a line of code belongs to",
  8602. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8603. "support": {
  8604. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8605. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  8606. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  8607. },
  8608. "funding": [
  8609. {
  8610. "url": "https://github.com/sebastianbergmann",
  8611. "type": "github"
  8612. }
  8613. ],
  8614. "time": "2024-07-03T04:45:54+00:00"
  8615. },
  8616. {
  8617. "name": "sebastian/comparator",
  8618. "version": "6.2.1",
  8619. "source": {
  8620. "type": "git",
  8621. "url": "https://github.com/sebastianbergmann/comparator.git",
  8622. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739"
  8623. },
  8624. "dist": {
  8625. "type": "zip",
  8626. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/43d129d6a0f81c78bee378b46688293eb7ea3739",
  8627. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739",
  8628. "shasum": ""
  8629. },
  8630. "require": {
  8631. "ext-dom": "*",
  8632. "ext-mbstring": "*",
  8633. "php": ">=8.2",
  8634. "sebastian/diff": "^6.0",
  8635. "sebastian/exporter": "^6.0"
  8636. },
  8637. "require-dev": {
  8638. "phpunit/phpunit": "^11.4"
  8639. },
  8640. "type": "library",
  8641. "extra": {
  8642. "branch-alias": {
  8643. "dev-main": "6.2-dev"
  8644. }
  8645. },
  8646. "autoload": {
  8647. "classmap": [
  8648. "src/"
  8649. ]
  8650. },
  8651. "notification-url": "https://packagist.org/downloads/",
  8652. "license": [
  8653. "BSD-3-Clause"
  8654. ],
  8655. "authors": [
  8656. {
  8657. "name": "Sebastian Bergmann",
  8658. "email": "sebastian@phpunit.de"
  8659. },
  8660. {
  8661. "name": "Jeff Welch",
  8662. "email": "whatthejeff@gmail.com"
  8663. },
  8664. {
  8665. "name": "Volker Dusch",
  8666. "email": "github@wallbash.com"
  8667. },
  8668. {
  8669. "name": "Bernhard Schussek",
  8670. "email": "bschussek@2bepublished.at"
  8671. }
  8672. ],
  8673. "description": "Provides the functionality to compare PHP values for equality",
  8674. "homepage": "https://github.com/sebastianbergmann/comparator",
  8675. "keywords": [
  8676. "comparator",
  8677. "compare",
  8678. "equality"
  8679. ],
  8680. "support": {
  8681. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8682. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  8683. "source": "https://github.com/sebastianbergmann/comparator/tree/6.2.1"
  8684. },
  8685. "funding": [
  8686. {
  8687. "url": "https://github.com/sebastianbergmann",
  8688. "type": "github"
  8689. }
  8690. ],
  8691. "time": "2024-10-31T05:30:08+00:00"
  8692. },
  8693. {
  8694. "name": "sebastian/complexity",
  8695. "version": "4.0.1",
  8696. "source": {
  8697. "type": "git",
  8698. "url": "https://github.com/sebastianbergmann/complexity.git",
  8699. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  8700. },
  8701. "dist": {
  8702. "type": "zip",
  8703. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  8704. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  8705. "shasum": ""
  8706. },
  8707. "require": {
  8708. "nikic/php-parser": "^5.0",
  8709. "php": ">=8.2"
  8710. },
  8711. "require-dev": {
  8712. "phpunit/phpunit": "^11.0"
  8713. },
  8714. "type": "library",
  8715. "extra": {
  8716. "branch-alias": {
  8717. "dev-main": "4.0-dev"
  8718. }
  8719. },
  8720. "autoload": {
  8721. "classmap": [
  8722. "src/"
  8723. ]
  8724. },
  8725. "notification-url": "https://packagist.org/downloads/",
  8726. "license": [
  8727. "BSD-3-Clause"
  8728. ],
  8729. "authors": [
  8730. {
  8731. "name": "Sebastian Bergmann",
  8732. "email": "sebastian@phpunit.de",
  8733. "role": "lead"
  8734. }
  8735. ],
  8736. "description": "Library for calculating the complexity of PHP code units",
  8737. "homepage": "https://github.com/sebastianbergmann/complexity",
  8738. "support": {
  8739. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8740. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8741. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  8742. },
  8743. "funding": [
  8744. {
  8745. "url": "https://github.com/sebastianbergmann",
  8746. "type": "github"
  8747. }
  8748. ],
  8749. "time": "2024-07-03T04:49:50+00:00"
  8750. },
  8751. {
  8752. "name": "sebastian/diff",
  8753. "version": "6.0.2",
  8754. "source": {
  8755. "type": "git",
  8756. "url": "https://github.com/sebastianbergmann/diff.git",
  8757. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  8758. },
  8759. "dist": {
  8760. "type": "zip",
  8761. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  8762. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  8763. "shasum": ""
  8764. },
  8765. "require": {
  8766. "php": ">=8.2"
  8767. },
  8768. "require-dev": {
  8769. "phpunit/phpunit": "^11.0",
  8770. "symfony/process": "^4.2 || ^5"
  8771. },
  8772. "type": "library",
  8773. "extra": {
  8774. "branch-alias": {
  8775. "dev-main": "6.0-dev"
  8776. }
  8777. },
  8778. "autoload": {
  8779. "classmap": [
  8780. "src/"
  8781. ]
  8782. },
  8783. "notification-url": "https://packagist.org/downloads/",
  8784. "license": [
  8785. "BSD-3-Clause"
  8786. ],
  8787. "authors": [
  8788. {
  8789. "name": "Sebastian Bergmann",
  8790. "email": "sebastian@phpunit.de"
  8791. },
  8792. {
  8793. "name": "Kore Nordmann",
  8794. "email": "mail@kore-nordmann.de"
  8795. }
  8796. ],
  8797. "description": "Diff implementation",
  8798. "homepage": "https://github.com/sebastianbergmann/diff",
  8799. "keywords": [
  8800. "diff",
  8801. "udiff",
  8802. "unidiff",
  8803. "unified diff"
  8804. ],
  8805. "support": {
  8806. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8807. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  8808. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  8809. },
  8810. "funding": [
  8811. {
  8812. "url": "https://github.com/sebastianbergmann",
  8813. "type": "github"
  8814. }
  8815. ],
  8816. "time": "2024-07-03T04:53:05+00:00"
  8817. },
  8818. {
  8819. "name": "sebastian/environment",
  8820. "version": "7.2.0",
  8821. "source": {
  8822. "type": "git",
  8823. "url": "https://github.com/sebastianbergmann/environment.git",
  8824. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  8825. },
  8826. "dist": {
  8827. "type": "zip",
  8828. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  8829. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  8830. "shasum": ""
  8831. },
  8832. "require": {
  8833. "php": ">=8.2"
  8834. },
  8835. "require-dev": {
  8836. "phpunit/phpunit": "^11.0"
  8837. },
  8838. "suggest": {
  8839. "ext-posix": "*"
  8840. },
  8841. "type": "library",
  8842. "extra": {
  8843. "branch-alias": {
  8844. "dev-main": "7.2-dev"
  8845. }
  8846. },
  8847. "autoload": {
  8848. "classmap": [
  8849. "src/"
  8850. ]
  8851. },
  8852. "notification-url": "https://packagist.org/downloads/",
  8853. "license": [
  8854. "BSD-3-Clause"
  8855. ],
  8856. "authors": [
  8857. {
  8858. "name": "Sebastian Bergmann",
  8859. "email": "sebastian@phpunit.de"
  8860. }
  8861. ],
  8862. "description": "Provides functionality to handle HHVM/PHP environments",
  8863. "homepage": "https://github.com/sebastianbergmann/environment",
  8864. "keywords": [
  8865. "Xdebug",
  8866. "environment",
  8867. "hhvm"
  8868. ],
  8869. "support": {
  8870. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8871. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  8872. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  8873. },
  8874. "funding": [
  8875. {
  8876. "url": "https://github.com/sebastianbergmann",
  8877. "type": "github"
  8878. }
  8879. ],
  8880. "time": "2024-07-03T04:54:44+00:00"
  8881. },
  8882. {
  8883. "name": "sebastian/exporter",
  8884. "version": "6.1.3",
  8885. "source": {
  8886. "type": "git",
  8887. "url": "https://github.com/sebastianbergmann/exporter.git",
  8888. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e"
  8889. },
  8890. "dist": {
  8891. "type": "zip",
  8892. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  8893. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  8894. "shasum": ""
  8895. },
  8896. "require": {
  8897. "ext-mbstring": "*",
  8898. "php": ">=8.2",
  8899. "sebastian/recursion-context": "^6.0"
  8900. },
  8901. "require-dev": {
  8902. "phpunit/phpunit": "^11.2"
  8903. },
  8904. "type": "library",
  8905. "extra": {
  8906. "branch-alias": {
  8907. "dev-main": "6.1-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. "name": "Jeff Welch",
  8926. "email": "whatthejeff@gmail.com"
  8927. },
  8928. {
  8929. "name": "Volker Dusch",
  8930. "email": "github@wallbash.com"
  8931. },
  8932. {
  8933. "name": "Adam Harvey",
  8934. "email": "aharvey@php.net"
  8935. },
  8936. {
  8937. "name": "Bernhard Schussek",
  8938. "email": "bschussek@gmail.com"
  8939. }
  8940. ],
  8941. "description": "Provides the functionality to export PHP variables for visualization",
  8942. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8943. "keywords": [
  8944. "export",
  8945. "exporter"
  8946. ],
  8947. "support": {
  8948. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8949. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  8950. "source": "https://github.com/sebastianbergmann/exporter/tree/6.1.3"
  8951. },
  8952. "funding": [
  8953. {
  8954. "url": "https://github.com/sebastianbergmann",
  8955. "type": "github"
  8956. }
  8957. ],
  8958. "time": "2024-07-03T04:56:19+00:00"
  8959. },
  8960. {
  8961. "name": "sebastian/global-state",
  8962. "version": "7.0.2",
  8963. "source": {
  8964. "type": "git",
  8965. "url": "https://github.com/sebastianbergmann/global-state.git",
  8966. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  8967. },
  8968. "dist": {
  8969. "type": "zip",
  8970. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  8971. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  8972. "shasum": ""
  8973. },
  8974. "require": {
  8975. "php": ">=8.2",
  8976. "sebastian/object-reflector": "^4.0",
  8977. "sebastian/recursion-context": "^6.0"
  8978. },
  8979. "require-dev": {
  8980. "ext-dom": "*",
  8981. "phpunit/phpunit": "^11.0"
  8982. },
  8983. "type": "library",
  8984. "extra": {
  8985. "branch-alias": {
  8986. "dev-main": "7.0-dev"
  8987. }
  8988. },
  8989. "autoload": {
  8990. "classmap": [
  8991. "src/"
  8992. ]
  8993. },
  8994. "notification-url": "https://packagist.org/downloads/",
  8995. "license": [
  8996. "BSD-3-Clause"
  8997. ],
  8998. "authors": [
  8999. {
  9000. "name": "Sebastian Bergmann",
  9001. "email": "sebastian@phpunit.de"
  9002. }
  9003. ],
  9004. "description": "Snapshotting of global state",
  9005. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9006. "keywords": [
  9007. "global state"
  9008. ],
  9009. "support": {
  9010. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9011. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9012. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  9013. },
  9014. "funding": [
  9015. {
  9016. "url": "https://github.com/sebastianbergmann",
  9017. "type": "github"
  9018. }
  9019. ],
  9020. "time": "2024-07-03T04:57:36+00:00"
  9021. },
  9022. {
  9023. "name": "sebastian/lines-of-code",
  9024. "version": "3.0.1",
  9025. "source": {
  9026. "type": "git",
  9027. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9028. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  9029. },
  9030. "dist": {
  9031. "type": "zip",
  9032. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  9033. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  9034. "shasum": ""
  9035. },
  9036. "require": {
  9037. "nikic/php-parser": "^5.0",
  9038. "php": ">=8.2"
  9039. },
  9040. "require-dev": {
  9041. "phpunit/phpunit": "^11.0"
  9042. },
  9043. "type": "library",
  9044. "extra": {
  9045. "branch-alias": {
  9046. "dev-main": "3.0-dev"
  9047. }
  9048. },
  9049. "autoload": {
  9050. "classmap": [
  9051. "src/"
  9052. ]
  9053. },
  9054. "notification-url": "https://packagist.org/downloads/",
  9055. "license": [
  9056. "BSD-3-Clause"
  9057. ],
  9058. "authors": [
  9059. {
  9060. "name": "Sebastian Bergmann",
  9061. "email": "sebastian@phpunit.de",
  9062. "role": "lead"
  9063. }
  9064. ],
  9065. "description": "Library for counting the lines of code in PHP source code",
  9066. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9067. "support": {
  9068. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9069. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9070. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  9071. },
  9072. "funding": [
  9073. {
  9074. "url": "https://github.com/sebastianbergmann",
  9075. "type": "github"
  9076. }
  9077. ],
  9078. "time": "2024-07-03T04:58:38+00:00"
  9079. },
  9080. {
  9081. "name": "sebastian/object-enumerator",
  9082. "version": "6.0.1",
  9083. "source": {
  9084. "type": "git",
  9085. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9086. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  9087. },
  9088. "dist": {
  9089. "type": "zip",
  9090. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  9091. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  9092. "shasum": ""
  9093. },
  9094. "require": {
  9095. "php": ">=8.2",
  9096. "sebastian/object-reflector": "^4.0",
  9097. "sebastian/recursion-context": "^6.0"
  9098. },
  9099. "require-dev": {
  9100. "phpunit/phpunit": "^11.0"
  9101. },
  9102. "type": "library",
  9103. "extra": {
  9104. "branch-alias": {
  9105. "dev-main": "6.0-dev"
  9106. }
  9107. },
  9108. "autoload": {
  9109. "classmap": [
  9110. "src/"
  9111. ]
  9112. },
  9113. "notification-url": "https://packagist.org/downloads/",
  9114. "license": [
  9115. "BSD-3-Clause"
  9116. ],
  9117. "authors": [
  9118. {
  9119. "name": "Sebastian Bergmann",
  9120. "email": "sebastian@phpunit.de"
  9121. }
  9122. ],
  9123. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9124. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9125. "support": {
  9126. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9127. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  9128. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  9129. },
  9130. "funding": [
  9131. {
  9132. "url": "https://github.com/sebastianbergmann",
  9133. "type": "github"
  9134. }
  9135. ],
  9136. "time": "2024-07-03T05:00:13+00:00"
  9137. },
  9138. {
  9139. "name": "sebastian/object-reflector",
  9140. "version": "4.0.1",
  9141. "source": {
  9142. "type": "git",
  9143. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9144. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  9145. },
  9146. "dist": {
  9147. "type": "zip",
  9148. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  9149. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  9150. "shasum": ""
  9151. },
  9152. "require": {
  9153. "php": ">=8.2"
  9154. },
  9155. "require-dev": {
  9156. "phpunit/phpunit": "^11.0"
  9157. },
  9158. "type": "library",
  9159. "extra": {
  9160. "branch-alias": {
  9161. "dev-main": "4.0-dev"
  9162. }
  9163. },
  9164. "autoload": {
  9165. "classmap": [
  9166. "src/"
  9167. ]
  9168. },
  9169. "notification-url": "https://packagist.org/downloads/",
  9170. "license": [
  9171. "BSD-3-Clause"
  9172. ],
  9173. "authors": [
  9174. {
  9175. "name": "Sebastian Bergmann",
  9176. "email": "sebastian@phpunit.de"
  9177. }
  9178. ],
  9179. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9180. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9181. "support": {
  9182. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9183. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  9184. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  9185. },
  9186. "funding": [
  9187. {
  9188. "url": "https://github.com/sebastianbergmann",
  9189. "type": "github"
  9190. }
  9191. ],
  9192. "time": "2024-07-03T05:01:32+00:00"
  9193. },
  9194. {
  9195. "name": "sebastian/recursion-context",
  9196. "version": "6.0.2",
  9197. "source": {
  9198. "type": "git",
  9199. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9200. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  9201. },
  9202. "dist": {
  9203. "type": "zip",
  9204. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  9205. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  9206. "shasum": ""
  9207. },
  9208. "require": {
  9209. "php": ">=8.2"
  9210. },
  9211. "require-dev": {
  9212. "phpunit/phpunit": "^11.0"
  9213. },
  9214. "type": "library",
  9215. "extra": {
  9216. "branch-alias": {
  9217. "dev-main": "6.0-dev"
  9218. }
  9219. },
  9220. "autoload": {
  9221. "classmap": [
  9222. "src/"
  9223. ]
  9224. },
  9225. "notification-url": "https://packagist.org/downloads/",
  9226. "license": [
  9227. "BSD-3-Clause"
  9228. ],
  9229. "authors": [
  9230. {
  9231. "name": "Sebastian Bergmann",
  9232. "email": "sebastian@phpunit.de"
  9233. },
  9234. {
  9235. "name": "Jeff Welch",
  9236. "email": "whatthejeff@gmail.com"
  9237. },
  9238. {
  9239. "name": "Adam Harvey",
  9240. "email": "aharvey@php.net"
  9241. }
  9242. ],
  9243. "description": "Provides functionality to recursively process PHP variables",
  9244. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9245. "support": {
  9246. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9247. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  9248. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  9249. },
  9250. "funding": [
  9251. {
  9252. "url": "https://github.com/sebastianbergmann",
  9253. "type": "github"
  9254. }
  9255. ],
  9256. "time": "2024-07-03T05:10:34+00:00"
  9257. },
  9258. {
  9259. "name": "sebastian/type",
  9260. "version": "5.1.0",
  9261. "source": {
  9262. "type": "git",
  9263. "url": "https://github.com/sebastianbergmann/type.git",
  9264. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  9265. },
  9266. "dist": {
  9267. "type": "zip",
  9268. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  9269. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  9270. "shasum": ""
  9271. },
  9272. "require": {
  9273. "php": ">=8.2"
  9274. },
  9275. "require-dev": {
  9276. "phpunit/phpunit": "^11.3"
  9277. },
  9278. "type": "library",
  9279. "extra": {
  9280. "branch-alias": {
  9281. "dev-main": "5.1-dev"
  9282. }
  9283. },
  9284. "autoload": {
  9285. "classmap": [
  9286. "src/"
  9287. ]
  9288. },
  9289. "notification-url": "https://packagist.org/downloads/",
  9290. "license": [
  9291. "BSD-3-Clause"
  9292. ],
  9293. "authors": [
  9294. {
  9295. "name": "Sebastian Bergmann",
  9296. "email": "sebastian@phpunit.de",
  9297. "role": "lead"
  9298. }
  9299. ],
  9300. "description": "Collection of value objects that represent the types of the PHP type system",
  9301. "homepage": "https://github.com/sebastianbergmann/type",
  9302. "support": {
  9303. "issues": "https://github.com/sebastianbergmann/type/issues",
  9304. "security": "https://github.com/sebastianbergmann/type/security/policy",
  9305. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  9306. },
  9307. "funding": [
  9308. {
  9309. "url": "https://github.com/sebastianbergmann",
  9310. "type": "github"
  9311. }
  9312. ],
  9313. "time": "2024-09-17T13:12:04+00:00"
  9314. },
  9315. {
  9316. "name": "sebastian/version",
  9317. "version": "5.0.2",
  9318. "source": {
  9319. "type": "git",
  9320. "url": "https://github.com/sebastianbergmann/version.git",
  9321. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  9322. },
  9323. "dist": {
  9324. "type": "zip",
  9325. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  9326. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  9327. "shasum": ""
  9328. },
  9329. "require": {
  9330. "php": ">=8.2"
  9331. },
  9332. "type": "library",
  9333. "extra": {
  9334. "branch-alias": {
  9335. "dev-main": "5.0-dev"
  9336. }
  9337. },
  9338. "autoload": {
  9339. "classmap": [
  9340. "src/"
  9341. ]
  9342. },
  9343. "notification-url": "https://packagist.org/downloads/",
  9344. "license": [
  9345. "BSD-3-Clause"
  9346. ],
  9347. "authors": [
  9348. {
  9349. "name": "Sebastian Bergmann",
  9350. "email": "sebastian@phpunit.de",
  9351. "role": "lead"
  9352. }
  9353. ],
  9354. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9355. "homepage": "https://github.com/sebastianbergmann/version",
  9356. "support": {
  9357. "issues": "https://github.com/sebastianbergmann/version/issues",
  9358. "security": "https://github.com/sebastianbergmann/version/security/policy",
  9359. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  9360. },
  9361. "funding": [
  9362. {
  9363. "url": "https://github.com/sebastianbergmann",
  9364. "type": "github"
  9365. }
  9366. ],
  9367. "time": "2024-10-09T05:16:32+00:00"
  9368. },
  9369. {
  9370. "name": "symfony/yaml",
  9371. "version": "v7.1.6",
  9372. "source": {
  9373. "type": "git",
  9374. "url": "https://github.com/symfony/yaml.git",
  9375. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671"
  9376. },
  9377. "dist": {
  9378. "type": "zip",
  9379. "url": "https://api.github.com/repos/symfony/yaml/zipball/3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  9380. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  9381. "shasum": ""
  9382. },
  9383. "require": {
  9384. "php": ">=8.2",
  9385. "symfony/polyfill-ctype": "^1.8"
  9386. },
  9387. "conflict": {
  9388. "symfony/console": "<6.4"
  9389. },
  9390. "require-dev": {
  9391. "symfony/console": "^6.4|^7.0"
  9392. },
  9393. "bin": [
  9394. "Resources/bin/yaml-lint"
  9395. ],
  9396. "type": "library",
  9397. "autoload": {
  9398. "psr-4": {
  9399. "Symfony\\Component\\Yaml\\": ""
  9400. },
  9401. "exclude-from-classmap": [
  9402. "/Tests/"
  9403. ]
  9404. },
  9405. "notification-url": "https://packagist.org/downloads/",
  9406. "license": [
  9407. "MIT"
  9408. ],
  9409. "authors": [
  9410. {
  9411. "name": "Fabien Potencier",
  9412. "email": "fabien@symfony.com"
  9413. },
  9414. {
  9415. "name": "Symfony Community",
  9416. "homepage": "https://symfony.com/contributors"
  9417. }
  9418. ],
  9419. "description": "Loads and dumps YAML files",
  9420. "homepage": "https://symfony.com",
  9421. "support": {
  9422. "source": "https://github.com/symfony/yaml/tree/v7.1.6"
  9423. },
  9424. "funding": [
  9425. {
  9426. "url": "https://symfony.com/sponsor",
  9427. "type": "custom"
  9428. },
  9429. {
  9430. "url": "https://github.com/fabpot",
  9431. "type": "github"
  9432. },
  9433. {
  9434. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9435. "type": "tidelift"
  9436. }
  9437. ],
  9438. "time": "2024-09-25T14:20:29+00:00"
  9439. },
  9440. {
  9441. "name": "theseer/tokenizer",
  9442. "version": "1.2.3",
  9443. "source": {
  9444. "type": "git",
  9445. "url": "https://github.com/theseer/tokenizer.git",
  9446. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  9447. },
  9448. "dist": {
  9449. "type": "zip",
  9450. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9451. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9452. "shasum": ""
  9453. },
  9454. "require": {
  9455. "ext-dom": "*",
  9456. "ext-tokenizer": "*",
  9457. "ext-xmlwriter": "*",
  9458. "php": "^7.2 || ^8.0"
  9459. },
  9460. "type": "library",
  9461. "autoload": {
  9462. "classmap": [
  9463. "src/"
  9464. ]
  9465. },
  9466. "notification-url": "https://packagist.org/downloads/",
  9467. "license": [
  9468. "BSD-3-Clause"
  9469. ],
  9470. "authors": [
  9471. {
  9472. "name": "Arne Blankerts",
  9473. "email": "arne@blankerts.de",
  9474. "role": "Developer"
  9475. }
  9476. ],
  9477. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9478. "support": {
  9479. "issues": "https://github.com/theseer/tokenizer/issues",
  9480. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  9481. },
  9482. "funding": [
  9483. {
  9484. "url": "https://github.com/theseer",
  9485. "type": "github"
  9486. }
  9487. ],
  9488. "time": "2024-03-03T12:36:25+00:00"
  9489. }
  9490. ],
  9491. "aliases": [],
  9492. "minimum-stability": "stable",
  9493. "stability-flags": [],
  9494. "prefer-stable": true,
  9495. "prefer-lowest": false,
  9496. "platform": {
  9497. "php": "^8.2"
  9498. },
  9499. "platform-dev": [],
  9500. "plugin-api-version": "2.6.0"
  9501. }