composer.lock 391 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935
  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": "9386f115cee538b48dcc8a26f8c56c81",
  8. "packages": [
  9. {
  10. "name": "aws/aws-crt-php",
  11. "version": "v1.2.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/awslabs/aws-crt-php.git",
  15. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  20. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  28. "yoast/phpunit-polyfills": "^1.0"
  29. },
  30. "suggest": {
  31. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "classmap": [
  36. "src/"
  37. ]
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "Apache-2.0"
  42. ],
  43. "authors": [
  44. {
  45. "name": "AWS SDK Common Runtime Team",
  46. "email": "aws-sdk-common-runtime@amazon.com"
  47. }
  48. ],
  49. "description": "AWS Common Runtime for PHP",
  50. "homepage": "https://github.com/awslabs/aws-crt-php",
  51. "keywords": [
  52. "amazon",
  53. "aws",
  54. "crt",
  55. "sdk"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  59. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.7"
  60. },
  61. "time": "2024-10-18T22:15:13+00:00"
  62. },
  63. {
  64. "name": "aws/aws-sdk-php",
  65. "version": "3.333.0",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/aws/aws-sdk-php.git",
  69. "reference": "11bb2709885c9954004620d3648e9355feb92a41"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/11bb2709885c9954004620d3648e9355feb92a41",
  74. "reference": "11bb2709885c9954004620d3648e9355feb92a41",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "aws/aws-crt-php": "^1.2.3",
  79. "ext-json": "*",
  80. "ext-pcre": "*",
  81. "ext-simplexml": "*",
  82. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  83. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  84. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  85. "mtdowling/jmespath.php": "^2.6",
  86. "php": ">=7.2.5",
  87. "psr/http-message": "^1.0 || ^2.0"
  88. },
  89. "require-dev": {
  90. "andrewsville/php-token-reflection": "^1.4",
  91. "aws/aws-php-sns-message-validator": "~1.0",
  92. "behat/behat": "~3.0",
  93. "composer/composer": "^1.10.22",
  94. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  95. "doctrine/cache": "~1.4",
  96. "ext-dom": "*",
  97. "ext-openssl": "*",
  98. "ext-pcntl": "*",
  99. "ext-sockets": "*",
  100. "nette/neon": "^2.3",
  101. "paragonie/random_compat": ">= 2",
  102. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  103. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  104. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
  105. "sebastian/comparator": "^1.2.3 || ^4.0",
  106. "yoast/phpunit-polyfills": "^1.0"
  107. },
  108. "suggest": {
  109. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  110. "doctrine/cache": "To use the DoctrineCacheAdapter",
  111. "ext-curl": "To send requests using cURL",
  112. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  113. "ext-sockets": "To use client-side monitoring"
  114. },
  115. "type": "library",
  116. "extra": {
  117. "branch-alias": {
  118. "dev-master": "3.0-dev"
  119. }
  120. },
  121. "autoload": {
  122. "files": [
  123. "src/functions.php"
  124. ],
  125. "psr-4": {
  126. "Aws\\": "src/"
  127. },
  128. "exclude-from-classmap": [
  129. "src/data/"
  130. ]
  131. },
  132. "notification-url": "https://packagist.org/downloads/",
  133. "license": [
  134. "Apache-2.0"
  135. ],
  136. "authors": [
  137. {
  138. "name": "Amazon Web Services",
  139. "homepage": "http://aws.amazon.com"
  140. }
  141. ],
  142. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  143. "homepage": "http://aws.amazon.com/sdkforphp",
  144. "keywords": [
  145. "amazon",
  146. "aws",
  147. "cloud",
  148. "dynamodb",
  149. "ec2",
  150. "glacier",
  151. "s3",
  152. "sdk"
  153. ],
  154. "support": {
  155. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  156. "issues": "https://github.com/aws/aws-sdk-php/issues",
  157. "source": "https://github.com/aws/aws-sdk-php/tree/3.333.0"
  158. },
  159. "time": "2024-12-03T19:06:47+00:00"
  160. },
  161. {
  162. "name": "bacon/bacon-qr-code",
  163. "version": "2.0.8",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/Bacon/BaconQrCode.git",
  167. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  172. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  173. "shasum": ""
  174. },
  175. "require": {
  176. "dasprid/enum": "^1.0.3",
  177. "ext-iconv": "*",
  178. "php": "^7.1 || ^8.0"
  179. },
  180. "require-dev": {
  181. "phly/keep-a-changelog": "^2.1",
  182. "phpunit/phpunit": "^7 | ^8 | ^9",
  183. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  184. "squizlabs/php_codesniffer": "^3.4"
  185. },
  186. "suggest": {
  187. "ext-imagick": "to generate QR code images"
  188. },
  189. "type": "library",
  190. "autoload": {
  191. "psr-4": {
  192. "BaconQrCode\\": "src/"
  193. }
  194. },
  195. "notification-url": "https://packagist.org/downloads/",
  196. "license": [
  197. "BSD-2-Clause"
  198. ],
  199. "authors": [
  200. {
  201. "name": "Ben Scholzen 'DASPRiD'",
  202. "email": "mail@dasprids.de",
  203. "homepage": "https://dasprids.de/",
  204. "role": "Developer"
  205. }
  206. ],
  207. "description": "BaconQrCode is a QR code generator for PHP.",
  208. "homepage": "https://github.com/Bacon/BaconQrCode",
  209. "support": {
  210. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  211. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  212. },
  213. "time": "2022-12-07T17:46:57+00:00"
  214. },
  215. {
  216. "name": "brick/math",
  217. "version": "0.12.1",
  218. "source": {
  219. "type": "git",
  220. "url": "https://github.com/brick/math.git",
  221. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  222. },
  223. "dist": {
  224. "type": "zip",
  225. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  226. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  227. "shasum": ""
  228. },
  229. "require": {
  230. "php": "^8.1"
  231. },
  232. "require-dev": {
  233. "php-coveralls/php-coveralls": "^2.2",
  234. "phpunit/phpunit": "^10.1",
  235. "vimeo/psalm": "5.16.0"
  236. },
  237. "type": "library",
  238. "autoload": {
  239. "psr-4": {
  240. "Brick\\Math\\": "src/"
  241. }
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "MIT"
  246. ],
  247. "description": "Arbitrary-precision arithmetic library",
  248. "keywords": [
  249. "Arbitrary-precision",
  250. "BigInteger",
  251. "BigRational",
  252. "arithmetic",
  253. "bigdecimal",
  254. "bignum",
  255. "bignumber",
  256. "brick",
  257. "decimal",
  258. "integer",
  259. "math",
  260. "mathematics",
  261. "rational"
  262. ],
  263. "support": {
  264. "issues": "https://github.com/brick/math/issues",
  265. "source": "https://github.com/brick/math/tree/0.12.1"
  266. },
  267. "funding": [
  268. {
  269. "url": "https://github.com/BenMorel",
  270. "type": "github"
  271. }
  272. ],
  273. "time": "2023-11-29T23:19:16+00:00"
  274. },
  275. {
  276. "name": "carbonphp/carbon-doctrine-types",
  277. "version": "3.2.0",
  278. "source": {
  279. "type": "git",
  280. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  281. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  282. },
  283. "dist": {
  284. "type": "zip",
  285. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  286. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  287. "shasum": ""
  288. },
  289. "require": {
  290. "php": "^8.1"
  291. },
  292. "conflict": {
  293. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  294. },
  295. "require-dev": {
  296. "doctrine/dbal": "^4.0.0",
  297. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  298. "phpunit/phpunit": "^10.3"
  299. },
  300. "type": "library",
  301. "autoload": {
  302. "psr-4": {
  303. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  304. }
  305. },
  306. "notification-url": "https://packagist.org/downloads/",
  307. "license": [
  308. "MIT"
  309. ],
  310. "authors": [
  311. {
  312. "name": "KyleKatarn",
  313. "email": "kylekatarnls@gmail.com"
  314. }
  315. ],
  316. "description": "Types to use Carbon in Doctrine",
  317. "keywords": [
  318. "carbon",
  319. "date",
  320. "datetime",
  321. "doctrine",
  322. "time"
  323. ],
  324. "support": {
  325. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  326. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  327. },
  328. "funding": [
  329. {
  330. "url": "https://github.com/kylekatarnls",
  331. "type": "github"
  332. },
  333. {
  334. "url": "https://opencollective.com/Carbon",
  335. "type": "open_collective"
  336. },
  337. {
  338. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  339. "type": "tidelift"
  340. }
  341. ],
  342. "time": "2024-02-09T16:56:22+00:00"
  343. },
  344. {
  345. "name": "dasprid/enum",
  346. "version": "1.0.6",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/DASPRiD/Enum.git",
  350. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  355. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "php": ">=7.1 <9.0"
  360. },
  361. "require-dev": {
  362. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  363. "squizlabs/php_codesniffer": "*"
  364. },
  365. "type": "library",
  366. "autoload": {
  367. "psr-4": {
  368. "DASPRiD\\Enum\\": "src/"
  369. }
  370. },
  371. "notification-url": "https://packagist.org/downloads/",
  372. "license": [
  373. "BSD-2-Clause"
  374. ],
  375. "authors": [
  376. {
  377. "name": "Ben Scholzen 'DASPRiD'",
  378. "email": "mail@dasprids.de",
  379. "homepage": "https://dasprids.de/",
  380. "role": "Developer"
  381. }
  382. ],
  383. "description": "PHP 7.1 enum implementation",
  384. "keywords": [
  385. "enum",
  386. "map"
  387. ],
  388. "support": {
  389. "issues": "https://github.com/DASPRiD/Enum/issues",
  390. "source": "https://github.com/DASPRiD/Enum/tree/1.0.6"
  391. },
  392. "time": "2024-08-09T14:30:48+00:00"
  393. },
  394. {
  395. "name": "dflydev/dot-access-data",
  396. "version": "v3.0.3",
  397. "source": {
  398. "type": "git",
  399. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  400. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  401. },
  402. "dist": {
  403. "type": "zip",
  404. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  405. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  406. "shasum": ""
  407. },
  408. "require": {
  409. "php": "^7.1 || ^8.0"
  410. },
  411. "require-dev": {
  412. "phpstan/phpstan": "^0.12.42",
  413. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  414. "scrutinizer/ocular": "1.6.0",
  415. "squizlabs/php_codesniffer": "^3.5",
  416. "vimeo/psalm": "^4.0.0"
  417. },
  418. "type": "library",
  419. "extra": {
  420. "branch-alias": {
  421. "dev-main": "3.x-dev"
  422. }
  423. },
  424. "autoload": {
  425. "psr-4": {
  426. "Dflydev\\DotAccessData\\": "src/"
  427. }
  428. },
  429. "notification-url": "https://packagist.org/downloads/",
  430. "license": [
  431. "MIT"
  432. ],
  433. "authors": [
  434. {
  435. "name": "Dragonfly Development Inc.",
  436. "email": "info@dflydev.com",
  437. "homepage": "http://dflydev.com"
  438. },
  439. {
  440. "name": "Beau Simensen",
  441. "email": "beau@dflydev.com",
  442. "homepage": "http://beausimensen.com"
  443. },
  444. {
  445. "name": "Carlos Frutos",
  446. "email": "carlos@kiwing.it",
  447. "homepage": "https://github.com/cfrutos"
  448. },
  449. {
  450. "name": "Colin O'Dell",
  451. "email": "colinodell@gmail.com",
  452. "homepage": "https://www.colinodell.com"
  453. }
  454. ],
  455. "description": "Given a deep data structure, access data by dot notation.",
  456. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  457. "keywords": [
  458. "access",
  459. "data",
  460. "dot",
  461. "notation"
  462. ],
  463. "support": {
  464. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  465. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  466. },
  467. "time": "2024-07-08T12:26:09+00:00"
  468. },
  469. {
  470. "name": "doctrine/inflector",
  471. "version": "2.0.10",
  472. "source": {
  473. "type": "git",
  474. "url": "https://github.com/doctrine/inflector.git",
  475. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  476. },
  477. "dist": {
  478. "type": "zip",
  479. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  480. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  481. "shasum": ""
  482. },
  483. "require": {
  484. "php": "^7.2 || ^8.0"
  485. },
  486. "require-dev": {
  487. "doctrine/coding-standard": "^11.0",
  488. "phpstan/phpstan": "^1.8",
  489. "phpstan/phpstan-phpunit": "^1.1",
  490. "phpstan/phpstan-strict-rules": "^1.3",
  491. "phpunit/phpunit": "^8.5 || ^9.5",
  492. "vimeo/psalm": "^4.25 || ^5.4"
  493. },
  494. "type": "library",
  495. "autoload": {
  496. "psr-4": {
  497. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  498. }
  499. },
  500. "notification-url": "https://packagist.org/downloads/",
  501. "license": [
  502. "MIT"
  503. ],
  504. "authors": [
  505. {
  506. "name": "Guilherme Blanco",
  507. "email": "guilhermeblanco@gmail.com"
  508. },
  509. {
  510. "name": "Roman Borschel",
  511. "email": "roman@code-factory.org"
  512. },
  513. {
  514. "name": "Benjamin Eberlei",
  515. "email": "kontakt@beberlei.de"
  516. },
  517. {
  518. "name": "Jonathan Wage",
  519. "email": "jonwage@gmail.com"
  520. },
  521. {
  522. "name": "Johannes Schmitt",
  523. "email": "schmittjoh@gmail.com"
  524. }
  525. ],
  526. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  527. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  528. "keywords": [
  529. "inflection",
  530. "inflector",
  531. "lowercase",
  532. "manipulation",
  533. "php",
  534. "plural",
  535. "singular",
  536. "strings",
  537. "uppercase",
  538. "words"
  539. ],
  540. "support": {
  541. "issues": "https://github.com/doctrine/inflector/issues",
  542. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  543. },
  544. "funding": [
  545. {
  546. "url": "https://www.doctrine-project.org/sponsorship.html",
  547. "type": "custom"
  548. },
  549. {
  550. "url": "https://www.patreon.com/phpdoctrine",
  551. "type": "patreon"
  552. },
  553. {
  554. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  555. "type": "tidelift"
  556. }
  557. ],
  558. "time": "2024-02-18T20:23:39+00:00"
  559. },
  560. {
  561. "name": "doctrine/lexer",
  562. "version": "3.0.1",
  563. "source": {
  564. "type": "git",
  565. "url": "https://github.com/doctrine/lexer.git",
  566. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  567. },
  568. "dist": {
  569. "type": "zip",
  570. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  571. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  572. "shasum": ""
  573. },
  574. "require": {
  575. "php": "^8.1"
  576. },
  577. "require-dev": {
  578. "doctrine/coding-standard": "^12",
  579. "phpstan/phpstan": "^1.10",
  580. "phpunit/phpunit": "^10.5",
  581. "psalm/plugin-phpunit": "^0.18.3",
  582. "vimeo/psalm": "^5.21"
  583. },
  584. "type": "library",
  585. "autoload": {
  586. "psr-4": {
  587. "Doctrine\\Common\\Lexer\\": "src"
  588. }
  589. },
  590. "notification-url": "https://packagist.org/downloads/",
  591. "license": [
  592. "MIT"
  593. ],
  594. "authors": [
  595. {
  596. "name": "Guilherme Blanco",
  597. "email": "guilhermeblanco@gmail.com"
  598. },
  599. {
  600. "name": "Roman Borschel",
  601. "email": "roman@code-factory.org"
  602. },
  603. {
  604. "name": "Johannes Schmitt",
  605. "email": "schmittjoh@gmail.com"
  606. }
  607. ],
  608. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  609. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  610. "keywords": [
  611. "annotations",
  612. "docblock",
  613. "lexer",
  614. "parser",
  615. "php"
  616. ],
  617. "support": {
  618. "issues": "https://github.com/doctrine/lexer/issues",
  619. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  620. },
  621. "funding": [
  622. {
  623. "url": "https://www.doctrine-project.org/sponsorship.html",
  624. "type": "custom"
  625. },
  626. {
  627. "url": "https://www.patreon.com/phpdoctrine",
  628. "type": "patreon"
  629. },
  630. {
  631. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  632. "type": "tidelift"
  633. }
  634. ],
  635. "time": "2024-02-05T11:56:58+00:00"
  636. },
  637. {
  638. "name": "dragonmantank/cron-expression",
  639. "version": "v3.4.0",
  640. "source": {
  641. "type": "git",
  642. "url": "https://github.com/dragonmantank/cron-expression.git",
  643. "reference": "8c784d071debd117328803d86b2097615b457500"
  644. },
  645. "dist": {
  646. "type": "zip",
  647. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  648. "reference": "8c784d071debd117328803d86b2097615b457500",
  649. "shasum": ""
  650. },
  651. "require": {
  652. "php": "^7.2|^8.0",
  653. "webmozart/assert": "^1.0"
  654. },
  655. "replace": {
  656. "mtdowling/cron-expression": "^1.0"
  657. },
  658. "require-dev": {
  659. "phpstan/extension-installer": "^1.0",
  660. "phpstan/phpstan": "^1.0",
  661. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  662. },
  663. "type": "library",
  664. "extra": {
  665. "branch-alias": {
  666. "dev-master": "3.x-dev"
  667. }
  668. },
  669. "autoload": {
  670. "psr-4": {
  671. "Cron\\": "src/Cron/"
  672. }
  673. },
  674. "notification-url": "https://packagist.org/downloads/",
  675. "license": [
  676. "MIT"
  677. ],
  678. "authors": [
  679. {
  680. "name": "Chris Tankersley",
  681. "email": "chris@ctankersley.com",
  682. "homepage": "https://github.com/dragonmantank"
  683. }
  684. ],
  685. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  686. "keywords": [
  687. "cron",
  688. "schedule"
  689. ],
  690. "support": {
  691. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  692. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  693. },
  694. "funding": [
  695. {
  696. "url": "https://github.com/dragonmantank",
  697. "type": "github"
  698. }
  699. ],
  700. "time": "2024-10-09T13:47:03+00:00"
  701. },
  702. {
  703. "name": "egulias/email-validator",
  704. "version": "4.0.2",
  705. "source": {
  706. "type": "git",
  707. "url": "https://github.com/egulias/EmailValidator.git",
  708. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  709. },
  710. "dist": {
  711. "type": "zip",
  712. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  713. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  714. "shasum": ""
  715. },
  716. "require": {
  717. "doctrine/lexer": "^2.0 || ^3.0",
  718. "php": ">=8.1",
  719. "symfony/polyfill-intl-idn": "^1.26"
  720. },
  721. "require-dev": {
  722. "phpunit/phpunit": "^10.2",
  723. "vimeo/psalm": "^5.12"
  724. },
  725. "suggest": {
  726. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  727. },
  728. "type": "library",
  729. "extra": {
  730. "branch-alias": {
  731. "dev-master": "4.0.x-dev"
  732. }
  733. },
  734. "autoload": {
  735. "psr-4": {
  736. "Egulias\\EmailValidator\\": "src"
  737. }
  738. },
  739. "notification-url": "https://packagist.org/downloads/",
  740. "license": [
  741. "MIT"
  742. ],
  743. "authors": [
  744. {
  745. "name": "Eduardo Gulias Davis"
  746. }
  747. ],
  748. "description": "A library for validating emails against several RFCs",
  749. "homepage": "https://github.com/egulias/EmailValidator",
  750. "keywords": [
  751. "email",
  752. "emailvalidation",
  753. "emailvalidator",
  754. "validation",
  755. "validator"
  756. ],
  757. "support": {
  758. "issues": "https://github.com/egulias/EmailValidator/issues",
  759. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  760. },
  761. "funding": [
  762. {
  763. "url": "https://github.com/egulias",
  764. "type": "github"
  765. }
  766. ],
  767. "time": "2023-10-06T06:47:41+00:00"
  768. },
  769. {
  770. "name": "erusev/parsedown",
  771. "version": "1.7.4",
  772. "source": {
  773. "type": "git",
  774. "url": "https://github.com/erusev/parsedown.git",
  775. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  776. },
  777. "dist": {
  778. "type": "zip",
  779. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  780. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  781. "shasum": ""
  782. },
  783. "require": {
  784. "ext-mbstring": "*",
  785. "php": ">=5.3.0"
  786. },
  787. "require-dev": {
  788. "phpunit/phpunit": "^4.8.35"
  789. },
  790. "type": "library",
  791. "autoload": {
  792. "psr-0": {
  793. "Parsedown": ""
  794. }
  795. },
  796. "notification-url": "https://packagist.org/downloads/",
  797. "license": [
  798. "MIT"
  799. ],
  800. "authors": [
  801. {
  802. "name": "Emanuil Rusev",
  803. "email": "hello@erusev.com",
  804. "homepage": "http://erusev.com"
  805. }
  806. ],
  807. "description": "Parser for Markdown.",
  808. "homepage": "http://parsedown.org",
  809. "keywords": [
  810. "markdown",
  811. "parser"
  812. ],
  813. "support": {
  814. "issues": "https://github.com/erusev/parsedown/issues",
  815. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  816. },
  817. "time": "2019-12-30T22:54:17+00:00"
  818. },
  819. {
  820. "name": "fakerphp/faker",
  821. "version": "v1.24.1",
  822. "source": {
  823. "type": "git",
  824. "url": "https://github.com/FakerPHP/Faker.git",
  825. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  826. },
  827. "dist": {
  828. "type": "zip",
  829. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  830. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  831. "shasum": ""
  832. },
  833. "require": {
  834. "php": "^7.4 || ^8.0",
  835. "psr/container": "^1.0 || ^2.0",
  836. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  837. },
  838. "conflict": {
  839. "fzaninotto/faker": "*"
  840. },
  841. "require-dev": {
  842. "bamarni/composer-bin-plugin": "^1.4.1",
  843. "doctrine/persistence": "^1.3 || ^2.0",
  844. "ext-intl": "*",
  845. "phpunit/phpunit": "^9.5.26",
  846. "symfony/phpunit-bridge": "^5.4.16"
  847. },
  848. "suggest": {
  849. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  850. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  851. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  852. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  853. "ext-mbstring": "Required for multibyte Unicode string functionality."
  854. },
  855. "type": "library",
  856. "autoload": {
  857. "psr-4": {
  858. "Faker\\": "src/Faker/"
  859. }
  860. },
  861. "notification-url": "https://packagist.org/downloads/",
  862. "license": [
  863. "MIT"
  864. ],
  865. "authors": [
  866. {
  867. "name": "François Zaninotto"
  868. }
  869. ],
  870. "description": "Faker is a PHP library that generates fake data for you.",
  871. "keywords": [
  872. "data",
  873. "faker",
  874. "fixtures"
  875. ],
  876. "support": {
  877. "issues": "https://github.com/FakerPHP/Faker/issues",
  878. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  879. },
  880. "time": "2024-11-21T13:46:39+00:00"
  881. },
  882. {
  883. "name": "filp/whoops",
  884. "version": "2.16.0",
  885. "source": {
  886. "type": "git",
  887. "url": "https://github.com/filp/whoops.git",
  888. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  889. },
  890. "dist": {
  891. "type": "zip",
  892. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  893. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  894. "shasum": ""
  895. },
  896. "require": {
  897. "php": "^7.1 || ^8.0",
  898. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  899. },
  900. "require-dev": {
  901. "mockery/mockery": "^1.0",
  902. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  903. "symfony/var-dumper": "^4.0 || ^5.0"
  904. },
  905. "suggest": {
  906. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  907. "whoops/soap": "Formats errors as SOAP responses"
  908. },
  909. "type": "library",
  910. "extra": {
  911. "branch-alias": {
  912. "dev-master": "2.7-dev"
  913. }
  914. },
  915. "autoload": {
  916. "psr-4": {
  917. "Whoops\\": "src/Whoops/"
  918. }
  919. },
  920. "notification-url": "https://packagist.org/downloads/",
  921. "license": [
  922. "MIT"
  923. ],
  924. "authors": [
  925. {
  926. "name": "Filipe Dobreira",
  927. "homepage": "https://github.com/filp",
  928. "role": "Developer"
  929. }
  930. ],
  931. "description": "php error handling for cool kids",
  932. "homepage": "https://filp.github.io/whoops/",
  933. "keywords": [
  934. "error",
  935. "exception",
  936. "handling",
  937. "library",
  938. "throwable",
  939. "whoops"
  940. ],
  941. "support": {
  942. "issues": "https://github.com/filp/whoops/issues",
  943. "source": "https://github.com/filp/whoops/tree/2.16.0"
  944. },
  945. "funding": [
  946. {
  947. "url": "https://github.com/denis-sokolov",
  948. "type": "github"
  949. }
  950. ],
  951. "time": "2024-09-25T12:00:00+00:00"
  952. },
  953. {
  954. "name": "fruitcake/php-cors",
  955. "version": "v1.3.0",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/fruitcake/php-cors.git",
  959. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  964. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  965. "shasum": ""
  966. },
  967. "require": {
  968. "php": "^7.4|^8.0",
  969. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  970. },
  971. "require-dev": {
  972. "phpstan/phpstan": "^1.4",
  973. "phpunit/phpunit": "^9",
  974. "squizlabs/php_codesniffer": "^3.5"
  975. },
  976. "type": "library",
  977. "extra": {
  978. "branch-alias": {
  979. "dev-master": "1.2-dev"
  980. }
  981. },
  982. "autoload": {
  983. "psr-4": {
  984. "Fruitcake\\Cors\\": "src/"
  985. }
  986. },
  987. "notification-url": "https://packagist.org/downloads/",
  988. "license": [
  989. "MIT"
  990. ],
  991. "authors": [
  992. {
  993. "name": "Fruitcake",
  994. "homepage": "https://fruitcake.nl"
  995. },
  996. {
  997. "name": "Barryvdh",
  998. "email": "barryvdh@gmail.com"
  999. }
  1000. ],
  1001. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1002. "homepage": "https://github.com/fruitcake/php-cors",
  1003. "keywords": [
  1004. "cors",
  1005. "laravel",
  1006. "symfony"
  1007. ],
  1008. "support": {
  1009. "issues": "https://github.com/fruitcake/php-cors/issues",
  1010. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  1011. },
  1012. "funding": [
  1013. {
  1014. "url": "https://fruitcake.nl",
  1015. "type": "custom"
  1016. },
  1017. {
  1018. "url": "https://github.com/barryvdh",
  1019. "type": "github"
  1020. }
  1021. ],
  1022. "time": "2023-10-12T05:21:21+00:00"
  1023. },
  1024. {
  1025. "name": "graham-campbell/result-type",
  1026. "version": "v1.1.3",
  1027. "source": {
  1028. "type": "git",
  1029. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1030. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  1031. },
  1032. "dist": {
  1033. "type": "zip",
  1034. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  1035. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  1036. "shasum": ""
  1037. },
  1038. "require": {
  1039. "php": "^7.2.5 || ^8.0",
  1040. "phpoption/phpoption": "^1.9.3"
  1041. },
  1042. "require-dev": {
  1043. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  1044. },
  1045. "type": "library",
  1046. "autoload": {
  1047. "psr-4": {
  1048. "GrahamCampbell\\ResultType\\": "src/"
  1049. }
  1050. },
  1051. "notification-url": "https://packagist.org/downloads/",
  1052. "license": [
  1053. "MIT"
  1054. ],
  1055. "authors": [
  1056. {
  1057. "name": "Graham Campbell",
  1058. "email": "hello@gjcampbell.co.uk",
  1059. "homepage": "https://github.com/GrahamCampbell"
  1060. }
  1061. ],
  1062. "description": "An Implementation Of The Result Type",
  1063. "keywords": [
  1064. "Graham Campbell",
  1065. "GrahamCampbell",
  1066. "Result Type",
  1067. "Result-Type",
  1068. "result"
  1069. ],
  1070. "support": {
  1071. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1072. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  1073. },
  1074. "funding": [
  1075. {
  1076. "url": "https://github.com/GrahamCampbell",
  1077. "type": "github"
  1078. },
  1079. {
  1080. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1081. "type": "tidelift"
  1082. }
  1083. ],
  1084. "time": "2024-07-20T21:45:45+00:00"
  1085. },
  1086. {
  1087. "name": "guzzlehttp/guzzle",
  1088. "version": "7.9.2",
  1089. "source": {
  1090. "type": "git",
  1091. "url": "https://github.com/guzzle/guzzle.git",
  1092. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1093. },
  1094. "dist": {
  1095. "type": "zip",
  1096. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1097. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1098. "shasum": ""
  1099. },
  1100. "require": {
  1101. "ext-json": "*",
  1102. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1103. "guzzlehttp/psr7": "^2.7.0",
  1104. "php": "^7.2.5 || ^8.0",
  1105. "psr/http-client": "^1.0",
  1106. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1107. },
  1108. "provide": {
  1109. "psr/http-client-implementation": "1.0"
  1110. },
  1111. "require-dev": {
  1112. "bamarni/composer-bin-plugin": "^1.8.2",
  1113. "ext-curl": "*",
  1114. "guzzle/client-integration-tests": "3.0.2",
  1115. "php-http/message-factory": "^1.1",
  1116. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1117. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1118. },
  1119. "suggest": {
  1120. "ext-curl": "Required for CURL handler support",
  1121. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1122. "psr/log": "Required for using the Log middleware"
  1123. },
  1124. "type": "library",
  1125. "extra": {
  1126. "bamarni-bin": {
  1127. "bin-links": true,
  1128. "forward-command": false
  1129. }
  1130. },
  1131. "autoload": {
  1132. "files": [
  1133. "src/functions_include.php"
  1134. ],
  1135. "psr-4": {
  1136. "GuzzleHttp\\": "src/"
  1137. }
  1138. },
  1139. "notification-url": "https://packagist.org/downloads/",
  1140. "license": [
  1141. "MIT"
  1142. ],
  1143. "authors": [
  1144. {
  1145. "name": "Graham Campbell",
  1146. "email": "hello@gjcampbell.co.uk",
  1147. "homepage": "https://github.com/GrahamCampbell"
  1148. },
  1149. {
  1150. "name": "Michael Dowling",
  1151. "email": "mtdowling@gmail.com",
  1152. "homepage": "https://github.com/mtdowling"
  1153. },
  1154. {
  1155. "name": "Jeremy Lindblom",
  1156. "email": "jeremeamia@gmail.com",
  1157. "homepage": "https://github.com/jeremeamia"
  1158. },
  1159. {
  1160. "name": "George Mponos",
  1161. "email": "gmponos@gmail.com",
  1162. "homepage": "https://github.com/gmponos"
  1163. },
  1164. {
  1165. "name": "Tobias Nyholm",
  1166. "email": "tobias.nyholm@gmail.com",
  1167. "homepage": "https://github.com/Nyholm"
  1168. },
  1169. {
  1170. "name": "Márk Sági-Kazár",
  1171. "email": "mark.sagikazar@gmail.com",
  1172. "homepage": "https://github.com/sagikazarmark"
  1173. },
  1174. {
  1175. "name": "Tobias Schultze",
  1176. "email": "webmaster@tubo-world.de",
  1177. "homepage": "https://github.com/Tobion"
  1178. }
  1179. ],
  1180. "description": "Guzzle is a PHP HTTP client library",
  1181. "keywords": [
  1182. "client",
  1183. "curl",
  1184. "framework",
  1185. "http",
  1186. "http client",
  1187. "psr-18",
  1188. "psr-7",
  1189. "rest",
  1190. "web service"
  1191. ],
  1192. "support": {
  1193. "issues": "https://github.com/guzzle/guzzle/issues",
  1194. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1195. },
  1196. "funding": [
  1197. {
  1198. "url": "https://github.com/GrahamCampbell",
  1199. "type": "github"
  1200. },
  1201. {
  1202. "url": "https://github.com/Nyholm",
  1203. "type": "github"
  1204. },
  1205. {
  1206. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1207. "type": "tidelift"
  1208. }
  1209. ],
  1210. "time": "2024-07-24T11:22:20+00:00"
  1211. },
  1212. {
  1213. "name": "guzzlehttp/promises",
  1214. "version": "2.0.4",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/guzzle/promises.git",
  1218. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1223. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "php": "^7.2.5 || ^8.0"
  1228. },
  1229. "require-dev": {
  1230. "bamarni/composer-bin-plugin": "^1.8.2",
  1231. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1232. },
  1233. "type": "library",
  1234. "extra": {
  1235. "bamarni-bin": {
  1236. "bin-links": true,
  1237. "forward-command": false
  1238. }
  1239. },
  1240. "autoload": {
  1241. "psr-4": {
  1242. "GuzzleHttp\\Promise\\": "src/"
  1243. }
  1244. },
  1245. "notification-url": "https://packagist.org/downloads/",
  1246. "license": [
  1247. "MIT"
  1248. ],
  1249. "authors": [
  1250. {
  1251. "name": "Graham Campbell",
  1252. "email": "hello@gjcampbell.co.uk",
  1253. "homepage": "https://github.com/GrahamCampbell"
  1254. },
  1255. {
  1256. "name": "Michael Dowling",
  1257. "email": "mtdowling@gmail.com",
  1258. "homepage": "https://github.com/mtdowling"
  1259. },
  1260. {
  1261. "name": "Tobias Nyholm",
  1262. "email": "tobias.nyholm@gmail.com",
  1263. "homepage": "https://github.com/Nyholm"
  1264. },
  1265. {
  1266. "name": "Tobias Schultze",
  1267. "email": "webmaster@tubo-world.de",
  1268. "homepage": "https://github.com/Tobion"
  1269. }
  1270. ],
  1271. "description": "Guzzle promises library",
  1272. "keywords": [
  1273. "promise"
  1274. ],
  1275. "support": {
  1276. "issues": "https://github.com/guzzle/promises/issues",
  1277. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  1278. },
  1279. "funding": [
  1280. {
  1281. "url": "https://github.com/GrahamCampbell",
  1282. "type": "github"
  1283. },
  1284. {
  1285. "url": "https://github.com/Nyholm",
  1286. "type": "github"
  1287. },
  1288. {
  1289. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1290. "type": "tidelift"
  1291. }
  1292. ],
  1293. "time": "2024-10-17T10:06:22+00:00"
  1294. },
  1295. {
  1296. "name": "guzzlehttp/psr7",
  1297. "version": "2.7.0",
  1298. "source": {
  1299. "type": "git",
  1300. "url": "https://github.com/guzzle/psr7.git",
  1301. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1302. },
  1303. "dist": {
  1304. "type": "zip",
  1305. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1306. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1307. "shasum": ""
  1308. },
  1309. "require": {
  1310. "php": "^7.2.5 || ^8.0",
  1311. "psr/http-factory": "^1.0",
  1312. "psr/http-message": "^1.1 || ^2.0",
  1313. "ralouphie/getallheaders": "^3.0"
  1314. },
  1315. "provide": {
  1316. "psr/http-factory-implementation": "1.0",
  1317. "psr/http-message-implementation": "1.0"
  1318. },
  1319. "require-dev": {
  1320. "bamarni/composer-bin-plugin": "^1.8.2",
  1321. "http-interop/http-factory-tests": "0.9.0",
  1322. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1323. },
  1324. "suggest": {
  1325. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1326. },
  1327. "type": "library",
  1328. "extra": {
  1329. "bamarni-bin": {
  1330. "bin-links": true,
  1331. "forward-command": false
  1332. }
  1333. },
  1334. "autoload": {
  1335. "psr-4": {
  1336. "GuzzleHttp\\Psr7\\": "src/"
  1337. }
  1338. },
  1339. "notification-url": "https://packagist.org/downloads/",
  1340. "license": [
  1341. "MIT"
  1342. ],
  1343. "authors": [
  1344. {
  1345. "name": "Graham Campbell",
  1346. "email": "hello@gjcampbell.co.uk",
  1347. "homepage": "https://github.com/GrahamCampbell"
  1348. },
  1349. {
  1350. "name": "Michael Dowling",
  1351. "email": "mtdowling@gmail.com",
  1352. "homepage": "https://github.com/mtdowling"
  1353. },
  1354. {
  1355. "name": "George Mponos",
  1356. "email": "gmponos@gmail.com",
  1357. "homepage": "https://github.com/gmponos"
  1358. },
  1359. {
  1360. "name": "Tobias Nyholm",
  1361. "email": "tobias.nyholm@gmail.com",
  1362. "homepage": "https://github.com/Nyholm"
  1363. },
  1364. {
  1365. "name": "Márk Sági-Kazár",
  1366. "email": "mark.sagikazar@gmail.com",
  1367. "homepage": "https://github.com/sagikazarmark"
  1368. },
  1369. {
  1370. "name": "Tobias Schultze",
  1371. "email": "webmaster@tubo-world.de",
  1372. "homepage": "https://github.com/Tobion"
  1373. },
  1374. {
  1375. "name": "Márk Sági-Kazár",
  1376. "email": "mark.sagikazar@gmail.com",
  1377. "homepage": "https://sagikazarmark.hu"
  1378. }
  1379. ],
  1380. "description": "PSR-7 message implementation that also provides common utility methods",
  1381. "keywords": [
  1382. "http",
  1383. "message",
  1384. "psr-7",
  1385. "request",
  1386. "response",
  1387. "stream",
  1388. "uri",
  1389. "url"
  1390. ],
  1391. "support": {
  1392. "issues": "https://github.com/guzzle/psr7/issues",
  1393. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1394. },
  1395. "funding": [
  1396. {
  1397. "url": "https://github.com/GrahamCampbell",
  1398. "type": "github"
  1399. },
  1400. {
  1401. "url": "https://github.com/Nyholm",
  1402. "type": "github"
  1403. },
  1404. {
  1405. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1406. "type": "tidelift"
  1407. }
  1408. ],
  1409. "time": "2024-07-18T11:15:46+00:00"
  1410. },
  1411. {
  1412. "name": "guzzlehttp/uri-template",
  1413. "version": "v1.0.3",
  1414. "source": {
  1415. "type": "git",
  1416. "url": "https://github.com/guzzle/uri-template.git",
  1417. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1418. },
  1419. "dist": {
  1420. "type": "zip",
  1421. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1422. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1423. "shasum": ""
  1424. },
  1425. "require": {
  1426. "php": "^7.2.5 || ^8.0",
  1427. "symfony/polyfill-php80": "^1.24"
  1428. },
  1429. "require-dev": {
  1430. "bamarni/composer-bin-plugin": "^1.8.2",
  1431. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1432. "uri-template/tests": "1.0.0"
  1433. },
  1434. "type": "library",
  1435. "extra": {
  1436. "bamarni-bin": {
  1437. "bin-links": true,
  1438. "forward-command": false
  1439. }
  1440. },
  1441. "autoload": {
  1442. "psr-4": {
  1443. "GuzzleHttp\\UriTemplate\\": "src"
  1444. }
  1445. },
  1446. "notification-url": "https://packagist.org/downloads/",
  1447. "license": [
  1448. "MIT"
  1449. ],
  1450. "authors": [
  1451. {
  1452. "name": "Graham Campbell",
  1453. "email": "hello@gjcampbell.co.uk",
  1454. "homepage": "https://github.com/GrahamCampbell"
  1455. },
  1456. {
  1457. "name": "Michael Dowling",
  1458. "email": "mtdowling@gmail.com",
  1459. "homepage": "https://github.com/mtdowling"
  1460. },
  1461. {
  1462. "name": "George Mponos",
  1463. "email": "gmponos@gmail.com",
  1464. "homepage": "https://github.com/gmponos"
  1465. },
  1466. {
  1467. "name": "Tobias Nyholm",
  1468. "email": "tobias.nyholm@gmail.com",
  1469. "homepage": "https://github.com/Nyholm"
  1470. }
  1471. ],
  1472. "description": "A polyfill class for uri_template of PHP",
  1473. "keywords": [
  1474. "guzzlehttp",
  1475. "uri-template"
  1476. ],
  1477. "support": {
  1478. "issues": "https://github.com/guzzle/uri-template/issues",
  1479. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  1480. },
  1481. "funding": [
  1482. {
  1483. "url": "https://github.com/GrahamCampbell",
  1484. "type": "github"
  1485. },
  1486. {
  1487. "url": "https://github.com/Nyholm",
  1488. "type": "github"
  1489. },
  1490. {
  1491. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1492. "type": "tidelift"
  1493. }
  1494. ],
  1495. "time": "2023-12-03T19:50:20+00:00"
  1496. },
  1497. {
  1498. "name": "huifurepo/dg-php-sdk",
  1499. "version": "2.0.14",
  1500. "source": {
  1501. "type": "git",
  1502. "url": "https://github.com/huifurepo/bspay-php-sdk.git",
  1503. "reference": "b64924cbd9dfd7490164eff926bf651e48f8ae2c"
  1504. },
  1505. "dist": {
  1506. "type": "zip",
  1507. "url": "https://api.github.com/repos/huifurepo/bspay-php-sdk/zipball/b64924cbd9dfd7490164eff926bf651e48f8ae2c",
  1508. "reference": "b64924cbd9dfd7490164eff926bf651e48f8ae2c",
  1509. "shasum": ""
  1510. },
  1511. "type": "library",
  1512. "notification-url": "https://packagist.org/downloads/",
  1513. "license": [
  1514. "MIT"
  1515. ],
  1516. "description": "汇付天下斗拱SDK-PHP版",
  1517. "support": {
  1518. "issues": "https://github.com/huifurepo/bspay-php-sdk/issues",
  1519. "source": "https://github.com/huifurepo/bspay-php-sdk/tree/2.0.14"
  1520. },
  1521. "time": "2024-11-07T10:27:56+00:00"
  1522. },
  1523. {
  1524. "name": "iconify/json",
  1525. "version": "2.2.276",
  1526. "source": {
  1527. "type": "git",
  1528. "url": "https://github.com/iconify/icon-sets.git",
  1529. "reference": "aea1e648b6d28c7f95c3afb0eaf1338cffb0d980"
  1530. },
  1531. "dist": {
  1532. "type": "zip",
  1533. "url": "https://api.github.com/repos/iconify/icon-sets/zipball/aea1e648b6d28c7f95c3afb0eaf1338cffb0d980",
  1534. "reference": "aea1e648b6d28c7f95c3afb0eaf1338cffb0d980",
  1535. "shasum": ""
  1536. },
  1537. "type": "library",
  1538. "autoload": {
  1539. "psr-4": {
  1540. "Iconify\\IconsJSON\\": "lib"
  1541. }
  1542. },
  1543. "notification-url": "https://packagist.org/downloads/",
  1544. "license": [
  1545. "MIT"
  1546. ],
  1547. "description": "Iconify icons collection in JSON format",
  1548. "homepage": "https://iconify.design/icon-sets/",
  1549. "support": {
  1550. "issues": "https://github.com/iconify/icon-sets/issues",
  1551. "source": "https://github.com/iconify/icon-sets/tree/2.2.276"
  1552. },
  1553. "time": "2024-11-25T06:57:03+00:00"
  1554. },
  1555. {
  1556. "name": "iwzh/owl-scheduling",
  1557. "version": "1.0.2",
  1558. "source": {
  1559. "type": "git",
  1560. "url": "https://gitee.com/wzhec/owl-scheduling",
  1561. "reference": "61478147d286fddb2e0634c4d11acda862db851d"
  1562. },
  1563. "require": {
  1564. "php": ">=8.0",
  1565. "slowlyo/owl-admin": "*"
  1566. },
  1567. "type": "library",
  1568. "extra": {
  1569. "owl-admin": "Iwzh\\owlScheduling\\OwlSchedulingServiceProvider",
  1570. "laravel": {
  1571. "providers": [
  1572. "Iwzh\\owlScheduling\\OwlSchedulingServiceProvider"
  1573. ]
  1574. }
  1575. },
  1576. "autoload": {
  1577. "psr-4": {
  1578. "Iwzh\\owlScheduling\\": "src/"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "wzh",
  1588. "email": "wzhec@foxmail.com"
  1589. }
  1590. ],
  1591. "description": "OwlAdmin扩展:方便管理 laravel 的定时任务",
  1592. "homepage": "https://gitee.com/wzhec/owl-scheduling",
  1593. "keywords": [
  1594. "extension",
  1595. "owl-admin"
  1596. ],
  1597. "time": "2023-05-12T02:57:41+00:00"
  1598. },
  1599. {
  1600. "name": "knuckleswtf/scribe",
  1601. "version": "4.38.0",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://github.com/knuckleswtf/scribe.git",
  1605. "reference": "da667aafb6804b4b599ac6506bb178bfa5434802"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://api.github.com/repos/knuckleswtf/scribe/zipball/da667aafb6804b4b599ac6506bb178bfa5434802",
  1610. "reference": "da667aafb6804b4b599ac6506bb178bfa5434802",
  1611. "shasum": ""
  1612. },
  1613. "require": {
  1614. "erusev/parsedown": "1.7.4",
  1615. "ext-fileinfo": "*",
  1616. "ext-json": "*",
  1617. "ext-pdo": "*",
  1618. "fakerphp/faker": "^1.9.1",
  1619. "illuminate/console": "^8.0|^9.0|^10.0|^11.0",
  1620. "illuminate/routing": "^8.0|^9.0|^10.0|^11.0",
  1621. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1622. "league/flysystem": "^1.1.4|^2.1.1|^3.0",
  1623. "mpociot/reflection-docblock": "^1.0.1",
  1624. "nikic/php-parser": "^5.0",
  1625. "nunomaduro/collision": "^5.10|^6.0|^7.0|^8.0",
  1626. "php": ">=8.0",
  1627. "ramsey/uuid": "^4.2.2",
  1628. "shalvah/clara": "^3.1.0",
  1629. "shalvah/upgrader": ">=0.6.0",
  1630. "spatie/data-transfer-object": "^2.6|^3.0",
  1631. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  1632. "symfony/yaml": "^5.4|^6.0|^7.0"
  1633. },
  1634. "replace": {
  1635. "mpociot/laravel-apidoc-generator": "*"
  1636. },
  1637. "require-dev": {
  1638. "brianium/paratest": "^6.0",
  1639. "dms/phpunit-arraysubset-asserts": "^0.4",
  1640. "laravel/legacy-factories": "^1.3.0",
  1641. "laravel/lumen-framework": "^8.0|^9.0|^10.0",
  1642. "league/fractal": "^0.20",
  1643. "nikic/fast-route": "^1.3",
  1644. "orchestra/testbench": "^6.0|^7.0|^8.0",
  1645. "pestphp/pest": "^1.21",
  1646. "phpstan/phpstan": "^1.0",
  1647. "phpunit/phpunit": "^9.0|^10.0",
  1648. "symfony/css-selector": "^5.4|^6.0",
  1649. "symfony/dom-crawler": "^5.4|^6.0"
  1650. },
  1651. "type": "library",
  1652. "extra": {
  1653. "laravel": {
  1654. "providers": [
  1655. "Knuckles\\Scribe\\ScribeServiceProvider"
  1656. ]
  1657. }
  1658. },
  1659. "autoload": {
  1660. "psr-4": {
  1661. "Knuckles\\Camel\\": "camel/",
  1662. "Knuckles\\Scribe\\": "src/"
  1663. }
  1664. },
  1665. "notification-url": "https://packagist.org/downloads/",
  1666. "license": [
  1667. "MIT"
  1668. ],
  1669. "authors": [
  1670. {
  1671. "name": "Shalvah"
  1672. }
  1673. ],
  1674. "description": "Generate API documentation for humans from your Laravel codebase.✍",
  1675. "homepage": "http://github.com/knuckleswtf/scribe",
  1676. "keywords": [
  1677. "api",
  1678. "dingo",
  1679. "documentation",
  1680. "laravel"
  1681. ],
  1682. "support": {
  1683. "issues": "https://github.com/knuckleswtf/scribe/issues",
  1684. "source": "https://github.com/knuckleswtf/scribe/tree/4.38.0"
  1685. },
  1686. "funding": [
  1687. {
  1688. "url": "https://patreon.com/shalvah",
  1689. "type": "patreon"
  1690. }
  1691. ],
  1692. "time": "2024-10-18T20:16:40+00:00"
  1693. },
  1694. {
  1695. "name": "laravel/framework",
  1696. "version": "v11.30.0",
  1697. "source": {
  1698. "type": "git",
  1699. "url": "https://github.com/laravel/framework.git",
  1700. "reference": "dff716442d9c229d716be82ccc9a7de52eb97193"
  1701. },
  1702. "dist": {
  1703. "type": "zip",
  1704. "url": "https://api.github.com/repos/laravel/framework/zipball/dff716442d9c229d716be82ccc9a7de52eb97193",
  1705. "reference": "dff716442d9c229d716be82ccc9a7de52eb97193",
  1706. "shasum": ""
  1707. },
  1708. "require": {
  1709. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  1710. "composer-runtime-api": "^2.2",
  1711. "doctrine/inflector": "^2.0.5",
  1712. "dragonmantank/cron-expression": "^3.3.2",
  1713. "egulias/email-validator": "^3.2.1|^4.0",
  1714. "ext-ctype": "*",
  1715. "ext-filter": "*",
  1716. "ext-hash": "*",
  1717. "ext-mbstring": "*",
  1718. "ext-openssl": "*",
  1719. "ext-session": "*",
  1720. "ext-tokenizer": "*",
  1721. "fruitcake/php-cors": "^1.3",
  1722. "guzzlehttp/guzzle": "^7.8",
  1723. "guzzlehttp/uri-template": "^1.0",
  1724. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  1725. "laravel/serializable-closure": "^1.3",
  1726. "league/commonmark": "^2.2.1",
  1727. "league/flysystem": "^3.8.0",
  1728. "monolog/monolog": "^3.0",
  1729. "nesbot/carbon": "^2.72.2|^3.0",
  1730. "nunomaduro/termwind": "^2.0",
  1731. "php": "^8.2",
  1732. "psr/container": "^1.1.1|^2.0.1",
  1733. "psr/log": "^1.0|^2.0|^3.0",
  1734. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1735. "ramsey/uuid": "^4.7",
  1736. "symfony/console": "^7.0",
  1737. "symfony/error-handler": "^7.0",
  1738. "symfony/finder": "^7.0",
  1739. "symfony/http-foundation": "^7.0",
  1740. "symfony/http-kernel": "^7.0",
  1741. "symfony/mailer": "^7.0",
  1742. "symfony/mime": "^7.0",
  1743. "symfony/polyfill-php83": "^1.28",
  1744. "symfony/process": "^7.0",
  1745. "symfony/routing": "^7.0",
  1746. "symfony/uid": "^7.0",
  1747. "symfony/var-dumper": "^7.0",
  1748. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1749. "vlucas/phpdotenv": "^5.4.1",
  1750. "voku/portable-ascii": "^2.0"
  1751. },
  1752. "conflict": {
  1753. "mockery/mockery": "1.6.8",
  1754. "tightenco/collect": "<5.5.33"
  1755. },
  1756. "provide": {
  1757. "psr/container-implementation": "1.1|2.0",
  1758. "psr/log-implementation": "1.0|2.0|3.0",
  1759. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1760. },
  1761. "replace": {
  1762. "illuminate/auth": "self.version",
  1763. "illuminate/broadcasting": "self.version",
  1764. "illuminate/bus": "self.version",
  1765. "illuminate/cache": "self.version",
  1766. "illuminate/collections": "self.version",
  1767. "illuminate/concurrency": "self.version",
  1768. "illuminate/conditionable": "self.version",
  1769. "illuminate/config": "self.version",
  1770. "illuminate/console": "self.version",
  1771. "illuminate/container": "self.version",
  1772. "illuminate/contracts": "self.version",
  1773. "illuminate/cookie": "self.version",
  1774. "illuminate/database": "self.version",
  1775. "illuminate/encryption": "self.version",
  1776. "illuminate/events": "self.version",
  1777. "illuminate/filesystem": "self.version",
  1778. "illuminate/hashing": "self.version",
  1779. "illuminate/http": "self.version",
  1780. "illuminate/log": "self.version",
  1781. "illuminate/macroable": "self.version",
  1782. "illuminate/mail": "self.version",
  1783. "illuminate/notifications": "self.version",
  1784. "illuminate/pagination": "self.version",
  1785. "illuminate/pipeline": "self.version",
  1786. "illuminate/process": "self.version",
  1787. "illuminate/queue": "self.version",
  1788. "illuminate/redis": "self.version",
  1789. "illuminate/routing": "self.version",
  1790. "illuminate/session": "self.version",
  1791. "illuminate/support": "self.version",
  1792. "illuminate/testing": "self.version",
  1793. "illuminate/translation": "self.version",
  1794. "illuminate/validation": "self.version",
  1795. "illuminate/view": "self.version",
  1796. "spatie/once": "*"
  1797. },
  1798. "require-dev": {
  1799. "ably/ably-php": "^1.0",
  1800. "aws/aws-sdk-php": "^3.235.5",
  1801. "ext-gmp": "*",
  1802. "fakerphp/faker": "^1.23",
  1803. "league/flysystem-aws-s3-v3": "^3.0",
  1804. "league/flysystem-ftp": "^3.0",
  1805. "league/flysystem-path-prefixing": "^3.3",
  1806. "league/flysystem-read-only": "^3.3",
  1807. "league/flysystem-sftp-v3": "^3.0",
  1808. "mockery/mockery": "^1.6",
  1809. "nyholm/psr7": "^1.2",
  1810. "orchestra/testbench-core": "^9.5",
  1811. "pda/pheanstalk": "^5.0",
  1812. "phpstan/phpstan": "^1.11.5",
  1813. "phpunit/phpunit": "^10.5|^11.0",
  1814. "predis/predis": "^2.0.2",
  1815. "resend/resend-php": "^0.10.0",
  1816. "symfony/cache": "^7.0",
  1817. "symfony/http-client": "^7.0",
  1818. "symfony/psr-http-message-bridge": "^7.0"
  1819. },
  1820. "suggest": {
  1821. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1822. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  1823. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  1824. "ext-apcu": "Required to use the APC cache driver.",
  1825. "ext-fileinfo": "Required to use the Filesystem class.",
  1826. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1827. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1828. "ext-memcached": "Required to use the memcache cache driver.",
  1829. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  1830. "ext-pdo": "Required to use all database features.",
  1831. "ext-posix": "Required to use all features of the queue worker.",
  1832. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  1833. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1834. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1835. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1836. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1837. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1838. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1839. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1840. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1841. "mockery/mockery": "Required to use mocking (^1.6).",
  1842. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1843. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  1844. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  1845. "predis/predis": "Required to use the predis connector (^2.0.2).",
  1846. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1847. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1848. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  1849. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  1850. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  1851. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  1852. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  1853. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  1854. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  1855. },
  1856. "type": "library",
  1857. "extra": {
  1858. "branch-alias": {
  1859. "dev-master": "11.x-dev"
  1860. }
  1861. },
  1862. "autoload": {
  1863. "files": [
  1864. "src/Illuminate/Collections/helpers.php",
  1865. "src/Illuminate/Events/functions.php",
  1866. "src/Illuminate/Filesystem/functions.php",
  1867. "src/Illuminate/Foundation/helpers.php",
  1868. "src/Illuminate/Log/functions.php",
  1869. "src/Illuminate/Support/functions.php",
  1870. "src/Illuminate/Support/helpers.php"
  1871. ],
  1872. "psr-4": {
  1873. "Illuminate\\": "src/Illuminate/",
  1874. "Illuminate\\Support\\": [
  1875. "src/Illuminate/Macroable/",
  1876. "src/Illuminate/Collections/",
  1877. "src/Illuminate/Conditionable/"
  1878. ]
  1879. }
  1880. },
  1881. "notification-url": "https://packagist.org/downloads/",
  1882. "license": [
  1883. "MIT"
  1884. ],
  1885. "authors": [
  1886. {
  1887. "name": "Taylor Otwell",
  1888. "email": "taylor@laravel.com"
  1889. }
  1890. ],
  1891. "description": "The Laravel Framework.",
  1892. "homepage": "https://laravel.com",
  1893. "keywords": [
  1894. "framework",
  1895. "laravel"
  1896. ],
  1897. "support": {
  1898. "issues": "https://github.com/laravel/framework/issues",
  1899. "source": "https://github.com/laravel/framework"
  1900. },
  1901. "time": "2024-10-30T15:00:34+00:00"
  1902. },
  1903. {
  1904. "name": "laravel/prompts",
  1905. "version": "v0.3.2",
  1906. "source": {
  1907. "type": "git",
  1908. "url": "https://github.com/laravel/prompts.git",
  1909. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f"
  1910. },
  1911. "dist": {
  1912. "type": "zip",
  1913. "url": "https://api.github.com/repos/laravel/prompts/zipball/0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  1914. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  1915. "shasum": ""
  1916. },
  1917. "require": {
  1918. "composer-runtime-api": "^2.2",
  1919. "ext-mbstring": "*",
  1920. "php": "^8.1",
  1921. "symfony/console": "^6.2|^7.0"
  1922. },
  1923. "conflict": {
  1924. "illuminate/console": ">=10.17.0 <10.25.0",
  1925. "laravel/framework": ">=10.17.0 <10.25.0"
  1926. },
  1927. "require-dev": {
  1928. "illuminate/collections": "^10.0|^11.0",
  1929. "mockery/mockery": "^1.5",
  1930. "pestphp/pest": "^2.3|^3.4",
  1931. "phpstan/phpstan": "^1.11",
  1932. "phpstan/phpstan-mockery": "^1.1"
  1933. },
  1934. "suggest": {
  1935. "ext-pcntl": "Required for the spinner to be animated."
  1936. },
  1937. "type": "library",
  1938. "extra": {
  1939. "branch-alias": {
  1940. "dev-main": "0.3.x-dev"
  1941. }
  1942. },
  1943. "autoload": {
  1944. "files": [
  1945. "src/helpers.php"
  1946. ],
  1947. "psr-4": {
  1948. "Laravel\\Prompts\\": "src/"
  1949. }
  1950. },
  1951. "notification-url": "https://packagist.org/downloads/",
  1952. "license": [
  1953. "MIT"
  1954. ],
  1955. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  1956. "support": {
  1957. "issues": "https://github.com/laravel/prompts/issues",
  1958. "source": "https://github.com/laravel/prompts/tree/v0.3.2"
  1959. },
  1960. "time": "2024-11-12T14:59:47+00:00"
  1961. },
  1962. {
  1963. "name": "laravel/sanctum",
  1964. "version": "v4.0.5",
  1965. "source": {
  1966. "type": "git",
  1967. "url": "https://github.com/laravel/sanctum.git",
  1968. "reference": "fe361b9a63407a228f884eb78d7217f680b50140"
  1969. },
  1970. "dist": {
  1971. "type": "zip",
  1972. "url": "https://api.github.com/repos/laravel/sanctum/zipball/fe361b9a63407a228f884eb78d7217f680b50140",
  1973. "reference": "fe361b9a63407a228f884eb78d7217f680b50140",
  1974. "shasum": ""
  1975. },
  1976. "require": {
  1977. "ext-json": "*",
  1978. "illuminate/console": "^11.0",
  1979. "illuminate/contracts": "^11.0",
  1980. "illuminate/database": "^11.0",
  1981. "illuminate/support": "^11.0",
  1982. "php": "^8.2",
  1983. "symfony/console": "^7.0"
  1984. },
  1985. "require-dev": {
  1986. "mockery/mockery": "^1.6",
  1987. "orchestra/testbench": "^9.0",
  1988. "phpstan/phpstan": "^1.10",
  1989. "phpunit/phpunit": "^10.5"
  1990. },
  1991. "type": "library",
  1992. "extra": {
  1993. "laravel": {
  1994. "providers": [
  1995. "Laravel\\Sanctum\\SanctumServiceProvider"
  1996. ]
  1997. }
  1998. },
  1999. "autoload": {
  2000. "psr-4": {
  2001. "Laravel\\Sanctum\\": "src/"
  2002. }
  2003. },
  2004. "notification-url": "https://packagist.org/downloads/",
  2005. "license": [
  2006. "MIT"
  2007. ],
  2008. "authors": [
  2009. {
  2010. "name": "Taylor Otwell",
  2011. "email": "taylor@laravel.com"
  2012. }
  2013. ],
  2014. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2015. "keywords": [
  2016. "auth",
  2017. "laravel",
  2018. "sanctum"
  2019. ],
  2020. "support": {
  2021. "issues": "https://github.com/laravel/sanctum/issues",
  2022. "source": "https://github.com/laravel/sanctum"
  2023. },
  2024. "time": "2024-11-26T14:36:23+00:00"
  2025. },
  2026. {
  2027. "name": "laravel/serializable-closure",
  2028. "version": "v1.3.7",
  2029. "source": {
  2030. "type": "git",
  2031. "url": "https://github.com/laravel/serializable-closure.git",
  2032. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  2033. },
  2034. "dist": {
  2035. "type": "zip",
  2036. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  2037. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  2038. "shasum": ""
  2039. },
  2040. "require": {
  2041. "php": "^7.3|^8.0"
  2042. },
  2043. "require-dev": {
  2044. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  2045. "nesbot/carbon": "^2.61|^3.0",
  2046. "pestphp/pest": "^1.21.3",
  2047. "phpstan/phpstan": "^1.8.2",
  2048. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  2049. },
  2050. "type": "library",
  2051. "extra": {
  2052. "branch-alias": {
  2053. "dev-master": "1.x-dev"
  2054. }
  2055. },
  2056. "autoload": {
  2057. "psr-4": {
  2058. "Laravel\\SerializableClosure\\": "src/"
  2059. }
  2060. },
  2061. "notification-url": "https://packagist.org/downloads/",
  2062. "license": [
  2063. "MIT"
  2064. ],
  2065. "authors": [
  2066. {
  2067. "name": "Taylor Otwell",
  2068. "email": "taylor@laravel.com"
  2069. },
  2070. {
  2071. "name": "Nuno Maduro",
  2072. "email": "nuno@laravel.com"
  2073. }
  2074. ],
  2075. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2076. "keywords": [
  2077. "closure",
  2078. "laravel",
  2079. "serializable"
  2080. ],
  2081. "support": {
  2082. "issues": "https://github.com/laravel/serializable-closure/issues",
  2083. "source": "https://github.com/laravel/serializable-closure"
  2084. },
  2085. "time": "2024-11-14T18:34:49+00:00"
  2086. },
  2087. {
  2088. "name": "laravel/tinker",
  2089. "version": "v2.10.0",
  2090. "source": {
  2091. "type": "git",
  2092. "url": "https://github.com/laravel/tinker.git",
  2093. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  2094. },
  2095. "dist": {
  2096. "type": "zip",
  2097. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2098. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2099. "shasum": ""
  2100. },
  2101. "require": {
  2102. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2103. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2104. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2105. "php": "^7.2.5|^8.0",
  2106. "psy/psysh": "^0.11.1|^0.12.0",
  2107. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2108. },
  2109. "require-dev": {
  2110. "mockery/mockery": "~1.3.3|^1.4.2",
  2111. "phpstan/phpstan": "^1.10",
  2112. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2113. },
  2114. "suggest": {
  2115. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2116. },
  2117. "type": "library",
  2118. "extra": {
  2119. "laravel": {
  2120. "providers": [
  2121. "Laravel\\Tinker\\TinkerServiceProvider"
  2122. ]
  2123. }
  2124. },
  2125. "autoload": {
  2126. "psr-4": {
  2127. "Laravel\\Tinker\\": "src/"
  2128. }
  2129. },
  2130. "notification-url": "https://packagist.org/downloads/",
  2131. "license": [
  2132. "MIT"
  2133. ],
  2134. "authors": [
  2135. {
  2136. "name": "Taylor Otwell",
  2137. "email": "taylor@laravel.com"
  2138. }
  2139. ],
  2140. "description": "Powerful REPL for the Laravel framework.",
  2141. "keywords": [
  2142. "REPL",
  2143. "Tinker",
  2144. "laravel",
  2145. "psysh"
  2146. ],
  2147. "support": {
  2148. "issues": "https://github.com/laravel/tinker/issues",
  2149. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  2150. },
  2151. "time": "2024-09-23T13:32:56+00:00"
  2152. },
  2153. {
  2154. "name": "league/commonmark",
  2155. "version": "2.5.3",
  2156. "source": {
  2157. "type": "git",
  2158. "url": "https://github.com/thephpleague/commonmark.git",
  2159. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  2160. },
  2161. "dist": {
  2162. "type": "zip",
  2163. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  2164. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  2165. "shasum": ""
  2166. },
  2167. "require": {
  2168. "ext-mbstring": "*",
  2169. "league/config": "^1.1.1",
  2170. "php": "^7.4 || ^8.0",
  2171. "psr/event-dispatcher": "^1.0",
  2172. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2173. "symfony/polyfill-php80": "^1.16"
  2174. },
  2175. "require-dev": {
  2176. "cebe/markdown": "^1.0",
  2177. "commonmark/cmark": "0.31.1",
  2178. "commonmark/commonmark.js": "0.31.1",
  2179. "composer/package-versions-deprecated": "^1.8",
  2180. "embed/embed": "^4.4",
  2181. "erusev/parsedown": "^1.0",
  2182. "ext-json": "*",
  2183. "github/gfm": "0.29.0",
  2184. "michelf/php-markdown": "^1.4 || ^2.0",
  2185. "nyholm/psr7": "^1.5",
  2186. "phpstan/phpstan": "^1.8.2",
  2187. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2188. "scrutinizer/ocular": "^1.8.1",
  2189. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  2190. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  2191. "unleashedtech/php-coding-standard": "^3.1.1",
  2192. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2193. },
  2194. "suggest": {
  2195. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2196. },
  2197. "type": "library",
  2198. "extra": {
  2199. "branch-alias": {
  2200. "dev-main": "2.6-dev"
  2201. }
  2202. },
  2203. "autoload": {
  2204. "psr-4": {
  2205. "League\\CommonMark\\": "src"
  2206. }
  2207. },
  2208. "notification-url": "https://packagist.org/downloads/",
  2209. "license": [
  2210. "BSD-3-Clause"
  2211. ],
  2212. "authors": [
  2213. {
  2214. "name": "Colin O'Dell",
  2215. "email": "colinodell@gmail.com",
  2216. "homepage": "https://www.colinodell.com",
  2217. "role": "Lead Developer"
  2218. }
  2219. ],
  2220. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2221. "homepage": "https://commonmark.thephpleague.com",
  2222. "keywords": [
  2223. "commonmark",
  2224. "flavored",
  2225. "gfm",
  2226. "github",
  2227. "github-flavored",
  2228. "markdown",
  2229. "md",
  2230. "parser"
  2231. ],
  2232. "support": {
  2233. "docs": "https://commonmark.thephpleague.com/",
  2234. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2235. "issues": "https://github.com/thephpleague/commonmark/issues",
  2236. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2237. "source": "https://github.com/thephpleague/commonmark"
  2238. },
  2239. "funding": [
  2240. {
  2241. "url": "https://www.colinodell.com/sponsor",
  2242. "type": "custom"
  2243. },
  2244. {
  2245. "url": "https://www.paypal.me/colinpodell/10.00",
  2246. "type": "custom"
  2247. },
  2248. {
  2249. "url": "https://github.com/colinodell",
  2250. "type": "github"
  2251. },
  2252. {
  2253. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2254. "type": "tidelift"
  2255. }
  2256. ],
  2257. "time": "2024-08-16T11:46:16+00:00"
  2258. },
  2259. {
  2260. "name": "league/config",
  2261. "version": "v1.2.0",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://github.com/thephpleague/config.git",
  2265. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2270. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2271. "shasum": ""
  2272. },
  2273. "require": {
  2274. "dflydev/dot-access-data": "^3.0.1",
  2275. "nette/schema": "^1.2",
  2276. "php": "^7.4 || ^8.0"
  2277. },
  2278. "require-dev": {
  2279. "phpstan/phpstan": "^1.8.2",
  2280. "phpunit/phpunit": "^9.5.5",
  2281. "scrutinizer/ocular": "^1.8.1",
  2282. "unleashedtech/php-coding-standard": "^3.1",
  2283. "vimeo/psalm": "^4.7.3"
  2284. },
  2285. "type": "library",
  2286. "extra": {
  2287. "branch-alias": {
  2288. "dev-main": "1.2-dev"
  2289. }
  2290. },
  2291. "autoload": {
  2292. "psr-4": {
  2293. "League\\Config\\": "src"
  2294. }
  2295. },
  2296. "notification-url": "https://packagist.org/downloads/",
  2297. "license": [
  2298. "BSD-3-Clause"
  2299. ],
  2300. "authors": [
  2301. {
  2302. "name": "Colin O'Dell",
  2303. "email": "colinodell@gmail.com",
  2304. "homepage": "https://www.colinodell.com",
  2305. "role": "Lead Developer"
  2306. }
  2307. ],
  2308. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2309. "homepage": "https://config.thephpleague.com",
  2310. "keywords": [
  2311. "array",
  2312. "config",
  2313. "configuration",
  2314. "dot",
  2315. "dot-access",
  2316. "nested",
  2317. "schema"
  2318. ],
  2319. "support": {
  2320. "docs": "https://config.thephpleague.com/",
  2321. "issues": "https://github.com/thephpleague/config/issues",
  2322. "rss": "https://github.com/thephpleague/config/releases.atom",
  2323. "source": "https://github.com/thephpleague/config"
  2324. },
  2325. "funding": [
  2326. {
  2327. "url": "https://www.colinodell.com/sponsor",
  2328. "type": "custom"
  2329. },
  2330. {
  2331. "url": "https://www.paypal.me/colinpodell/10.00",
  2332. "type": "custom"
  2333. },
  2334. {
  2335. "url": "https://github.com/colinodell",
  2336. "type": "github"
  2337. }
  2338. ],
  2339. "time": "2022-12-11T20:36:23+00:00"
  2340. },
  2341. {
  2342. "name": "league/flysystem",
  2343. "version": "3.29.1",
  2344. "source": {
  2345. "type": "git",
  2346. "url": "https://github.com/thephpleague/flysystem.git",
  2347. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  2348. },
  2349. "dist": {
  2350. "type": "zip",
  2351. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2352. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2353. "shasum": ""
  2354. },
  2355. "require": {
  2356. "league/flysystem-local": "^3.0.0",
  2357. "league/mime-type-detection": "^1.0.0",
  2358. "php": "^8.0.2"
  2359. },
  2360. "conflict": {
  2361. "async-aws/core": "<1.19.0",
  2362. "async-aws/s3": "<1.14.0",
  2363. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2364. "guzzlehttp/guzzle": "<7.0",
  2365. "guzzlehttp/ringphp": "<1.1.1",
  2366. "phpseclib/phpseclib": "3.0.15",
  2367. "symfony/http-client": "<5.2"
  2368. },
  2369. "require-dev": {
  2370. "async-aws/s3": "^1.5 || ^2.0",
  2371. "async-aws/simple-s3": "^1.1 || ^2.0",
  2372. "aws/aws-sdk-php": "^3.295.10",
  2373. "composer/semver": "^3.0",
  2374. "ext-fileinfo": "*",
  2375. "ext-ftp": "*",
  2376. "ext-mongodb": "^1.3",
  2377. "ext-zip": "*",
  2378. "friendsofphp/php-cs-fixer": "^3.5",
  2379. "google/cloud-storage": "^1.23",
  2380. "guzzlehttp/psr7": "^2.6",
  2381. "microsoft/azure-storage-blob": "^1.1",
  2382. "mongodb/mongodb": "^1.2",
  2383. "phpseclib/phpseclib": "^3.0.36",
  2384. "phpstan/phpstan": "^1.10",
  2385. "phpunit/phpunit": "^9.5.11|^10.0",
  2386. "sabre/dav": "^4.6.0"
  2387. },
  2388. "type": "library",
  2389. "autoload": {
  2390. "psr-4": {
  2391. "League\\Flysystem\\": "src"
  2392. }
  2393. },
  2394. "notification-url": "https://packagist.org/downloads/",
  2395. "license": [
  2396. "MIT"
  2397. ],
  2398. "authors": [
  2399. {
  2400. "name": "Frank de Jonge",
  2401. "email": "info@frankdejonge.nl"
  2402. }
  2403. ],
  2404. "description": "File storage abstraction for PHP",
  2405. "keywords": [
  2406. "WebDAV",
  2407. "aws",
  2408. "cloud",
  2409. "file",
  2410. "files",
  2411. "filesystem",
  2412. "filesystems",
  2413. "ftp",
  2414. "s3",
  2415. "sftp",
  2416. "storage"
  2417. ],
  2418. "support": {
  2419. "issues": "https://github.com/thephpleague/flysystem/issues",
  2420. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  2421. },
  2422. "time": "2024-10-08T08:58:34+00:00"
  2423. },
  2424. {
  2425. "name": "league/flysystem-aws-s3-v3",
  2426. "version": "3.29.0",
  2427. "source": {
  2428. "type": "git",
  2429. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  2430. "reference": "c6ff6d4606e48249b63f269eba7fabdb584e76a9"
  2431. },
  2432. "dist": {
  2433. "type": "zip",
  2434. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/c6ff6d4606e48249b63f269eba7fabdb584e76a9",
  2435. "reference": "c6ff6d4606e48249b63f269eba7fabdb584e76a9",
  2436. "shasum": ""
  2437. },
  2438. "require": {
  2439. "aws/aws-sdk-php": "^3.295.10",
  2440. "league/flysystem": "^3.10.0",
  2441. "league/mime-type-detection": "^1.0.0",
  2442. "php": "^8.0.2"
  2443. },
  2444. "conflict": {
  2445. "guzzlehttp/guzzle": "<7.0",
  2446. "guzzlehttp/ringphp": "<1.1.1"
  2447. },
  2448. "type": "library",
  2449. "autoload": {
  2450. "psr-4": {
  2451. "League\\Flysystem\\AwsS3V3\\": ""
  2452. }
  2453. },
  2454. "notification-url": "https://packagist.org/downloads/",
  2455. "license": [
  2456. "MIT"
  2457. ],
  2458. "authors": [
  2459. {
  2460. "name": "Frank de Jonge",
  2461. "email": "info@frankdejonge.nl"
  2462. }
  2463. ],
  2464. "description": "AWS S3 filesystem adapter for Flysystem.",
  2465. "keywords": [
  2466. "Flysystem",
  2467. "aws",
  2468. "file",
  2469. "files",
  2470. "filesystem",
  2471. "s3",
  2472. "storage"
  2473. ],
  2474. "support": {
  2475. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.29.0"
  2476. },
  2477. "time": "2024-08-17T13:10:48+00:00"
  2478. },
  2479. {
  2480. "name": "league/flysystem-local",
  2481. "version": "3.29.0",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://github.com/thephpleague/flysystem-local.git",
  2485. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2490. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2491. "shasum": ""
  2492. },
  2493. "require": {
  2494. "ext-fileinfo": "*",
  2495. "league/flysystem": "^3.0.0",
  2496. "league/mime-type-detection": "^1.0.0",
  2497. "php": "^8.0.2"
  2498. },
  2499. "type": "library",
  2500. "autoload": {
  2501. "psr-4": {
  2502. "League\\Flysystem\\Local\\": ""
  2503. }
  2504. },
  2505. "notification-url": "https://packagist.org/downloads/",
  2506. "license": [
  2507. "MIT"
  2508. ],
  2509. "authors": [
  2510. {
  2511. "name": "Frank de Jonge",
  2512. "email": "info@frankdejonge.nl"
  2513. }
  2514. ],
  2515. "description": "Local filesystem adapter for Flysystem.",
  2516. "keywords": [
  2517. "Flysystem",
  2518. "file",
  2519. "files",
  2520. "filesystem",
  2521. "local"
  2522. ],
  2523. "support": {
  2524. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  2525. },
  2526. "time": "2024-08-09T21:24:39+00:00"
  2527. },
  2528. {
  2529. "name": "league/mime-type-detection",
  2530. "version": "1.16.0",
  2531. "source": {
  2532. "type": "git",
  2533. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2534. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  2535. },
  2536. "dist": {
  2537. "type": "zip",
  2538. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  2539. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  2540. "shasum": ""
  2541. },
  2542. "require": {
  2543. "ext-fileinfo": "*",
  2544. "php": "^7.4 || ^8.0"
  2545. },
  2546. "require-dev": {
  2547. "friendsofphp/php-cs-fixer": "^3.2",
  2548. "phpstan/phpstan": "^0.12.68",
  2549. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2550. },
  2551. "type": "library",
  2552. "autoload": {
  2553. "psr-4": {
  2554. "League\\MimeTypeDetection\\": "src"
  2555. }
  2556. },
  2557. "notification-url": "https://packagist.org/downloads/",
  2558. "license": [
  2559. "MIT"
  2560. ],
  2561. "authors": [
  2562. {
  2563. "name": "Frank de Jonge",
  2564. "email": "info@frankdejonge.nl"
  2565. }
  2566. ],
  2567. "description": "Mime-type detection for Flysystem",
  2568. "support": {
  2569. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2570. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  2571. },
  2572. "funding": [
  2573. {
  2574. "url": "https://github.com/frankdejonge",
  2575. "type": "github"
  2576. },
  2577. {
  2578. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2579. "type": "tidelift"
  2580. }
  2581. ],
  2582. "time": "2024-09-21T08:32:55+00:00"
  2583. },
  2584. {
  2585. "name": "monolog/monolog",
  2586. "version": "3.8.0",
  2587. "source": {
  2588. "type": "git",
  2589. "url": "https://github.com/Seldaek/monolog.git",
  2590. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67"
  2591. },
  2592. "dist": {
  2593. "type": "zip",
  2594. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67",
  2595. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67",
  2596. "shasum": ""
  2597. },
  2598. "require": {
  2599. "php": ">=8.1",
  2600. "psr/log": "^2.0 || ^3.0"
  2601. },
  2602. "provide": {
  2603. "psr/log-implementation": "3.0.0"
  2604. },
  2605. "require-dev": {
  2606. "aws/aws-sdk-php": "^3.0",
  2607. "doctrine/couchdb": "~1.0@dev",
  2608. "elasticsearch/elasticsearch": "^7 || ^8",
  2609. "ext-json": "*",
  2610. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2611. "guzzlehttp/guzzle": "^7.4.5",
  2612. "guzzlehttp/psr7": "^2.2",
  2613. "mongodb/mongodb": "^1.8",
  2614. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2615. "php-console/php-console": "^3.1.8",
  2616. "phpstan/phpstan": "^2",
  2617. "phpstan/phpstan-deprecation-rules": "^2",
  2618. "phpstan/phpstan-strict-rules": "^2",
  2619. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  2620. "predis/predis": "^1.1 || ^2",
  2621. "rollbar/rollbar": "^4.0",
  2622. "ruflin/elastica": "^7 || ^8",
  2623. "symfony/mailer": "^5.4 || ^6",
  2624. "symfony/mime": "^5.4 || ^6"
  2625. },
  2626. "suggest": {
  2627. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2628. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2629. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2630. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2631. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2632. "ext-mbstring": "Allow to work properly with unicode symbols",
  2633. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2634. "ext-openssl": "Required to send log messages using SSL",
  2635. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2636. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2637. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2638. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2639. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2640. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2641. },
  2642. "type": "library",
  2643. "extra": {
  2644. "branch-alias": {
  2645. "dev-main": "3.x-dev"
  2646. }
  2647. },
  2648. "autoload": {
  2649. "psr-4": {
  2650. "Monolog\\": "src/Monolog"
  2651. }
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "MIT"
  2656. ],
  2657. "authors": [
  2658. {
  2659. "name": "Jordi Boggiano",
  2660. "email": "j.boggiano@seld.be",
  2661. "homepage": "https://seld.be"
  2662. }
  2663. ],
  2664. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2665. "homepage": "https://github.com/Seldaek/monolog",
  2666. "keywords": [
  2667. "log",
  2668. "logging",
  2669. "psr-3"
  2670. ],
  2671. "support": {
  2672. "issues": "https://github.com/Seldaek/monolog/issues",
  2673. "source": "https://github.com/Seldaek/monolog/tree/3.8.0"
  2674. },
  2675. "funding": [
  2676. {
  2677. "url": "https://github.com/Seldaek",
  2678. "type": "github"
  2679. },
  2680. {
  2681. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2682. "type": "tidelift"
  2683. }
  2684. ],
  2685. "time": "2024-11-12T13:57:08+00:00"
  2686. },
  2687. {
  2688. "name": "mpociot/reflection-docblock",
  2689. "version": "1.0.1",
  2690. "source": {
  2691. "type": "git",
  2692. "url": "https://github.com/mpociot/reflection-docblock.git",
  2693. "reference": "c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587"
  2694. },
  2695. "dist": {
  2696. "type": "zip",
  2697. "url": "https://api.github.com/repos/mpociot/reflection-docblock/zipball/c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587",
  2698. "reference": "c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587",
  2699. "shasum": ""
  2700. },
  2701. "require": {
  2702. "php": ">=5.3.3"
  2703. },
  2704. "require-dev": {
  2705. "phpunit/phpunit": "~4.0"
  2706. },
  2707. "suggest": {
  2708. "dflydev/markdown": "~1.0",
  2709. "erusev/parsedown": "~1.0"
  2710. },
  2711. "type": "library",
  2712. "extra": {
  2713. "branch-alias": {
  2714. "dev-master": "2.0.x-dev"
  2715. }
  2716. },
  2717. "autoload": {
  2718. "psr-0": {
  2719. "Mpociot": [
  2720. "src/"
  2721. ]
  2722. }
  2723. },
  2724. "notification-url": "https://packagist.org/downloads/",
  2725. "license": [
  2726. "MIT"
  2727. ],
  2728. "authors": [
  2729. {
  2730. "name": "Mike van Riel",
  2731. "email": "mike.vanriel@naenius.com"
  2732. }
  2733. ],
  2734. "support": {
  2735. "issues": "https://github.com/mpociot/reflection-docblock/issues",
  2736. "source": "https://github.com/mpociot/reflection-docblock/tree/master"
  2737. },
  2738. "time": "2016-06-20T20:53:12+00:00"
  2739. },
  2740. {
  2741. "name": "mtdowling/jmespath.php",
  2742. "version": "2.8.0",
  2743. "source": {
  2744. "type": "git",
  2745. "url": "https://github.com/jmespath/jmespath.php.git",
  2746. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  2747. },
  2748. "dist": {
  2749. "type": "zip",
  2750. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  2751. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  2752. "shasum": ""
  2753. },
  2754. "require": {
  2755. "php": "^7.2.5 || ^8.0",
  2756. "symfony/polyfill-mbstring": "^1.17"
  2757. },
  2758. "require-dev": {
  2759. "composer/xdebug-handler": "^3.0.3",
  2760. "phpunit/phpunit": "^8.5.33"
  2761. },
  2762. "bin": [
  2763. "bin/jp.php"
  2764. ],
  2765. "type": "library",
  2766. "extra": {
  2767. "branch-alias": {
  2768. "dev-master": "2.8-dev"
  2769. }
  2770. },
  2771. "autoload": {
  2772. "files": [
  2773. "src/JmesPath.php"
  2774. ],
  2775. "psr-4": {
  2776. "JmesPath\\": "src/"
  2777. }
  2778. },
  2779. "notification-url": "https://packagist.org/downloads/",
  2780. "license": [
  2781. "MIT"
  2782. ],
  2783. "authors": [
  2784. {
  2785. "name": "Graham Campbell",
  2786. "email": "hello@gjcampbell.co.uk",
  2787. "homepage": "https://github.com/GrahamCampbell"
  2788. },
  2789. {
  2790. "name": "Michael Dowling",
  2791. "email": "mtdowling@gmail.com",
  2792. "homepage": "https://github.com/mtdowling"
  2793. }
  2794. ],
  2795. "description": "Declaratively specify how to extract elements from a JSON document",
  2796. "keywords": [
  2797. "json",
  2798. "jsonpath"
  2799. ],
  2800. "support": {
  2801. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2802. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  2803. },
  2804. "time": "2024-09-04T18:46:31+00:00"
  2805. },
  2806. {
  2807. "name": "nesbot/carbon",
  2808. "version": "3.8.2",
  2809. "source": {
  2810. "type": "git",
  2811. "url": "https://github.com/briannesbitt/Carbon.git",
  2812. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947"
  2813. },
  2814. "dist": {
  2815. "type": "zip",
  2816. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  2817. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  2818. "shasum": ""
  2819. },
  2820. "require": {
  2821. "carbonphp/carbon-doctrine-types": "<100.0",
  2822. "ext-json": "*",
  2823. "php": "^8.1",
  2824. "psr/clock": "^1.0",
  2825. "symfony/clock": "^6.3 || ^7.0",
  2826. "symfony/polyfill-mbstring": "^1.0",
  2827. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  2828. },
  2829. "provide": {
  2830. "psr/clock-implementation": "1.0"
  2831. },
  2832. "require-dev": {
  2833. "doctrine/dbal": "^3.6.3 || ^4.0",
  2834. "doctrine/orm": "^2.15.2 || ^3.0",
  2835. "friendsofphp/php-cs-fixer": "^3.57.2",
  2836. "kylekatarnls/multi-tester": "^2.5.3",
  2837. "ondrejmirtes/better-reflection": "^6.25.0.4",
  2838. "phpmd/phpmd": "^2.15.0",
  2839. "phpstan/extension-installer": "^1.3.1",
  2840. "phpstan/phpstan": "^1.11.2",
  2841. "phpunit/phpunit": "^10.5.20",
  2842. "squizlabs/php_codesniffer": "^3.9.0"
  2843. },
  2844. "bin": [
  2845. "bin/carbon"
  2846. ],
  2847. "type": "library",
  2848. "extra": {
  2849. "branch-alias": {
  2850. "dev-master": "3.x-dev",
  2851. "dev-2.x": "2.x-dev"
  2852. },
  2853. "laravel": {
  2854. "providers": [
  2855. "Carbon\\Laravel\\ServiceProvider"
  2856. ]
  2857. },
  2858. "phpstan": {
  2859. "includes": [
  2860. "extension.neon"
  2861. ]
  2862. }
  2863. },
  2864. "autoload": {
  2865. "psr-4": {
  2866. "Carbon\\": "src/Carbon/"
  2867. }
  2868. },
  2869. "notification-url": "https://packagist.org/downloads/",
  2870. "license": [
  2871. "MIT"
  2872. ],
  2873. "authors": [
  2874. {
  2875. "name": "Brian Nesbitt",
  2876. "email": "brian@nesbot.com",
  2877. "homepage": "https://markido.com"
  2878. },
  2879. {
  2880. "name": "kylekatarnls",
  2881. "homepage": "https://github.com/kylekatarnls"
  2882. }
  2883. ],
  2884. "description": "An API extension for DateTime that supports 281 different languages.",
  2885. "homepage": "https://carbon.nesbot.com",
  2886. "keywords": [
  2887. "date",
  2888. "datetime",
  2889. "time"
  2890. ],
  2891. "support": {
  2892. "docs": "https://carbon.nesbot.com/docs",
  2893. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2894. "source": "https://github.com/briannesbitt/Carbon"
  2895. },
  2896. "funding": [
  2897. {
  2898. "url": "https://github.com/sponsors/kylekatarnls",
  2899. "type": "github"
  2900. },
  2901. {
  2902. "url": "https://opencollective.com/Carbon#sponsor",
  2903. "type": "opencollective"
  2904. },
  2905. {
  2906. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2907. "type": "tidelift"
  2908. }
  2909. ],
  2910. "time": "2024-11-07T17:46:48+00:00"
  2911. },
  2912. {
  2913. "name": "nette/schema",
  2914. "version": "v1.3.2",
  2915. "source": {
  2916. "type": "git",
  2917. "url": "https://github.com/nette/schema.git",
  2918. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  2919. },
  2920. "dist": {
  2921. "type": "zip",
  2922. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  2923. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  2924. "shasum": ""
  2925. },
  2926. "require": {
  2927. "nette/utils": "^4.0",
  2928. "php": "8.1 - 8.4"
  2929. },
  2930. "require-dev": {
  2931. "nette/tester": "^2.5.2",
  2932. "phpstan/phpstan-nette": "^1.0",
  2933. "tracy/tracy": "^2.8"
  2934. },
  2935. "type": "library",
  2936. "extra": {
  2937. "branch-alias": {
  2938. "dev-master": "1.3-dev"
  2939. }
  2940. },
  2941. "autoload": {
  2942. "classmap": [
  2943. "src/"
  2944. ]
  2945. },
  2946. "notification-url": "https://packagist.org/downloads/",
  2947. "license": [
  2948. "BSD-3-Clause",
  2949. "GPL-2.0-only",
  2950. "GPL-3.0-only"
  2951. ],
  2952. "authors": [
  2953. {
  2954. "name": "David Grudl",
  2955. "homepage": "https://davidgrudl.com"
  2956. },
  2957. {
  2958. "name": "Nette Community",
  2959. "homepage": "https://nette.org/contributors"
  2960. }
  2961. ],
  2962. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2963. "homepage": "https://nette.org",
  2964. "keywords": [
  2965. "config",
  2966. "nette"
  2967. ],
  2968. "support": {
  2969. "issues": "https://github.com/nette/schema/issues",
  2970. "source": "https://github.com/nette/schema/tree/v1.3.2"
  2971. },
  2972. "time": "2024-10-06T23:10:23+00:00"
  2973. },
  2974. {
  2975. "name": "nette/utils",
  2976. "version": "v4.0.5",
  2977. "source": {
  2978. "type": "git",
  2979. "url": "https://github.com/nette/utils.git",
  2980. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  2981. },
  2982. "dist": {
  2983. "type": "zip",
  2984. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2985. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2986. "shasum": ""
  2987. },
  2988. "require": {
  2989. "php": "8.0 - 8.4"
  2990. },
  2991. "conflict": {
  2992. "nette/finder": "<3",
  2993. "nette/schema": "<1.2.2"
  2994. },
  2995. "require-dev": {
  2996. "jetbrains/phpstorm-attributes": "dev-master",
  2997. "nette/tester": "^2.5",
  2998. "phpstan/phpstan": "^1.0",
  2999. "tracy/tracy": "^2.9"
  3000. },
  3001. "suggest": {
  3002. "ext-gd": "to use Image",
  3003. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3004. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3005. "ext-json": "to use Nette\\Utils\\Json",
  3006. "ext-mbstring": "to use Strings::lower() etc...",
  3007. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3008. },
  3009. "type": "library",
  3010. "extra": {
  3011. "branch-alias": {
  3012. "dev-master": "4.0-dev"
  3013. }
  3014. },
  3015. "autoload": {
  3016. "classmap": [
  3017. "src/"
  3018. ]
  3019. },
  3020. "notification-url": "https://packagist.org/downloads/",
  3021. "license": [
  3022. "BSD-3-Clause",
  3023. "GPL-2.0-only",
  3024. "GPL-3.0-only"
  3025. ],
  3026. "authors": [
  3027. {
  3028. "name": "David Grudl",
  3029. "homepage": "https://davidgrudl.com"
  3030. },
  3031. {
  3032. "name": "Nette Community",
  3033. "homepage": "https://nette.org/contributors"
  3034. }
  3035. ],
  3036. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3037. "homepage": "https://nette.org",
  3038. "keywords": [
  3039. "array",
  3040. "core",
  3041. "datetime",
  3042. "images",
  3043. "json",
  3044. "nette",
  3045. "paginator",
  3046. "password",
  3047. "slugify",
  3048. "string",
  3049. "unicode",
  3050. "utf-8",
  3051. "utility",
  3052. "validation"
  3053. ],
  3054. "support": {
  3055. "issues": "https://github.com/nette/utils/issues",
  3056. "source": "https://github.com/nette/utils/tree/v4.0.5"
  3057. },
  3058. "time": "2024-08-07T15:39:19+00:00"
  3059. },
  3060. {
  3061. "name": "nikic/php-parser",
  3062. "version": "v5.3.1",
  3063. "source": {
  3064. "type": "git",
  3065. "url": "https://github.com/nikic/PHP-Parser.git",
  3066. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  3067. },
  3068. "dist": {
  3069. "type": "zip",
  3070. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  3071. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  3072. "shasum": ""
  3073. },
  3074. "require": {
  3075. "ext-ctype": "*",
  3076. "ext-json": "*",
  3077. "ext-tokenizer": "*",
  3078. "php": ">=7.4"
  3079. },
  3080. "require-dev": {
  3081. "ircmaxell/php-yacc": "^0.0.7",
  3082. "phpunit/phpunit": "^9.0"
  3083. },
  3084. "bin": [
  3085. "bin/php-parse"
  3086. ],
  3087. "type": "library",
  3088. "extra": {
  3089. "branch-alias": {
  3090. "dev-master": "5.0-dev"
  3091. }
  3092. },
  3093. "autoload": {
  3094. "psr-4": {
  3095. "PhpParser\\": "lib/PhpParser"
  3096. }
  3097. },
  3098. "notification-url": "https://packagist.org/downloads/",
  3099. "license": [
  3100. "BSD-3-Clause"
  3101. ],
  3102. "authors": [
  3103. {
  3104. "name": "Nikita Popov"
  3105. }
  3106. ],
  3107. "description": "A PHP parser written in PHP",
  3108. "keywords": [
  3109. "parser",
  3110. "php"
  3111. ],
  3112. "support": {
  3113. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3114. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  3115. },
  3116. "time": "2024-10-08T18:51:32+00:00"
  3117. },
  3118. {
  3119. "name": "nunomaduro/collision",
  3120. "version": "v8.5.0",
  3121. "source": {
  3122. "type": "git",
  3123. "url": "https://github.com/nunomaduro/collision.git",
  3124. "reference": "f5c101b929c958e849a633283adff296ed5f38f5"
  3125. },
  3126. "dist": {
  3127. "type": "zip",
  3128. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f5c101b929c958e849a633283adff296ed5f38f5",
  3129. "reference": "f5c101b929c958e849a633283adff296ed5f38f5",
  3130. "shasum": ""
  3131. },
  3132. "require": {
  3133. "filp/whoops": "^2.16.0",
  3134. "nunomaduro/termwind": "^2.1.0",
  3135. "php": "^8.2.0",
  3136. "symfony/console": "^7.1.5"
  3137. },
  3138. "conflict": {
  3139. "laravel/framework": "<11.0.0 || >=12.0.0",
  3140. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  3141. },
  3142. "require-dev": {
  3143. "larastan/larastan": "^2.9.8",
  3144. "laravel/framework": "^11.28.0",
  3145. "laravel/pint": "^1.18.1",
  3146. "laravel/sail": "^1.36.0",
  3147. "laravel/sanctum": "^4.0.3",
  3148. "laravel/tinker": "^2.10.0",
  3149. "orchestra/testbench-core": "^9.5.3",
  3150. "pestphp/pest": "^2.36.0 || ^3.4.0",
  3151. "sebastian/environment": "^6.1.0 || ^7.2.0"
  3152. },
  3153. "type": "library",
  3154. "extra": {
  3155. "laravel": {
  3156. "providers": [
  3157. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  3158. ]
  3159. },
  3160. "branch-alias": {
  3161. "dev-8.x": "8.x-dev"
  3162. }
  3163. },
  3164. "autoload": {
  3165. "files": [
  3166. "./src/Adapters/Phpunit/Autoload.php"
  3167. ],
  3168. "psr-4": {
  3169. "NunoMaduro\\Collision\\": "src/"
  3170. }
  3171. },
  3172. "notification-url": "https://packagist.org/downloads/",
  3173. "license": [
  3174. "MIT"
  3175. ],
  3176. "authors": [
  3177. {
  3178. "name": "Nuno Maduro",
  3179. "email": "enunomaduro@gmail.com"
  3180. }
  3181. ],
  3182. "description": "Cli error handling for console/command-line PHP applications.",
  3183. "keywords": [
  3184. "artisan",
  3185. "cli",
  3186. "command-line",
  3187. "console",
  3188. "error",
  3189. "handling",
  3190. "laravel",
  3191. "laravel-zero",
  3192. "php",
  3193. "symfony"
  3194. ],
  3195. "support": {
  3196. "issues": "https://github.com/nunomaduro/collision/issues",
  3197. "source": "https://github.com/nunomaduro/collision"
  3198. },
  3199. "funding": [
  3200. {
  3201. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3202. "type": "custom"
  3203. },
  3204. {
  3205. "url": "https://github.com/nunomaduro",
  3206. "type": "github"
  3207. },
  3208. {
  3209. "url": "https://www.patreon.com/nunomaduro",
  3210. "type": "patreon"
  3211. }
  3212. ],
  3213. "time": "2024-10-15T16:06:32+00:00"
  3214. },
  3215. {
  3216. "name": "nunomaduro/termwind",
  3217. "version": "v2.3.0",
  3218. "source": {
  3219. "type": "git",
  3220. "url": "https://github.com/nunomaduro/termwind.git",
  3221. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  3222. },
  3223. "dist": {
  3224. "type": "zip",
  3225. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  3226. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  3227. "shasum": ""
  3228. },
  3229. "require": {
  3230. "ext-mbstring": "*",
  3231. "php": "^8.2",
  3232. "symfony/console": "^7.1.8"
  3233. },
  3234. "require-dev": {
  3235. "illuminate/console": "^11.33.2",
  3236. "laravel/pint": "^1.18.2",
  3237. "mockery/mockery": "^1.6.12",
  3238. "pestphp/pest": "^2.36.0",
  3239. "phpstan/phpstan": "^1.12.11",
  3240. "phpstan/phpstan-strict-rules": "^1.6.1",
  3241. "symfony/var-dumper": "^7.1.8",
  3242. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3243. },
  3244. "type": "library",
  3245. "extra": {
  3246. "laravel": {
  3247. "providers": [
  3248. "Termwind\\Laravel\\TermwindServiceProvider"
  3249. ]
  3250. },
  3251. "branch-alias": {
  3252. "dev-2.x": "2.x-dev"
  3253. }
  3254. },
  3255. "autoload": {
  3256. "files": [
  3257. "src/Functions.php"
  3258. ],
  3259. "psr-4": {
  3260. "Termwind\\": "src/"
  3261. }
  3262. },
  3263. "notification-url": "https://packagist.org/downloads/",
  3264. "license": [
  3265. "MIT"
  3266. ],
  3267. "authors": [
  3268. {
  3269. "name": "Nuno Maduro",
  3270. "email": "enunomaduro@gmail.com"
  3271. }
  3272. ],
  3273. "description": "Its like Tailwind CSS, but for the console.",
  3274. "keywords": [
  3275. "cli",
  3276. "console",
  3277. "css",
  3278. "package",
  3279. "php",
  3280. "style"
  3281. ],
  3282. "support": {
  3283. "issues": "https://github.com/nunomaduro/termwind/issues",
  3284. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
  3285. },
  3286. "funding": [
  3287. {
  3288. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3289. "type": "custom"
  3290. },
  3291. {
  3292. "url": "https://github.com/nunomaduro",
  3293. "type": "github"
  3294. },
  3295. {
  3296. "url": "https://github.com/xiCO2k",
  3297. "type": "github"
  3298. }
  3299. ],
  3300. "time": "2024-11-21T10:39:51+00:00"
  3301. },
  3302. {
  3303. "name": "nyholm/psr7",
  3304. "version": "1.8.2",
  3305. "source": {
  3306. "type": "git",
  3307. "url": "https://github.com/Nyholm/psr7.git",
  3308. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3"
  3309. },
  3310. "dist": {
  3311. "type": "zip",
  3312. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  3313. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  3314. "shasum": ""
  3315. },
  3316. "require": {
  3317. "php": ">=7.2",
  3318. "psr/http-factory": "^1.0",
  3319. "psr/http-message": "^1.1 || ^2.0"
  3320. },
  3321. "provide": {
  3322. "php-http/message-factory-implementation": "1.0",
  3323. "psr/http-factory-implementation": "1.0",
  3324. "psr/http-message-implementation": "1.0"
  3325. },
  3326. "require-dev": {
  3327. "http-interop/http-factory-tests": "^0.9",
  3328. "php-http/message-factory": "^1.0",
  3329. "php-http/psr7-integration-tests": "^1.0",
  3330. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  3331. "symfony/error-handler": "^4.4"
  3332. },
  3333. "type": "library",
  3334. "extra": {
  3335. "branch-alias": {
  3336. "dev-master": "1.8-dev"
  3337. }
  3338. },
  3339. "autoload": {
  3340. "psr-4": {
  3341. "Nyholm\\Psr7\\": "src/"
  3342. }
  3343. },
  3344. "notification-url": "https://packagist.org/downloads/",
  3345. "license": [
  3346. "MIT"
  3347. ],
  3348. "authors": [
  3349. {
  3350. "name": "Tobias Nyholm",
  3351. "email": "tobias.nyholm@gmail.com"
  3352. },
  3353. {
  3354. "name": "Martijn van der Ven",
  3355. "email": "martijn@vanderven.se"
  3356. }
  3357. ],
  3358. "description": "A fast PHP7 implementation of PSR-7",
  3359. "homepage": "https://tnyholm.se",
  3360. "keywords": [
  3361. "psr-17",
  3362. "psr-7"
  3363. ],
  3364. "support": {
  3365. "issues": "https://github.com/Nyholm/psr7/issues",
  3366. "source": "https://github.com/Nyholm/psr7/tree/1.8.2"
  3367. },
  3368. "funding": [
  3369. {
  3370. "url": "https://github.com/Zegnat",
  3371. "type": "github"
  3372. },
  3373. {
  3374. "url": "https://github.com/nyholm",
  3375. "type": "github"
  3376. }
  3377. ],
  3378. "time": "2024-09-09T07:06:30+00:00"
  3379. },
  3380. {
  3381. "name": "nyholm/psr7-server",
  3382. "version": "1.1.0",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/Nyholm/psr7-server.git",
  3386. "reference": "4335801d851f554ca43fa6e7d2602141538854dc"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/4335801d851f554ca43fa6e7d2602141538854dc",
  3391. "reference": "4335801d851f554ca43fa6e7d2602141538854dc",
  3392. "shasum": ""
  3393. },
  3394. "require": {
  3395. "php": "^7.1 || ^8.0",
  3396. "psr/http-factory": "^1.0",
  3397. "psr/http-message": "^1.0 || ^2.0"
  3398. },
  3399. "require-dev": {
  3400. "nyholm/nsa": "^1.1",
  3401. "nyholm/psr7": "^1.3",
  3402. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  3403. },
  3404. "type": "library",
  3405. "autoload": {
  3406. "psr-4": {
  3407. "Nyholm\\Psr7Server\\": "src/"
  3408. }
  3409. },
  3410. "notification-url": "https://packagist.org/downloads/",
  3411. "license": [
  3412. "MIT"
  3413. ],
  3414. "authors": [
  3415. {
  3416. "name": "Tobias Nyholm",
  3417. "email": "tobias.nyholm@gmail.com"
  3418. },
  3419. {
  3420. "name": "Martijn van der Ven",
  3421. "email": "martijn@vanderven.se"
  3422. }
  3423. ],
  3424. "description": "Helper classes to handle PSR-7 server requests",
  3425. "homepage": "http://tnyholm.se",
  3426. "keywords": [
  3427. "psr-17",
  3428. "psr-7"
  3429. ],
  3430. "support": {
  3431. "issues": "https://github.com/Nyholm/psr7-server/issues",
  3432. "source": "https://github.com/Nyholm/psr7-server/tree/1.1.0"
  3433. },
  3434. "funding": [
  3435. {
  3436. "url": "https://github.com/Zegnat",
  3437. "type": "github"
  3438. },
  3439. {
  3440. "url": "https://github.com/nyholm",
  3441. "type": "github"
  3442. }
  3443. ],
  3444. "time": "2023-11-08T09:30:43+00:00"
  3445. },
  3446. {
  3447. "name": "overtrue/easy-sms",
  3448. "version": "3.0.1",
  3449. "source": {
  3450. "type": "git",
  3451. "url": "https://github.com/overtrue/easy-sms.git",
  3452. "reference": "b97d8b785ae07fe8c181de8d9d1f7f146a5977f7"
  3453. },
  3454. "dist": {
  3455. "type": "zip",
  3456. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/b97d8b785ae07fe8c181de8d9d1f7f146a5977f7",
  3457. "reference": "b97d8b785ae07fe8c181de8d9d1f7f146a5977f7",
  3458. "shasum": ""
  3459. },
  3460. "require": {
  3461. "ext-json": "*",
  3462. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3463. "php": ">=8.0"
  3464. },
  3465. "require-dev": {
  3466. "friendsofphp/php-cs-fixer": "^3.54",
  3467. "jetbrains/phpstorm-attributes": "^1.0",
  3468. "mockery/mockery": "^1.4.2",
  3469. "phpunit/phpunit": "^9.5.8"
  3470. },
  3471. "type": "library",
  3472. "autoload": {
  3473. "psr-4": {
  3474. "Overtrue\\EasySms\\": "src"
  3475. }
  3476. },
  3477. "notification-url": "https://packagist.org/downloads/",
  3478. "license": [
  3479. "MIT"
  3480. ],
  3481. "authors": [
  3482. {
  3483. "name": "overtrue",
  3484. "email": "i@overtrue.me"
  3485. }
  3486. ],
  3487. "description": "The easiest way to send short message.",
  3488. "support": {
  3489. "issues": "https://github.com/overtrue/easy-sms/issues",
  3490. "source": "https://github.com/overtrue/easy-sms/tree/3.0.1"
  3491. },
  3492. "funding": [
  3493. {
  3494. "url": "https://github.com/overtrue",
  3495. "type": "github"
  3496. }
  3497. ],
  3498. "time": "2024-07-16T06:07:02+00:00"
  3499. },
  3500. {
  3501. "name": "overtrue/laravel-wechat",
  3502. "version": "7.3.0",
  3503. "source": {
  3504. "type": "git",
  3505. "url": "https://github.com/overtrue/laravel-wechat.git",
  3506. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579"
  3507. },
  3508. "dist": {
  3509. "type": "zip",
  3510. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3511. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3512. "shasum": ""
  3513. },
  3514. "require": {
  3515. "illuminate/container": "^9.0|^10.0|^11.0",
  3516. "w7corp/easywechat": "^6.0.0"
  3517. },
  3518. "require-dev": {
  3519. "brainmaestro/composer-git-hooks": "dev-master",
  3520. "jetbrains/phpstorm-attributes": "^1.0",
  3521. "laravel/framework": "^10.0",
  3522. "laravel/pint": "^1.5"
  3523. },
  3524. "type": "library",
  3525. "extra": {
  3526. "laravel": {
  3527. "providers": [
  3528. "Overtrue\\LaravelWeChat\\ServiceProvider"
  3529. ]
  3530. },
  3531. "hooks": {
  3532. "pre-commit": [
  3533. "composer check-style"
  3534. ],
  3535. "pre-push": [
  3536. "composer check-style"
  3537. ]
  3538. }
  3539. },
  3540. "autoload": {
  3541. "psr-4": {
  3542. "Overtrue\\LaravelWeChat\\": "src/"
  3543. }
  3544. },
  3545. "notification-url": "https://packagist.org/downloads/",
  3546. "license": [
  3547. "MIT"
  3548. ],
  3549. "authors": [
  3550. {
  3551. "name": "overtrue",
  3552. "email": "anzhengchao@gmail.com"
  3553. }
  3554. ],
  3555. "description": "微信 SDK for Laravel",
  3556. "keywords": [
  3557. "laravel",
  3558. "sdk",
  3559. "wechat",
  3560. "weixin"
  3561. ],
  3562. "support": {
  3563. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  3564. "source": "https://github.com/overtrue/laravel-wechat/tree/7.3.0"
  3565. },
  3566. "funding": [
  3567. {
  3568. "url": "https://github.com/overtrue",
  3569. "type": "github"
  3570. }
  3571. ],
  3572. "time": "2024-03-13T02:06:36+00:00"
  3573. },
  3574. {
  3575. "name": "overtrue/socialite",
  3576. "version": "4.11.2",
  3577. "source": {
  3578. "type": "git",
  3579. "url": "https://github.com/overtrue/socialite.git",
  3580. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66"
  3581. },
  3582. "dist": {
  3583. "type": "zip",
  3584. "url": "https://api.github.com/repos/overtrue/socialite/zipball/83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3585. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3586. "shasum": ""
  3587. },
  3588. "require": {
  3589. "ext-json": "*",
  3590. "ext-openssl": "*",
  3591. "guzzlehttp/guzzle": "^7.0",
  3592. "php": ">=8.0.2"
  3593. },
  3594. "require-dev": {
  3595. "jetbrains/phpstorm-attributes": "^1.0",
  3596. "laravel/pint": "^1.2",
  3597. "mockery/mockery": "^1.3",
  3598. "phpstan/phpstan": "^1.7",
  3599. "phpunit/phpunit": "^11.3"
  3600. },
  3601. "type": "library",
  3602. "autoload": {
  3603. "files": [
  3604. "src/Contracts/FactoryInterface.php",
  3605. "src/Contracts/UserInterface.php",
  3606. "src/Contracts/ProviderInterface.php"
  3607. ],
  3608. "psr-4": {
  3609. "Overtrue\\Socialite\\": "src/"
  3610. }
  3611. },
  3612. "notification-url": "https://packagist.org/downloads/",
  3613. "license": [
  3614. "MIT"
  3615. ],
  3616. "authors": [
  3617. {
  3618. "name": "overtrue",
  3619. "email": "anzhengchao@gmail.com"
  3620. }
  3621. ],
  3622. "description": "A collection of OAuth 2 packages.",
  3623. "keywords": [
  3624. "Feishu",
  3625. "login",
  3626. "oauth",
  3627. "qcloud",
  3628. "qq",
  3629. "social",
  3630. "wechat",
  3631. "weibo"
  3632. ],
  3633. "support": {
  3634. "issues": "https://github.com/overtrue/socialite/issues",
  3635. "source": "https://github.com/overtrue/socialite/tree/4.11.2"
  3636. },
  3637. "funding": [
  3638. {
  3639. "url": "https://github.com/overtrue",
  3640. "type": "github"
  3641. }
  3642. ],
  3643. "time": "2024-10-08T16:23:14+00:00"
  3644. },
  3645. {
  3646. "name": "phpoption/phpoption",
  3647. "version": "1.9.3",
  3648. "source": {
  3649. "type": "git",
  3650. "url": "https://github.com/schmittjoh/php-option.git",
  3651. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3652. },
  3653. "dist": {
  3654. "type": "zip",
  3655. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3656. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3657. "shasum": ""
  3658. },
  3659. "require": {
  3660. "php": "^7.2.5 || ^8.0"
  3661. },
  3662. "require-dev": {
  3663. "bamarni/composer-bin-plugin": "^1.8.2",
  3664. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3665. },
  3666. "type": "library",
  3667. "extra": {
  3668. "bamarni-bin": {
  3669. "bin-links": true,
  3670. "forward-command": false
  3671. },
  3672. "branch-alias": {
  3673. "dev-master": "1.9-dev"
  3674. }
  3675. },
  3676. "autoload": {
  3677. "psr-4": {
  3678. "PhpOption\\": "src/PhpOption/"
  3679. }
  3680. },
  3681. "notification-url": "https://packagist.org/downloads/",
  3682. "license": [
  3683. "Apache-2.0"
  3684. ],
  3685. "authors": [
  3686. {
  3687. "name": "Johannes M. Schmitt",
  3688. "email": "schmittjoh@gmail.com",
  3689. "homepage": "https://github.com/schmittjoh"
  3690. },
  3691. {
  3692. "name": "Graham Campbell",
  3693. "email": "hello@gjcampbell.co.uk",
  3694. "homepage": "https://github.com/GrahamCampbell"
  3695. }
  3696. ],
  3697. "description": "Option Type for PHP",
  3698. "keywords": [
  3699. "language",
  3700. "option",
  3701. "php",
  3702. "type"
  3703. ],
  3704. "support": {
  3705. "issues": "https://github.com/schmittjoh/php-option/issues",
  3706. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3707. },
  3708. "funding": [
  3709. {
  3710. "url": "https://github.com/GrahamCampbell",
  3711. "type": "github"
  3712. },
  3713. {
  3714. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3715. "type": "tidelift"
  3716. }
  3717. ],
  3718. "time": "2024-07-20T21:41:07+00:00"
  3719. },
  3720. {
  3721. "name": "psr/cache",
  3722. "version": "3.0.0",
  3723. "source": {
  3724. "type": "git",
  3725. "url": "https://github.com/php-fig/cache.git",
  3726. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3727. },
  3728. "dist": {
  3729. "type": "zip",
  3730. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3731. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3732. "shasum": ""
  3733. },
  3734. "require": {
  3735. "php": ">=8.0.0"
  3736. },
  3737. "type": "library",
  3738. "extra": {
  3739. "branch-alias": {
  3740. "dev-master": "1.0.x-dev"
  3741. }
  3742. },
  3743. "autoload": {
  3744. "psr-4": {
  3745. "Psr\\Cache\\": "src/"
  3746. }
  3747. },
  3748. "notification-url": "https://packagist.org/downloads/",
  3749. "license": [
  3750. "MIT"
  3751. ],
  3752. "authors": [
  3753. {
  3754. "name": "PHP-FIG",
  3755. "homepage": "https://www.php-fig.org/"
  3756. }
  3757. ],
  3758. "description": "Common interface for caching libraries",
  3759. "keywords": [
  3760. "cache",
  3761. "psr",
  3762. "psr-6"
  3763. ],
  3764. "support": {
  3765. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3766. },
  3767. "time": "2021-02-03T23:26:27+00:00"
  3768. },
  3769. {
  3770. "name": "psr/clock",
  3771. "version": "1.0.0",
  3772. "source": {
  3773. "type": "git",
  3774. "url": "https://github.com/php-fig/clock.git",
  3775. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3776. },
  3777. "dist": {
  3778. "type": "zip",
  3779. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3780. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3781. "shasum": ""
  3782. },
  3783. "require": {
  3784. "php": "^7.0 || ^8.0"
  3785. },
  3786. "type": "library",
  3787. "autoload": {
  3788. "psr-4": {
  3789. "Psr\\Clock\\": "src/"
  3790. }
  3791. },
  3792. "notification-url": "https://packagist.org/downloads/",
  3793. "license": [
  3794. "MIT"
  3795. ],
  3796. "authors": [
  3797. {
  3798. "name": "PHP-FIG",
  3799. "homepage": "https://www.php-fig.org/"
  3800. }
  3801. ],
  3802. "description": "Common interface for reading the clock.",
  3803. "homepage": "https://github.com/php-fig/clock",
  3804. "keywords": [
  3805. "clock",
  3806. "now",
  3807. "psr",
  3808. "psr-20",
  3809. "time"
  3810. ],
  3811. "support": {
  3812. "issues": "https://github.com/php-fig/clock/issues",
  3813. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3814. },
  3815. "time": "2022-11-25T14:36:26+00:00"
  3816. },
  3817. {
  3818. "name": "psr/container",
  3819. "version": "2.0.2",
  3820. "source": {
  3821. "type": "git",
  3822. "url": "https://github.com/php-fig/container.git",
  3823. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3824. },
  3825. "dist": {
  3826. "type": "zip",
  3827. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3828. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3829. "shasum": ""
  3830. },
  3831. "require": {
  3832. "php": ">=7.4.0"
  3833. },
  3834. "type": "library",
  3835. "extra": {
  3836. "branch-alias": {
  3837. "dev-master": "2.0.x-dev"
  3838. }
  3839. },
  3840. "autoload": {
  3841. "psr-4": {
  3842. "Psr\\Container\\": "src/"
  3843. }
  3844. },
  3845. "notification-url": "https://packagist.org/downloads/",
  3846. "license": [
  3847. "MIT"
  3848. ],
  3849. "authors": [
  3850. {
  3851. "name": "PHP-FIG",
  3852. "homepage": "https://www.php-fig.org/"
  3853. }
  3854. ],
  3855. "description": "Common Container Interface (PHP FIG PSR-11)",
  3856. "homepage": "https://github.com/php-fig/container",
  3857. "keywords": [
  3858. "PSR-11",
  3859. "container",
  3860. "container-interface",
  3861. "container-interop",
  3862. "psr"
  3863. ],
  3864. "support": {
  3865. "issues": "https://github.com/php-fig/container/issues",
  3866. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3867. },
  3868. "time": "2021-11-05T16:47:00+00:00"
  3869. },
  3870. {
  3871. "name": "psr/event-dispatcher",
  3872. "version": "1.0.0",
  3873. "source": {
  3874. "type": "git",
  3875. "url": "https://github.com/php-fig/event-dispatcher.git",
  3876. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3877. },
  3878. "dist": {
  3879. "type": "zip",
  3880. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3881. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3882. "shasum": ""
  3883. },
  3884. "require": {
  3885. "php": ">=7.2.0"
  3886. },
  3887. "type": "library",
  3888. "extra": {
  3889. "branch-alias": {
  3890. "dev-master": "1.0.x-dev"
  3891. }
  3892. },
  3893. "autoload": {
  3894. "psr-4": {
  3895. "Psr\\EventDispatcher\\": "src/"
  3896. }
  3897. },
  3898. "notification-url": "https://packagist.org/downloads/",
  3899. "license": [
  3900. "MIT"
  3901. ],
  3902. "authors": [
  3903. {
  3904. "name": "PHP-FIG",
  3905. "homepage": "http://www.php-fig.org/"
  3906. }
  3907. ],
  3908. "description": "Standard interfaces for event handling.",
  3909. "keywords": [
  3910. "events",
  3911. "psr",
  3912. "psr-14"
  3913. ],
  3914. "support": {
  3915. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3916. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3917. },
  3918. "time": "2019-01-08T18:20:26+00:00"
  3919. },
  3920. {
  3921. "name": "psr/http-client",
  3922. "version": "1.0.3",
  3923. "source": {
  3924. "type": "git",
  3925. "url": "https://github.com/php-fig/http-client.git",
  3926. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3927. },
  3928. "dist": {
  3929. "type": "zip",
  3930. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3931. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3932. "shasum": ""
  3933. },
  3934. "require": {
  3935. "php": "^7.0 || ^8.0",
  3936. "psr/http-message": "^1.0 || ^2.0"
  3937. },
  3938. "type": "library",
  3939. "extra": {
  3940. "branch-alias": {
  3941. "dev-master": "1.0.x-dev"
  3942. }
  3943. },
  3944. "autoload": {
  3945. "psr-4": {
  3946. "Psr\\Http\\Client\\": "src/"
  3947. }
  3948. },
  3949. "notification-url": "https://packagist.org/downloads/",
  3950. "license": [
  3951. "MIT"
  3952. ],
  3953. "authors": [
  3954. {
  3955. "name": "PHP-FIG",
  3956. "homepage": "https://www.php-fig.org/"
  3957. }
  3958. ],
  3959. "description": "Common interface for HTTP clients",
  3960. "homepage": "https://github.com/php-fig/http-client",
  3961. "keywords": [
  3962. "http",
  3963. "http-client",
  3964. "psr",
  3965. "psr-18"
  3966. ],
  3967. "support": {
  3968. "source": "https://github.com/php-fig/http-client"
  3969. },
  3970. "time": "2023-09-23T14:17:50+00:00"
  3971. },
  3972. {
  3973. "name": "psr/http-factory",
  3974. "version": "1.1.0",
  3975. "source": {
  3976. "type": "git",
  3977. "url": "https://github.com/php-fig/http-factory.git",
  3978. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  3979. },
  3980. "dist": {
  3981. "type": "zip",
  3982. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3983. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3984. "shasum": ""
  3985. },
  3986. "require": {
  3987. "php": ">=7.1",
  3988. "psr/http-message": "^1.0 || ^2.0"
  3989. },
  3990. "type": "library",
  3991. "extra": {
  3992. "branch-alias": {
  3993. "dev-master": "1.0.x-dev"
  3994. }
  3995. },
  3996. "autoload": {
  3997. "psr-4": {
  3998. "Psr\\Http\\Message\\": "src/"
  3999. }
  4000. },
  4001. "notification-url": "https://packagist.org/downloads/",
  4002. "license": [
  4003. "MIT"
  4004. ],
  4005. "authors": [
  4006. {
  4007. "name": "PHP-FIG",
  4008. "homepage": "https://www.php-fig.org/"
  4009. }
  4010. ],
  4011. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  4012. "keywords": [
  4013. "factory",
  4014. "http",
  4015. "message",
  4016. "psr",
  4017. "psr-17",
  4018. "psr-7",
  4019. "request",
  4020. "response"
  4021. ],
  4022. "support": {
  4023. "source": "https://github.com/php-fig/http-factory"
  4024. },
  4025. "time": "2024-04-15T12:06:14+00:00"
  4026. },
  4027. {
  4028. "name": "psr/http-message",
  4029. "version": "2.0",
  4030. "source": {
  4031. "type": "git",
  4032. "url": "https://github.com/php-fig/http-message.git",
  4033. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4034. },
  4035. "dist": {
  4036. "type": "zip",
  4037. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4038. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4039. "shasum": ""
  4040. },
  4041. "require": {
  4042. "php": "^7.2 || ^8.0"
  4043. },
  4044. "type": "library",
  4045. "extra": {
  4046. "branch-alias": {
  4047. "dev-master": "2.0.x-dev"
  4048. }
  4049. },
  4050. "autoload": {
  4051. "psr-4": {
  4052. "Psr\\Http\\Message\\": "src/"
  4053. }
  4054. },
  4055. "notification-url": "https://packagist.org/downloads/",
  4056. "license": [
  4057. "MIT"
  4058. ],
  4059. "authors": [
  4060. {
  4061. "name": "PHP-FIG",
  4062. "homepage": "https://www.php-fig.org/"
  4063. }
  4064. ],
  4065. "description": "Common interface for HTTP messages",
  4066. "homepage": "https://github.com/php-fig/http-message",
  4067. "keywords": [
  4068. "http",
  4069. "http-message",
  4070. "psr",
  4071. "psr-7",
  4072. "request",
  4073. "response"
  4074. ],
  4075. "support": {
  4076. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4077. },
  4078. "time": "2023-04-04T09:54:51+00:00"
  4079. },
  4080. {
  4081. "name": "psr/log",
  4082. "version": "3.0.2",
  4083. "source": {
  4084. "type": "git",
  4085. "url": "https://github.com/php-fig/log.git",
  4086. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  4087. },
  4088. "dist": {
  4089. "type": "zip",
  4090. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4091. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4092. "shasum": ""
  4093. },
  4094. "require": {
  4095. "php": ">=8.0.0"
  4096. },
  4097. "type": "library",
  4098. "extra": {
  4099. "branch-alias": {
  4100. "dev-master": "3.x-dev"
  4101. }
  4102. },
  4103. "autoload": {
  4104. "psr-4": {
  4105. "Psr\\Log\\": "src"
  4106. }
  4107. },
  4108. "notification-url": "https://packagist.org/downloads/",
  4109. "license": [
  4110. "MIT"
  4111. ],
  4112. "authors": [
  4113. {
  4114. "name": "PHP-FIG",
  4115. "homepage": "https://www.php-fig.org/"
  4116. }
  4117. ],
  4118. "description": "Common interface for logging libraries",
  4119. "homepage": "https://github.com/php-fig/log",
  4120. "keywords": [
  4121. "log",
  4122. "psr",
  4123. "psr-3"
  4124. ],
  4125. "support": {
  4126. "source": "https://github.com/php-fig/log/tree/3.0.2"
  4127. },
  4128. "time": "2024-09-11T13:17:53+00:00"
  4129. },
  4130. {
  4131. "name": "psr/simple-cache",
  4132. "version": "3.0.0",
  4133. "source": {
  4134. "type": "git",
  4135. "url": "https://github.com/php-fig/simple-cache.git",
  4136. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4137. },
  4138. "dist": {
  4139. "type": "zip",
  4140. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4141. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4142. "shasum": ""
  4143. },
  4144. "require": {
  4145. "php": ">=8.0.0"
  4146. },
  4147. "type": "library",
  4148. "extra": {
  4149. "branch-alias": {
  4150. "dev-master": "3.0.x-dev"
  4151. }
  4152. },
  4153. "autoload": {
  4154. "psr-4": {
  4155. "Psr\\SimpleCache\\": "src/"
  4156. }
  4157. },
  4158. "notification-url": "https://packagist.org/downloads/",
  4159. "license": [
  4160. "MIT"
  4161. ],
  4162. "authors": [
  4163. {
  4164. "name": "PHP-FIG",
  4165. "homepage": "https://www.php-fig.org/"
  4166. }
  4167. ],
  4168. "description": "Common interfaces for simple caching",
  4169. "keywords": [
  4170. "cache",
  4171. "caching",
  4172. "psr",
  4173. "psr-16",
  4174. "simple-cache"
  4175. ],
  4176. "support": {
  4177. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4178. },
  4179. "time": "2021-10-29T13:26:27+00:00"
  4180. },
  4181. {
  4182. "name": "psy/psysh",
  4183. "version": "v0.12.4",
  4184. "source": {
  4185. "type": "git",
  4186. "url": "https://github.com/bobthecow/psysh.git",
  4187. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  4188. },
  4189. "dist": {
  4190. "type": "zip",
  4191. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  4192. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  4193. "shasum": ""
  4194. },
  4195. "require": {
  4196. "ext-json": "*",
  4197. "ext-tokenizer": "*",
  4198. "nikic/php-parser": "^5.0 || ^4.0",
  4199. "php": "^8.0 || ^7.4",
  4200. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4201. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4202. },
  4203. "conflict": {
  4204. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4205. },
  4206. "require-dev": {
  4207. "bamarni/composer-bin-plugin": "^1.2"
  4208. },
  4209. "suggest": {
  4210. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4211. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4212. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4213. },
  4214. "bin": [
  4215. "bin/psysh"
  4216. ],
  4217. "type": "library",
  4218. "extra": {
  4219. "branch-alias": {
  4220. "dev-main": "0.12.x-dev"
  4221. },
  4222. "bamarni-bin": {
  4223. "bin-links": false,
  4224. "forward-command": false
  4225. }
  4226. },
  4227. "autoload": {
  4228. "files": [
  4229. "src/functions.php"
  4230. ],
  4231. "psr-4": {
  4232. "Psy\\": "src/"
  4233. }
  4234. },
  4235. "notification-url": "https://packagist.org/downloads/",
  4236. "license": [
  4237. "MIT"
  4238. ],
  4239. "authors": [
  4240. {
  4241. "name": "Justin Hileman",
  4242. "email": "justin@justinhileman.info",
  4243. "homepage": "http://justinhileman.com"
  4244. }
  4245. ],
  4246. "description": "An interactive shell for modern PHP.",
  4247. "homepage": "http://psysh.org",
  4248. "keywords": [
  4249. "REPL",
  4250. "console",
  4251. "interactive",
  4252. "shell"
  4253. ],
  4254. "support": {
  4255. "issues": "https://github.com/bobthecow/psysh/issues",
  4256. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  4257. },
  4258. "time": "2024-06-10T01:18:23+00:00"
  4259. },
  4260. {
  4261. "name": "ralouphie/getallheaders",
  4262. "version": "3.0.3",
  4263. "source": {
  4264. "type": "git",
  4265. "url": "https://github.com/ralouphie/getallheaders.git",
  4266. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4267. },
  4268. "dist": {
  4269. "type": "zip",
  4270. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4271. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4272. "shasum": ""
  4273. },
  4274. "require": {
  4275. "php": ">=5.6"
  4276. },
  4277. "require-dev": {
  4278. "php-coveralls/php-coveralls": "^2.1",
  4279. "phpunit/phpunit": "^5 || ^6.5"
  4280. },
  4281. "type": "library",
  4282. "autoload": {
  4283. "files": [
  4284. "src/getallheaders.php"
  4285. ]
  4286. },
  4287. "notification-url": "https://packagist.org/downloads/",
  4288. "license": [
  4289. "MIT"
  4290. ],
  4291. "authors": [
  4292. {
  4293. "name": "Ralph Khattar",
  4294. "email": "ralph.khattar@gmail.com"
  4295. }
  4296. ],
  4297. "description": "A polyfill for getallheaders.",
  4298. "support": {
  4299. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4300. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4301. },
  4302. "time": "2019-03-08T08:55:37+00:00"
  4303. },
  4304. {
  4305. "name": "ramsey/collection",
  4306. "version": "2.0.0",
  4307. "source": {
  4308. "type": "git",
  4309. "url": "https://github.com/ramsey/collection.git",
  4310. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4311. },
  4312. "dist": {
  4313. "type": "zip",
  4314. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4315. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4316. "shasum": ""
  4317. },
  4318. "require": {
  4319. "php": "^8.1"
  4320. },
  4321. "require-dev": {
  4322. "captainhook/plugin-composer": "^5.3",
  4323. "ergebnis/composer-normalize": "^2.28.3",
  4324. "fakerphp/faker": "^1.21",
  4325. "hamcrest/hamcrest-php": "^2.0",
  4326. "jangregor/phpstan-prophecy": "^1.0",
  4327. "mockery/mockery": "^1.5",
  4328. "php-parallel-lint/php-console-highlighter": "^1.0",
  4329. "php-parallel-lint/php-parallel-lint": "^1.3",
  4330. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4331. "phpspec/prophecy-phpunit": "^2.0",
  4332. "phpstan/extension-installer": "^1.2",
  4333. "phpstan/phpstan": "^1.9",
  4334. "phpstan/phpstan-mockery": "^1.1",
  4335. "phpstan/phpstan-phpunit": "^1.3",
  4336. "phpunit/phpunit": "^9.5",
  4337. "psalm/plugin-mockery": "^1.1",
  4338. "psalm/plugin-phpunit": "^0.18.4",
  4339. "ramsey/coding-standard": "^2.0.3",
  4340. "ramsey/conventional-commits": "^1.3",
  4341. "vimeo/psalm": "^5.4"
  4342. },
  4343. "type": "library",
  4344. "extra": {
  4345. "captainhook": {
  4346. "force-install": true
  4347. },
  4348. "ramsey/conventional-commits": {
  4349. "configFile": "conventional-commits.json"
  4350. }
  4351. },
  4352. "autoload": {
  4353. "psr-4": {
  4354. "Ramsey\\Collection\\": "src/"
  4355. }
  4356. },
  4357. "notification-url": "https://packagist.org/downloads/",
  4358. "license": [
  4359. "MIT"
  4360. ],
  4361. "authors": [
  4362. {
  4363. "name": "Ben Ramsey",
  4364. "email": "ben@benramsey.com",
  4365. "homepage": "https://benramsey.com"
  4366. }
  4367. ],
  4368. "description": "A PHP library for representing and manipulating collections.",
  4369. "keywords": [
  4370. "array",
  4371. "collection",
  4372. "hash",
  4373. "map",
  4374. "queue",
  4375. "set"
  4376. ],
  4377. "support": {
  4378. "issues": "https://github.com/ramsey/collection/issues",
  4379. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4380. },
  4381. "funding": [
  4382. {
  4383. "url": "https://github.com/ramsey",
  4384. "type": "github"
  4385. },
  4386. {
  4387. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4388. "type": "tidelift"
  4389. }
  4390. ],
  4391. "time": "2022-12-31T21:50:55+00:00"
  4392. },
  4393. {
  4394. "name": "ramsey/uuid",
  4395. "version": "4.7.6",
  4396. "source": {
  4397. "type": "git",
  4398. "url": "https://github.com/ramsey/uuid.git",
  4399. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  4400. },
  4401. "dist": {
  4402. "type": "zip",
  4403. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  4404. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  4405. "shasum": ""
  4406. },
  4407. "require": {
  4408. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  4409. "ext-json": "*",
  4410. "php": "^8.0",
  4411. "ramsey/collection": "^1.2 || ^2.0"
  4412. },
  4413. "replace": {
  4414. "rhumsaa/uuid": "self.version"
  4415. },
  4416. "require-dev": {
  4417. "captainhook/captainhook": "^5.10",
  4418. "captainhook/plugin-composer": "^5.3",
  4419. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4420. "doctrine/annotations": "^1.8",
  4421. "ergebnis/composer-normalize": "^2.15",
  4422. "mockery/mockery": "^1.3",
  4423. "paragonie/random-lib": "^2",
  4424. "php-mock/php-mock": "^2.2",
  4425. "php-mock/php-mock-mockery": "^1.3",
  4426. "php-parallel-lint/php-parallel-lint": "^1.1",
  4427. "phpbench/phpbench": "^1.0",
  4428. "phpstan/extension-installer": "^1.1",
  4429. "phpstan/phpstan": "^1.8",
  4430. "phpstan/phpstan-mockery": "^1.1",
  4431. "phpstan/phpstan-phpunit": "^1.1",
  4432. "phpunit/phpunit": "^8.5 || ^9",
  4433. "ramsey/composer-repl": "^1.4",
  4434. "slevomat/coding-standard": "^8.4",
  4435. "squizlabs/php_codesniffer": "^3.5",
  4436. "vimeo/psalm": "^4.9"
  4437. },
  4438. "suggest": {
  4439. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4440. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4441. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4442. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4443. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4444. },
  4445. "type": "library",
  4446. "extra": {
  4447. "captainhook": {
  4448. "force-install": true
  4449. }
  4450. },
  4451. "autoload": {
  4452. "files": [
  4453. "src/functions.php"
  4454. ],
  4455. "psr-4": {
  4456. "Ramsey\\Uuid\\": "src/"
  4457. }
  4458. },
  4459. "notification-url": "https://packagist.org/downloads/",
  4460. "license": [
  4461. "MIT"
  4462. ],
  4463. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4464. "keywords": [
  4465. "guid",
  4466. "identifier",
  4467. "uuid"
  4468. ],
  4469. "support": {
  4470. "issues": "https://github.com/ramsey/uuid/issues",
  4471. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  4472. },
  4473. "funding": [
  4474. {
  4475. "url": "https://github.com/ramsey",
  4476. "type": "github"
  4477. },
  4478. {
  4479. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4480. "type": "tidelift"
  4481. }
  4482. ],
  4483. "time": "2024-04-27T21:32:50+00:00"
  4484. },
  4485. {
  4486. "name": "rap2hpoutre/laravel-log-viewer",
  4487. "version": "v2.4.0",
  4488. "source": {
  4489. "type": "git",
  4490. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4491. "reference": "49c52ae197b3d4f7f9e43d328628edc4bc529afa"
  4492. },
  4493. "dist": {
  4494. "type": "zip",
  4495. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/49c52ae197b3d4f7f9e43d328628edc4bc529afa",
  4496. "reference": "49c52ae197b3d4f7f9e43d328628edc4bc529afa",
  4497. "shasum": ""
  4498. },
  4499. "require": {
  4500. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  4501. "php": "^7.2|^8.0"
  4502. },
  4503. "require-dev": {
  4504. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  4505. "phpunit/phpunit": "^7||^8.4|^9.3.3|^10.1"
  4506. },
  4507. "type": "laravel-package",
  4508. "extra": {
  4509. "laravel": {
  4510. "providers": [
  4511. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4512. ]
  4513. }
  4514. },
  4515. "autoload": {
  4516. "psr-0": {
  4517. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4518. },
  4519. "classmap": [
  4520. "src/controllers"
  4521. ]
  4522. },
  4523. "notification-url": "https://packagist.org/downloads/",
  4524. "license": [
  4525. "MIT"
  4526. ],
  4527. "authors": [
  4528. {
  4529. "name": "rap2hpoutre",
  4530. "email": "raphaelht@gmail.com"
  4531. }
  4532. ],
  4533. "description": "A Laravel log reader",
  4534. "keywords": [
  4535. "laravel",
  4536. "log",
  4537. "log-reader",
  4538. "log-viewer",
  4539. "logging",
  4540. "lumen"
  4541. ],
  4542. "support": {
  4543. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4544. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/v2.4.0"
  4545. },
  4546. "time": "2024-03-20T08:49:53+00:00"
  4547. },
  4548. {
  4549. "name": "shalvah/clara",
  4550. "version": "3.2.0",
  4551. "source": {
  4552. "type": "git",
  4553. "url": "https://github.com/shalvah/clara.git",
  4554. "reference": "cdbb5737cbdd101756d97dd2279a979a1af7710b"
  4555. },
  4556. "dist": {
  4557. "type": "zip",
  4558. "url": "https://api.github.com/repos/shalvah/clara/zipball/cdbb5737cbdd101756d97dd2279a979a1af7710b",
  4559. "reference": "cdbb5737cbdd101756d97dd2279a979a1af7710b",
  4560. "shasum": ""
  4561. },
  4562. "require": {
  4563. "php": ">=7.4",
  4564. "symfony/console": "^4.0|^5.0|^6.0|^7.0"
  4565. },
  4566. "require-dev": {
  4567. "eloquent/phony-phpunit": "^7.0",
  4568. "phpunit/phpunit": "^9.1"
  4569. },
  4570. "type": "library",
  4571. "autoload": {
  4572. "files": [
  4573. "helpers.php"
  4574. ],
  4575. "psr-4": {
  4576. "Shalvah\\Clara\\": "src/"
  4577. }
  4578. },
  4579. "notification-url": "https://packagist.org/downloads/",
  4580. "license": [
  4581. "MIT"
  4582. ],
  4583. "description": "🔊 Simple, pretty, testable console output for CLI apps.",
  4584. "keywords": [
  4585. "cli",
  4586. "log",
  4587. "logging"
  4588. ],
  4589. "support": {
  4590. "issues": "https://github.com/shalvah/clara/issues",
  4591. "source": "https://github.com/shalvah/clara/tree/3.2.0"
  4592. },
  4593. "time": "2024-02-27T20:30:59+00:00"
  4594. },
  4595. {
  4596. "name": "shalvah/upgrader",
  4597. "version": "0.6.0",
  4598. "source": {
  4599. "type": "git",
  4600. "url": "https://github.com/shalvah/upgrader.git",
  4601. "reference": "d95ed17fe9f5e1ee7d47ad835595f1af080a867f"
  4602. },
  4603. "dist": {
  4604. "type": "zip",
  4605. "url": "https://api.github.com/repos/shalvah/upgrader/zipball/d95ed17fe9f5e1ee7d47ad835595f1af080a867f",
  4606. "reference": "d95ed17fe9f5e1ee7d47ad835595f1af080a867f",
  4607. "shasum": ""
  4608. },
  4609. "require": {
  4610. "illuminate/support": ">=8.0",
  4611. "nikic/php-parser": "^5.0",
  4612. "php": ">=8.0"
  4613. },
  4614. "require-dev": {
  4615. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  4616. "pestphp/pest": "^1.21",
  4617. "phpstan/phpstan": "^1.0",
  4618. "spatie/ray": "^1.33"
  4619. },
  4620. "type": "library",
  4621. "autoload": {
  4622. "psr-4": {
  4623. "Shalvah\\Upgrader\\": "src/"
  4624. }
  4625. },
  4626. "notification-url": "https://packagist.org/downloads/",
  4627. "license": [
  4628. "MIT"
  4629. ],
  4630. "authors": [
  4631. {
  4632. "name": "Shalvah",
  4633. "email": "hello@shalvah.me"
  4634. }
  4635. ],
  4636. "description": "Create automatic upgrades for your package.",
  4637. "homepage": "http://github.com/shalvah/upgrader",
  4638. "keywords": [
  4639. "upgrade"
  4640. ],
  4641. "support": {
  4642. "issues": "https://github.com/shalvah/upgrader/issues",
  4643. "source": "https://github.com/shalvah/upgrader/tree/0.6.0"
  4644. },
  4645. "funding": [
  4646. {
  4647. "url": "https://patreon.com/shalvah",
  4648. "type": "patreon"
  4649. }
  4650. ],
  4651. "time": "2024-02-20T11:51:46+00:00"
  4652. },
  4653. {
  4654. "name": "simplesoftwareio/simple-qrcode",
  4655. "version": "4.2.0",
  4656. "source": {
  4657. "type": "git",
  4658. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  4659. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537"
  4660. },
  4661. "dist": {
  4662. "type": "zip",
  4663. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/916db7948ca6772d54bb617259c768c9cdc8d537",
  4664. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537",
  4665. "shasum": ""
  4666. },
  4667. "require": {
  4668. "bacon/bacon-qr-code": "^2.0",
  4669. "ext-gd": "*",
  4670. "php": ">=7.2|^8.0"
  4671. },
  4672. "require-dev": {
  4673. "mockery/mockery": "~1",
  4674. "phpunit/phpunit": "~9"
  4675. },
  4676. "suggest": {
  4677. "ext-imagick": "Allows the generation of PNG QrCodes.",
  4678. "illuminate/support": "Allows for use within Laravel."
  4679. },
  4680. "type": "library",
  4681. "extra": {
  4682. "laravel": {
  4683. "providers": [
  4684. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  4685. ],
  4686. "aliases": {
  4687. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  4688. }
  4689. }
  4690. },
  4691. "autoload": {
  4692. "psr-4": {
  4693. "SimpleSoftwareIO\\QrCode\\": "src"
  4694. }
  4695. },
  4696. "notification-url": "https://packagist.org/downloads/",
  4697. "license": [
  4698. "MIT"
  4699. ],
  4700. "authors": [
  4701. {
  4702. "name": "Simple Software LLC",
  4703. "email": "support@simplesoftware.io"
  4704. }
  4705. ],
  4706. "description": "Simple QrCode is a QR code generator made for Laravel.",
  4707. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  4708. "keywords": [
  4709. "Simple",
  4710. "generator",
  4711. "laravel",
  4712. "qrcode",
  4713. "wrapper"
  4714. ],
  4715. "support": {
  4716. "issues": "https://github.com/SimpleSoftwareIO/simple-qrcode/issues",
  4717. "source": "https://github.com/SimpleSoftwareIO/simple-qrcode/tree/4.2.0"
  4718. },
  4719. "time": "2021-02-08T20:43:55+00:00"
  4720. },
  4721. {
  4722. "name": "slowlyo/laravel-support",
  4723. "version": "v0.0.6",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://github.com/slowlyo/laravel-support.git",
  4727. "reference": "71cd69f7ffd6eec829afb970733b54c8d860b29f"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://api.github.com/repos/slowlyo/laravel-support/zipball/71cd69f7ffd6eec829afb970733b54c8d860b29f",
  4732. "reference": "71cd69f7ffd6eec829afb970733b54c8d860b29f",
  4733. "shasum": ""
  4734. },
  4735. "require": {
  4736. "ext-bcmath": "*",
  4737. "ext-json": "*",
  4738. "laravel/framework": ">=8",
  4739. "php": ">=7.4.0"
  4740. },
  4741. "type": "library",
  4742. "extra": {
  4743. "laravel": {
  4744. "providers": [
  4745. "Slowlyo\\Support\\SupportServiceProvider"
  4746. ]
  4747. }
  4748. },
  4749. "autoload": {
  4750. "files": [
  4751. "./src/functions.php"
  4752. ],
  4753. "psr-4": {
  4754. "Slowlyo\\Support\\": "src/"
  4755. }
  4756. },
  4757. "notification-url": "https://packagist.org/downloads/",
  4758. "license": [
  4759. "MIT"
  4760. ],
  4761. "authors": [
  4762. {
  4763. "name": "Slowlyo",
  4764. "email": "slowlyo_email@qq.com"
  4765. }
  4766. ],
  4767. "description": "php/laravel部分代码封装",
  4768. "support": {
  4769. "issues": "https://github.com/slowlyo/laravel-support/issues",
  4770. "source": "https://github.com/slowlyo/laravel-support/tree/v0.0.6"
  4771. },
  4772. "time": "2024-11-21T07:33:06+00:00"
  4773. },
  4774. {
  4775. "name": "slowlyo/owl-admin",
  4776. "version": "v4.0.6",
  4777. "source": {
  4778. "type": "git",
  4779. "url": "https://github.com/slowlyo/owl-admin.git",
  4780. "reference": "f9e20279301ac9255b54e6398397662ecb379460"
  4781. },
  4782. "dist": {
  4783. "type": "zip",
  4784. "url": "https://api.github.com/repos/slowlyo/owl-admin/zipball/f9e20279301ac9255b54e6398397662ecb379460",
  4785. "reference": "f9e20279301ac9255b54e6398397662ecb379460",
  4786. "shasum": ""
  4787. },
  4788. "require": {
  4789. "ext-gd": "*",
  4790. "ext-zip": "*",
  4791. "illuminate/support": ">=11",
  4792. "php": ">=8.2",
  4793. "slowlyo/laravel-support": "*"
  4794. },
  4795. "type": "library",
  4796. "extra": {
  4797. "laravel": {
  4798. "providers": [
  4799. "Slowlyo\\OwlAdmin\\AdminServiceProvider"
  4800. ],
  4801. "aliases": {
  4802. "OwlAdmin": "Slowlyo\\OwlAdmin\\Facades\\OwlAdmin"
  4803. }
  4804. }
  4805. },
  4806. "autoload": {
  4807. "files": [
  4808. "src/Support/helpers.php"
  4809. ],
  4810. "psr-4": {
  4811. "Slowlyo\\OwlAdmin\\": "src/"
  4812. }
  4813. },
  4814. "notification-url": "https://packagist.org/downloads/",
  4815. "license": [
  4816. "MIT"
  4817. ],
  4818. "authors": [
  4819. {
  4820. "name": "slowlyo",
  4821. "email": "slowlyo_email@qq.com",
  4822. "homepage": "https://github.com/slowlyo"
  4823. }
  4824. ],
  4825. "description": "基于 laravel、amis 开发的后台框架~",
  4826. "homepage": "https://github.com/slowlyo/owl-admin",
  4827. "keywords": [
  4828. "admin",
  4829. "amis",
  4830. "laravel",
  4831. "owl-admin"
  4832. ],
  4833. "support": {
  4834. "email": "slowlyo_email@qq.com",
  4835. "forum": "https://github.com/orgs/owl-admin/discussions",
  4836. "issues": "https://github.com/Slowlyo/owl-admin/issues",
  4837. "source": "https://github.com/slowlyo/owl-admin/tree/v4.0.6",
  4838. "wiki": "https://doc.owladmin.com/"
  4839. },
  4840. "time": "2024-11-16T05:34:20+00:00"
  4841. },
  4842. {
  4843. "name": "slowlyo/owl-dict",
  4844. "version": "v1.3.2",
  4845. "source": {
  4846. "type": "git",
  4847. "url": "https://github.com/owl-admin/dict.git",
  4848. "reference": "8754d9258a11175ec17f30e698b6489abade11ef"
  4849. },
  4850. "dist": {
  4851. "type": "zip",
  4852. "url": "https://api.github.com/repos/owl-admin/dict/zipball/8754d9258a11175ec17f30e698b6489abade11ef",
  4853. "reference": "8754d9258a11175ec17f30e698b6489abade11ef",
  4854. "shasum": ""
  4855. },
  4856. "require": {
  4857. "php": ">=8.0",
  4858. "slowlyo/owl-admin": "*"
  4859. },
  4860. "type": "library",
  4861. "extra": {
  4862. "owl-admin": "Slowlyo\\OwlDict\\OwlDictServiceProvider",
  4863. "laravel": {
  4864. "providers": [
  4865. "Slowlyo\\OwlDict\\OwlDictServiceProvider"
  4866. ]
  4867. }
  4868. },
  4869. "autoload": {
  4870. "files": [
  4871. "src/helpers.php"
  4872. ],
  4873. "psr-4": {
  4874. "Slowlyo\\OwlDict\\": "src/"
  4875. }
  4876. },
  4877. "notification-url": "https://packagist.org/downloads/",
  4878. "license": [
  4879. "MIT"
  4880. ],
  4881. "authors": [
  4882. {
  4883. "name": "slowlyo",
  4884. "email": "slowlyo_email@qq.com"
  4885. }
  4886. ],
  4887. "description": "OwlAdmin 数据字典扩展",
  4888. "homepage": "https://gitee.com/slowlyo/owl-dict",
  4889. "keywords": [
  4890. "Dict",
  4891. "extension",
  4892. "owl-admin"
  4893. ],
  4894. "support": {
  4895. "issues": "https://github.com/owl-admin/dict/issues",
  4896. "source": "https://github.com/owl-admin/dict/tree/v1.3.2"
  4897. },
  4898. "time": "2024-07-08T03:05:14+00:00"
  4899. },
  4900. {
  4901. "name": "slowlyo/owl-icon-cache",
  4902. "version": "v0.1.0",
  4903. "source": {
  4904. "type": "git",
  4905. "url": "https://github.com/slowlyo/owl-icon-cache.git",
  4906. "reference": "696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28"
  4907. },
  4908. "dist": {
  4909. "type": "zip",
  4910. "url": "https://api.github.com/repos/slowlyo/owl-icon-cache/zipball/696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28",
  4911. "reference": "696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28",
  4912. "shasum": ""
  4913. },
  4914. "require": {
  4915. "iconify/json": "*",
  4916. "php": ">=8.0",
  4917. "slowlyo/owl-admin": "*"
  4918. },
  4919. "type": "library",
  4920. "extra": {
  4921. "owl-admin": "Slowlyo\\OwlIconCache\\OwlIconCacheServiceProvider",
  4922. "laravel": {
  4923. "providers": [
  4924. "Slowlyo\\OwlIconCache\\OwlIconCacheServiceProvider"
  4925. ]
  4926. }
  4927. },
  4928. "autoload": {
  4929. "psr-4": {
  4930. "Slowlyo\\OwlIconCache\\": "src/"
  4931. }
  4932. },
  4933. "notification-url": "https://packagist.org/downloads/",
  4934. "license": [
  4935. "MIT"
  4936. ],
  4937. "authors": [
  4938. {
  4939. "name": "slowlyo",
  4940. "email": "slowlyo_email@qq.com"
  4941. }
  4942. ],
  4943. "description": "让 iconify 图标可以离线使用",
  4944. "homepage": "https://github.com/slowlyo/owl-icon-cache",
  4945. "keywords": [
  4946. "extension",
  4947. "icon",
  4948. "owl-admin"
  4949. ],
  4950. "support": {
  4951. "issues": "https://github.com/slowlyo/owl-icon-cache/issues",
  4952. "source": "https://github.com/slowlyo/owl-icon-cache/tree/v0.1.0"
  4953. },
  4954. "time": "2024-05-01T08:30:19+00:00"
  4955. },
  4956. {
  4957. "name": "slowlyo/owl-log-viewer",
  4958. "version": "1.0.0",
  4959. "source": {
  4960. "type": "git",
  4961. "url": "https://github.com/owl-admin/log-viewer.git",
  4962. "reference": "d249c011dd7febe2f7be5bf800b42ed325b02d40"
  4963. },
  4964. "dist": {
  4965. "type": "zip",
  4966. "url": "https://api.github.com/repos/owl-admin/log-viewer/zipball/d249c011dd7febe2f7be5bf800b42ed325b02d40",
  4967. "reference": "d249c011dd7febe2f7be5bf800b42ed325b02d40",
  4968. "shasum": ""
  4969. },
  4970. "require": {
  4971. "php": ">=8.0",
  4972. "slowlyo/owl-admin": "*"
  4973. },
  4974. "type": "library",
  4975. "extra": {
  4976. "owl-admin": "Slowlyo\\OwlLogViewer\\OwlLogViewerServiceProvider",
  4977. "laravel": {
  4978. "providers": [
  4979. "Slowlyo\\OwlLogViewer\\OwlLogViewerServiceProvider"
  4980. ]
  4981. }
  4982. },
  4983. "autoload": {
  4984. "psr-4": {
  4985. "Slowlyo\\OwlLogViewer\\": "src/"
  4986. }
  4987. },
  4988. "notification-url": "https://packagist.org/downloads/",
  4989. "license": [
  4990. "MIT"
  4991. ],
  4992. "authors": [
  4993. {
  4994. "name": "slowlyo",
  4995. "email": "slowlyo_email@qq.com"
  4996. }
  4997. ],
  4998. "description": "更方便的查看laravel日志",
  4999. "homepage": "https://github.com/slowlyo/owl-log-viewer",
  5000. "keywords": [
  5001. "extension",
  5002. "owl-admin"
  5003. ],
  5004. "support": {
  5005. "issues": "https://github.com/owl-admin/log-viewer/issues",
  5006. "source": "https://github.com/owl-admin/log-viewer/tree/v1.0.0"
  5007. },
  5008. "time": "2024-03-10T13:57:59+00:00"
  5009. },
  5010. {
  5011. "name": "slowlyo/owl-module-notice",
  5012. "version": "v1.1.3",
  5013. "source": {
  5014. "type": "git",
  5015. "url": "https://gitee.com/slowlyo/owl-module-notice",
  5016. "reference": "8410e77a08cee435055f8d8cf6f57cfac5b86e3f"
  5017. },
  5018. "require": {
  5019. "php": ">=8.0",
  5020. "slowlyo/owl-admin": "*"
  5021. },
  5022. "type": "library",
  5023. "extra": {
  5024. "owl-admin": "Slowlyo\\Notice\\NoticeServiceProvider",
  5025. "laravel": {
  5026. "providers": [
  5027. "Slowlyo\\Notice\\NoticeServiceProvider"
  5028. ]
  5029. }
  5030. },
  5031. "autoload": {
  5032. "psr-4": {
  5033. "Slowlyo\\Notice\\": "src/"
  5034. }
  5035. },
  5036. "notification-url": "https://packagist.org/downloads/",
  5037. "license": [
  5038. "MIT"
  5039. ],
  5040. "authors": [
  5041. {
  5042. "name": "slowlyo",
  5043. "email": "slowlyo_email@qq.com"
  5044. }
  5045. ],
  5046. "description": "OwlAdmin 扩展: 后台功能-通知公告管理",
  5047. "homepage": "https://gitee.com/slowlyo/notice",
  5048. "keywords": [
  5049. "extension",
  5050. "notice",
  5051. "owl-admin"
  5052. ],
  5053. "time": "2023-04-10T06:25:51+00:00"
  5054. },
  5055. {
  5056. "name": "slowlyo/owl-operation-log",
  5057. "version": "v0.2.3",
  5058. "source": {
  5059. "type": "git",
  5060. "url": "https://github.com/slowlyo/owl-operation-log.git",
  5061. "reference": "fe03f85e940e069ebc024f8c257da2c44939c78d"
  5062. },
  5063. "dist": {
  5064. "type": "zip",
  5065. "url": "https://api.github.com/repos/slowlyo/owl-operation-log/zipball/fe03f85e940e069ebc024f8c257da2c44939c78d",
  5066. "reference": "fe03f85e940e069ebc024f8c257da2c44939c78d",
  5067. "shasum": ""
  5068. },
  5069. "require": {
  5070. "php": ">=8.0",
  5071. "slowlyo/owl-admin": "*"
  5072. },
  5073. "type": "library",
  5074. "extra": {
  5075. "owl-admin": "Slowlyo\\OwlOperationLog\\OwlOperationLogServiceProvider",
  5076. "laravel": {
  5077. "providers": [
  5078. "Slowlyo\\OwlOperationLog\\OwlOperationLogServiceProvider"
  5079. ]
  5080. }
  5081. },
  5082. "autoload": {
  5083. "psr-4": {
  5084. "Slowlyo\\OwlOperationLog\\": "src/"
  5085. }
  5086. },
  5087. "notification-url": "https://packagist.org/downloads/",
  5088. "license": [
  5089. "MIT"
  5090. ],
  5091. "authors": [
  5092. {
  5093. "name": "slowlyo",
  5094. "email": "slowlyo_email@qq.com"
  5095. }
  5096. ],
  5097. "description": "OwlAdmin 扩展包,用于记录用户操作日志",
  5098. "homepage": "https://github.com/slowlyo/owl-operation-log",
  5099. "keywords": [
  5100. "extension",
  5101. "owl-admin"
  5102. ],
  5103. "support": {
  5104. "issues": "https://github.com/slowlyo/owl-operation-log/issues",
  5105. "source": "https://github.com/slowlyo/owl-operation-log/tree/v0.2.3"
  5106. },
  5107. "time": "2024-03-28T06:49:24+00:00"
  5108. },
  5109. {
  5110. "name": "slowlyo/owl-system-backup",
  5111. "version": "v0.3.1",
  5112. "source": {
  5113. "type": "git",
  5114. "url": "https://github.com/owl-admin/system-backup.git",
  5115. "reference": "3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3"
  5116. },
  5117. "dist": {
  5118. "type": "zip",
  5119. "url": "https://api.github.com/repos/owl-admin/system-backup/zipball/3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3",
  5120. "reference": "3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3",
  5121. "shasum": ""
  5122. },
  5123. "require": {
  5124. "php": ">=8.0",
  5125. "slowlyo/owl-admin": "*"
  5126. },
  5127. "type": "library",
  5128. "extra": {
  5129. "owl-admin": "Slowlyo\\OwlSystemBackup\\OwlSystemBackupServiceProvider",
  5130. "laravel": {
  5131. "providers": [
  5132. "Slowlyo\\OwlSystemBackup\\OwlSystemBackupServiceProvider"
  5133. ]
  5134. }
  5135. },
  5136. "autoload": {
  5137. "psr-4": {
  5138. "Slowlyo\\OwlSystemBackup\\": "src/"
  5139. }
  5140. },
  5141. "notification-url": "https://packagist.org/downloads/",
  5142. "license": [
  5143. "MIT"
  5144. ],
  5145. "authors": [
  5146. {
  5147. "name": "slowlyo",
  5148. "email": "slowlyo_email@qq.com"
  5149. }
  5150. ],
  5151. "description": "Owl Admin 系统备份扩展",
  5152. "homepage": "https://github.com/slowlyo/owl-system-backup",
  5153. "keywords": [
  5154. "extension",
  5155. "owl-admin"
  5156. ],
  5157. "support": {
  5158. "issues": "https://github.com/owl-admin/system-backup/issues",
  5159. "source": "https://github.com/owl-admin/system-backup/tree/v0.3.1"
  5160. },
  5161. "time": "2024-05-22T02:58:47+00:00"
  5162. },
  5163. {
  5164. "name": "spatie/data-transfer-object",
  5165. "version": "3.9.1",
  5166. "source": {
  5167. "type": "git",
  5168. "url": "https://github.com/spatie/data-transfer-object.git",
  5169. "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8"
  5170. },
  5171. "dist": {
  5172. "type": "zip",
  5173. "url": "https://api.github.com/repos/spatie/data-transfer-object/zipball/1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8",
  5174. "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8",
  5175. "shasum": ""
  5176. },
  5177. "require": {
  5178. "php": "^8.0"
  5179. },
  5180. "require-dev": {
  5181. "illuminate/collections": "^8.36",
  5182. "jetbrains/phpstorm-attributes": "^1.0",
  5183. "larapack/dd": "^1.1",
  5184. "phpunit/phpunit": "^9.5.5"
  5185. },
  5186. "type": "library",
  5187. "autoload": {
  5188. "psr-4": {
  5189. "Spatie\\DataTransferObject\\": "src"
  5190. }
  5191. },
  5192. "notification-url": "https://packagist.org/downloads/",
  5193. "license": [
  5194. "MIT"
  5195. ],
  5196. "authors": [
  5197. {
  5198. "name": "Brent Roose",
  5199. "email": "brent@spatie.be",
  5200. "homepage": "https://spatie.be",
  5201. "role": "Developer"
  5202. }
  5203. ],
  5204. "description": "Data transfer objects with batteries included",
  5205. "homepage": "https://github.com/spatie/data-transfer-object",
  5206. "keywords": [
  5207. "data-transfer-object",
  5208. "spatie"
  5209. ],
  5210. "support": {
  5211. "issues": "https://github.com/spatie/data-transfer-object/issues",
  5212. "source": "https://github.com/spatie/data-transfer-object/tree/3.9.1"
  5213. },
  5214. "funding": [
  5215. {
  5216. "url": "https://spatie.be/open-source/support-us",
  5217. "type": "custom"
  5218. },
  5219. {
  5220. "url": "https://github.com/spatie",
  5221. "type": "github"
  5222. }
  5223. ],
  5224. "abandoned": "spatie/laravel-data",
  5225. "time": "2022-09-16T13:34:38+00:00"
  5226. },
  5227. {
  5228. "name": "symfony/cache",
  5229. "version": "v7.1.7",
  5230. "source": {
  5231. "type": "git",
  5232. "url": "https://github.com/symfony/cache.git",
  5233. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928"
  5234. },
  5235. "dist": {
  5236. "type": "zip",
  5237. "url": "https://api.github.com/repos/symfony/cache/zipball/23b61c9592ee72233c31625f0ae805dd1571e928",
  5238. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928",
  5239. "shasum": ""
  5240. },
  5241. "require": {
  5242. "php": ">=8.2",
  5243. "psr/cache": "^2.0|^3.0",
  5244. "psr/log": "^1.1|^2|^3",
  5245. "symfony/cache-contracts": "^2.5|^3",
  5246. "symfony/deprecation-contracts": "^2.5|^3.0",
  5247. "symfony/service-contracts": "^2.5|^3",
  5248. "symfony/var-exporter": "^6.4|^7.0"
  5249. },
  5250. "conflict": {
  5251. "doctrine/dbal": "<3.6",
  5252. "symfony/dependency-injection": "<6.4",
  5253. "symfony/http-kernel": "<6.4",
  5254. "symfony/var-dumper": "<6.4"
  5255. },
  5256. "provide": {
  5257. "psr/cache-implementation": "2.0|3.0",
  5258. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  5259. "symfony/cache-implementation": "1.1|2.0|3.0"
  5260. },
  5261. "require-dev": {
  5262. "cache/integration-tests": "dev-master",
  5263. "doctrine/dbal": "^3.6|^4",
  5264. "predis/predis": "^1.1|^2.0",
  5265. "psr/simple-cache": "^1.0|^2.0|^3.0",
  5266. "symfony/config": "^6.4|^7.0",
  5267. "symfony/dependency-injection": "^6.4|^7.0",
  5268. "symfony/filesystem": "^6.4|^7.0",
  5269. "symfony/http-kernel": "^6.4|^7.0",
  5270. "symfony/messenger": "^6.4|^7.0",
  5271. "symfony/var-dumper": "^6.4|^7.0"
  5272. },
  5273. "type": "library",
  5274. "autoload": {
  5275. "psr-4": {
  5276. "Symfony\\Component\\Cache\\": ""
  5277. },
  5278. "classmap": [
  5279. "Traits/ValueWrapper.php"
  5280. ],
  5281. "exclude-from-classmap": [
  5282. "/Tests/"
  5283. ]
  5284. },
  5285. "notification-url": "https://packagist.org/downloads/",
  5286. "license": [
  5287. "MIT"
  5288. ],
  5289. "authors": [
  5290. {
  5291. "name": "Nicolas Grekas",
  5292. "email": "p@tchwork.com"
  5293. },
  5294. {
  5295. "name": "Symfony Community",
  5296. "homepage": "https://symfony.com/contributors"
  5297. }
  5298. ],
  5299. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5300. "homepage": "https://symfony.com",
  5301. "keywords": [
  5302. "caching",
  5303. "psr6"
  5304. ],
  5305. "support": {
  5306. "source": "https://github.com/symfony/cache/tree/v7.1.7"
  5307. },
  5308. "funding": [
  5309. {
  5310. "url": "https://symfony.com/sponsor",
  5311. "type": "custom"
  5312. },
  5313. {
  5314. "url": "https://github.com/fabpot",
  5315. "type": "github"
  5316. },
  5317. {
  5318. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5319. "type": "tidelift"
  5320. }
  5321. ],
  5322. "time": "2024-11-05T15:34:55+00:00"
  5323. },
  5324. {
  5325. "name": "symfony/cache-contracts",
  5326. "version": "v3.5.0",
  5327. "source": {
  5328. "type": "git",
  5329. "url": "https://github.com/symfony/cache-contracts.git",
  5330. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  5331. },
  5332. "dist": {
  5333. "type": "zip",
  5334. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  5335. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  5336. "shasum": ""
  5337. },
  5338. "require": {
  5339. "php": ">=8.1",
  5340. "psr/cache": "^3.0"
  5341. },
  5342. "type": "library",
  5343. "extra": {
  5344. "branch-alias": {
  5345. "dev-main": "3.5-dev"
  5346. },
  5347. "thanks": {
  5348. "name": "symfony/contracts",
  5349. "url": "https://github.com/symfony/contracts"
  5350. }
  5351. },
  5352. "autoload": {
  5353. "psr-4": {
  5354. "Symfony\\Contracts\\Cache\\": ""
  5355. }
  5356. },
  5357. "notification-url": "https://packagist.org/downloads/",
  5358. "license": [
  5359. "MIT"
  5360. ],
  5361. "authors": [
  5362. {
  5363. "name": "Nicolas Grekas",
  5364. "email": "p@tchwork.com"
  5365. },
  5366. {
  5367. "name": "Symfony Community",
  5368. "homepage": "https://symfony.com/contributors"
  5369. }
  5370. ],
  5371. "description": "Generic abstractions related to caching",
  5372. "homepage": "https://symfony.com",
  5373. "keywords": [
  5374. "abstractions",
  5375. "contracts",
  5376. "decoupling",
  5377. "interfaces",
  5378. "interoperability",
  5379. "standards"
  5380. ],
  5381. "support": {
  5382. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  5383. },
  5384. "funding": [
  5385. {
  5386. "url": "https://symfony.com/sponsor",
  5387. "type": "custom"
  5388. },
  5389. {
  5390. "url": "https://github.com/fabpot",
  5391. "type": "github"
  5392. },
  5393. {
  5394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5395. "type": "tidelift"
  5396. }
  5397. ],
  5398. "time": "2024-04-18T09:32:20+00:00"
  5399. },
  5400. {
  5401. "name": "symfony/clock",
  5402. "version": "v7.1.6",
  5403. "source": {
  5404. "type": "git",
  5405. "url": "https://github.com/symfony/clock.git",
  5406. "reference": "97bebc53548684c17ed696bc8af016880f0f098d"
  5407. },
  5408. "dist": {
  5409. "type": "zip",
  5410. "url": "https://api.github.com/repos/symfony/clock/zipball/97bebc53548684c17ed696bc8af016880f0f098d",
  5411. "reference": "97bebc53548684c17ed696bc8af016880f0f098d",
  5412. "shasum": ""
  5413. },
  5414. "require": {
  5415. "php": ">=8.2",
  5416. "psr/clock": "^1.0",
  5417. "symfony/polyfill-php83": "^1.28"
  5418. },
  5419. "provide": {
  5420. "psr/clock-implementation": "1.0"
  5421. },
  5422. "type": "library",
  5423. "autoload": {
  5424. "files": [
  5425. "Resources/now.php"
  5426. ],
  5427. "psr-4": {
  5428. "Symfony\\Component\\Clock\\": ""
  5429. },
  5430. "exclude-from-classmap": [
  5431. "/Tests/"
  5432. ]
  5433. },
  5434. "notification-url": "https://packagist.org/downloads/",
  5435. "license": [
  5436. "MIT"
  5437. ],
  5438. "authors": [
  5439. {
  5440. "name": "Nicolas Grekas",
  5441. "email": "p@tchwork.com"
  5442. },
  5443. {
  5444. "name": "Symfony Community",
  5445. "homepage": "https://symfony.com/contributors"
  5446. }
  5447. ],
  5448. "description": "Decouples applications from the system clock",
  5449. "homepage": "https://symfony.com",
  5450. "keywords": [
  5451. "clock",
  5452. "psr20",
  5453. "time"
  5454. ],
  5455. "support": {
  5456. "source": "https://github.com/symfony/clock/tree/v7.1.6"
  5457. },
  5458. "funding": [
  5459. {
  5460. "url": "https://symfony.com/sponsor",
  5461. "type": "custom"
  5462. },
  5463. {
  5464. "url": "https://github.com/fabpot",
  5465. "type": "github"
  5466. },
  5467. {
  5468. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5469. "type": "tidelift"
  5470. }
  5471. ],
  5472. "time": "2024-09-25T14:20:29+00:00"
  5473. },
  5474. {
  5475. "name": "symfony/console",
  5476. "version": "v7.1.8",
  5477. "source": {
  5478. "type": "git",
  5479. "url": "https://github.com/symfony/console.git",
  5480. "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5"
  5481. },
  5482. "dist": {
  5483. "type": "zip",
  5484. "url": "https://api.github.com/repos/symfony/console/zipball/ff04e5b5ba043d2badfb308197b9e6b42883fcd5",
  5485. "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5",
  5486. "shasum": ""
  5487. },
  5488. "require": {
  5489. "php": ">=8.2",
  5490. "symfony/polyfill-mbstring": "~1.0",
  5491. "symfony/service-contracts": "^2.5|^3",
  5492. "symfony/string": "^6.4|^7.0"
  5493. },
  5494. "conflict": {
  5495. "symfony/dependency-injection": "<6.4",
  5496. "symfony/dotenv": "<6.4",
  5497. "symfony/event-dispatcher": "<6.4",
  5498. "symfony/lock": "<6.4",
  5499. "symfony/process": "<6.4"
  5500. },
  5501. "provide": {
  5502. "psr/log-implementation": "1.0|2.0|3.0"
  5503. },
  5504. "require-dev": {
  5505. "psr/log": "^1|^2|^3",
  5506. "symfony/config": "^6.4|^7.0",
  5507. "symfony/dependency-injection": "^6.4|^7.0",
  5508. "symfony/event-dispatcher": "^6.4|^7.0",
  5509. "symfony/http-foundation": "^6.4|^7.0",
  5510. "symfony/http-kernel": "^6.4|^7.0",
  5511. "symfony/lock": "^6.4|^7.0",
  5512. "symfony/messenger": "^6.4|^7.0",
  5513. "symfony/process": "^6.4|^7.0",
  5514. "symfony/stopwatch": "^6.4|^7.0",
  5515. "symfony/var-dumper": "^6.4|^7.0"
  5516. },
  5517. "type": "library",
  5518. "autoload": {
  5519. "psr-4": {
  5520. "Symfony\\Component\\Console\\": ""
  5521. },
  5522. "exclude-from-classmap": [
  5523. "/Tests/"
  5524. ]
  5525. },
  5526. "notification-url": "https://packagist.org/downloads/",
  5527. "license": [
  5528. "MIT"
  5529. ],
  5530. "authors": [
  5531. {
  5532. "name": "Fabien Potencier",
  5533. "email": "fabien@symfony.com"
  5534. },
  5535. {
  5536. "name": "Symfony Community",
  5537. "homepage": "https://symfony.com/contributors"
  5538. }
  5539. ],
  5540. "description": "Eases the creation of beautiful and testable command line interfaces",
  5541. "homepage": "https://symfony.com",
  5542. "keywords": [
  5543. "cli",
  5544. "command-line",
  5545. "console",
  5546. "terminal"
  5547. ],
  5548. "support": {
  5549. "source": "https://github.com/symfony/console/tree/v7.1.8"
  5550. },
  5551. "funding": [
  5552. {
  5553. "url": "https://symfony.com/sponsor",
  5554. "type": "custom"
  5555. },
  5556. {
  5557. "url": "https://github.com/fabpot",
  5558. "type": "github"
  5559. },
  5560. {
  5561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5562. "type": "tidelift"
  5563. }
  5564. ],
  5565. "time": "2024-11-06T14:23:19+00:00"
  5566. },
  5567. {
  5568. "name": "symfony/css-selector",
  5569. "version": "v7.1.6",
  5570. "source": {
  5571. "type": "git",
  5572. "url": "https://github.com/symfony/css-selector.git",
  5573. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66"
  5574. },
  5575. "dist": {
  5576. "type": "zip",
  5577. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  5578. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  5579. "shasum": ""
  5580. },
  5581. "require": {
  5582. "php": ">=8.2"
  5583. },
  5584. "type": "library",
  5585. "autoload": {
  5586. "psr-4": {
  5587. "Symfony\\Component\\CssSelector\\": ""
  5588. },
  5589. "exclude-from-classmap": [
  5590. "/Tests/"
  5591. ]
  5592. },
  5593. "notification-url": "https://packagist.org/downloads/",
  5594. "license": [
  5595. "MIT"
  5596. ],
  5597. "authors": [
  5598. {
  5599. "name": "Fabien Potencier",
  5600. "email": "fabien@symfony.com"
  5601. },
  5602. {
  5603. "name": "Jean-François Simon",
  5604. "email": "jeanfrancois.simon@sensiolabs.com"
  5605. },
  5606. {
  5607. "name": "Symfony Community",
  5608. "homepage": "https://symfony.com/contributors"
  5609. }
  5610. ],
  5611. "description": "Converts CSS selectors to XPath expressions",
  5612. "homepage": "https://symfony.com",
  5613. "support": {
  5614. "source": "https://github.com/symfony/css-selector/tree/v7.1.6"
  5615. },
  5616. "funding": [
  5617. {
  5618. "url": "https://symfony.com/sponsor",
  5619. "type": "custom"
  5620. },
  5621. {
  5622. "url": "https://github.com/fabpot",
  5623. "type": "github"
  5624. },
  5625. {
  5626. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5627. "type": "tidelift"
  5628. }
  5629. ],
  5630. "time": "2024-09-25T14:20:29+00:00"
  5631. },
  5632. {
  5633. "name": "symfony/deprecation-contracts",
  5634. "version": "v3.5.0",
  5635. "source": {
  5636. "type": "git",
  5637. "url": "https://github.com/symfony/deprecation-contracts.git",
  5638. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5639. },
  5640. "dist": {
  5641. "type": "zip",
  5642. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5643. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5644. "shasum": ""
  5645. },
  5646. "require": {
  5647. "php": ">=8.1"
  5648. },
  5649. "type": "library",
  5650. "extra": {
  5651. "branch-alias": {
  5652. "dev-main": "3.5-dev"
  5653. },
  5654. "thanks": {
  5655. "name": "symfony/contracts",
  5656. "url": "https://github.com/symfony/contracts"
  5657. }
  5658. },
  5659. "autoload": {
  5660. "files": [
  5661. "function.php"
  5662. ]
  5663. },
  5664. "notification-url": "https://packagist.org/downloads/",
  5665. "license": [
  5666. "MIT"
  5667. ],
  5668. "authors": [
  5669. {
  5670. "name": "Nicolas Grekas",
  5671. "email": "p@tchwork.com"
  5672. },
  5673. {
  5674. "name": "Symfony Community",
  5675. "homepage": "https://symfony.com/contributors"
  5676. }
  5677. ],
  5678. "description": "A generic function and convention to trigger deprecation notices",
  5679. "homepage": "https://symfony.com",
  5680. "support": {
  5681. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  5682. },
  5683. "funding": [
  5684. {
  5685. "url": "https://symfony.com/sponsor",
  5686. "type": "custom"
  5687. },
  5688. {
  5689. "url": "https://github.com/fabpot",
  5690. "type": "github"
  5691. },
  5692. {
  5693. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5694. "type": "tidelift"
  5695. }
  5696. ],
  5697. "time": "2024-04-18T09:32:20+00:00"
  5698. },
  5699. {
  5700. "name": "symfony/error-handler",
  5701. "version": "v7.1.7",
  5702. "source": {
  5703. "type": "git",
  5704. "url": "https://github.com/symfony/error-handler.git",
  5705. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342"
  5706. },
  5707. "dist": {
  5708. "type": "zip",
  5709. "url": "https://api.github.com/repos/symfony/error-handler/zipball/010e44661f4c6babaf8c4862fe68c24a53903342",
  5710. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342",
  5711. "shasum": ""
  5712. },
  5713. "require": {
  5714. "php": ">=8.2",
  5715. "psr/log": "^1|^2|^3",
  5716. "symfony/var-dumper": "^6.4|^7.0"
  5717. },
  5718. "conflict": {
  5719. "symfony/deprecation-contracts": "<2.5",
  5720. "symfony/http-kernel": "<6.4"
  5721. },
  5722. "require-dev": {
  5723. "symfony/deprecation-contracts": "^2.5|^3",
  5724. "symfony/http-kernel": "^6.4|^7.0",
  5725. "symfony/serializer": "^6.4|^7.0"
  5726. },
  5727. "bin": [
  5728. "Resources/bin/patch-type-declarations"
  5729. ],
  5730. "type": "library",
  5731. "autoload": {
  5732. "psr-4": {
  5733. "Symfony\\Component\\ErrorHandler\\": ""
  5734. },
  5735. "exclude-from-classmap": [
  5736. "/Tests/"
  5737. ]
  5738. },
  5739. "notification-url": "https://packagist.org/downloads/",
  5740. "license": [
  5741. "MIT"
  5742. ],
  5743. "authors": [
  5744. {
  5745. "name": "Fabien Potencier",
  5746. "email": "fabien@symfony.com"
  5747. },
  5748. {
  5749. "name": "Symfony Community",
  5750. "homepage": "https://symfony.com/contributors"
  5751. }
  5752. ],
  5753. "description": "Provides tools to manage errors and ease debugging PHP code",
  5754. "homepage": "https://symfony.com",
  5755. "support": {
  5756. "source": "https://github.com/symfony/error-handler/tree/v7.1.7"
  5757. },
  5758. "funding": [
  5759. {
  5760. "url": "https://symfony.com/sponsor",
  5761. "type": "custom"
  5762. },
  5763. {
  5764. "url": "https://github.com/fabpot",
  5765. "type": "github"
  5766. },
  5767. {
  5768. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5769. "type": "tidelift"
  5770. }
  5771. ],
  5772. "time": "2024-11-05T15:34:55+00:00"
  5773. },
  5774. {
  5775. "name": "symfony/event-dispatcher",
  5776. "version": "v7.1.6",
  5777. "source": {
  5778. "type": "git",
  5779. "url": "https://github.com/symfony/event-dispatcher.git",
  5780. "reference": "87254c78dd50721cfd015b62277a8281c5589702"
  5781. },
  5782. "dist": {
  5783. "type": "zip",
  5784. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87254c78dd50721cfd015b62277a8281c5589702",
  5785. "reference": "87254c78dd50721cfd015b62277a8281c5589702",
  5786. "shasum": ""
  5787. },
  5788. "require": {
  5789. "php": ">=8.2",
  5790. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5791. },
  5792. "conflict": {
  5793. "symfony/dependency-injection": "<6.4",
  5794. "symfony/service-contracts": "<2.5"
  5795. },
  5796. "provide": {
  5797. "psr/event-dispatcher-implementation": "1.0",
  5798. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5799. },
  5800. "require-dev": {
  5801. "psr/log": "^1|^2|^3",
  5802. "symfony/config": "^6.4|^7.0",
  5803. "symfony/dependency-injection": "^6.4|^7.0",
  5804. "symfony/error-handler": "^6.4|^7.0",
  5805. "symfony/expression-language": "^6.4|^7.0",
  5806. "symfony/http-foundation": "^6.4|^7.0",
  5807. "symfony/service-contracts": "^2.5|^3",
  5808. "symfony/stopwatch": "^6.4|^7.0"
  5809. },
  5810. "type": "library",
  5811. "autoload": {
  5812. "psr-4": {
  5813. "Symfony\\Component\\EventDispatcher\\": ""
  5814. },
  5815. "exclude-from-classmap": [
  5816. "/Tests/"
  5817. ]
  5818. },
  5819. "notification-url": "https://packagist.org/downloads/",
  5820. "license": [
  5821. "MIT"
  5822. ],
  5823. "authors": [
  5824. {
  5825. "name": "Fabien Potencier",
  5826. "email": "fabien@symfony.com"
  5827. },
  5828. {
  5829. "name": "Symfony Community",
  5830. "homepage": "https://symfony.com/contributors"
  5831. }
  5832. ],
  5833. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5834. "homepage": "https://symfony.com",
  5835. "support": {
  5836. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.6"
  5837. },
  5838. "funding": [
  5839. {
  5840. "url": "https://symfony.com/sponsor",
  5841. "type": "custom"
  5842. },
  5843. {
  5844. "url": "https://github.com/fabpot",
  5845. "type": "github"
  5846. },
  5847. {
  5848. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5849. "type": "tidelift"
  5850. }
  5851. ],
  5852. "time": "2024-09-25T14:20:29+00:00"
  5853. },
  5854. {
  5855. "name": "symfony/event-dispatcher-contracts",
  5856. "version": "v3.5.0",
  5857. "source": {
  5858. "type": "git",
  5859. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5860. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  5861. },
  5862. "dist": {
  5863. "type": "zip",
  5864. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  5865. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  5866. "shasum": ""
  5867. },
  5868. "require": {
  5869. "php": ">=8.1",
  5870. "psr/event-dispatcher": "^1"
  5871. },
  5872. "type": "library",
  5873. "extra": {
  5874. "branch-alias": {
  5875. "dev-main": "3.5-dev"
  5876. },
  5877. "thanks": {
  5878. "name": "symfony/contracts",
  5879. "url": "https://github.com/symfony/contracts"
  5880. }
  5881. },
  5882. "autoload": {
  5883. "psr-4": {
  5884. "Symfony\\Contracts\\EventDispatcher\\": ""
  5885. }
  5886. },
  5887. "notification-url": "https://packagist.org/downloads/",
  5888. "license": [
  5889. "MIT"
  5890. ],
  5891. "authors": [
  5892. {
  5893. "name": "Nicolas Grekas",
  5894. "email": "p@tchwork.com"
  5895. },
  5896. {
  5897. "name": "Symfony Community",
  5898. "homepage": "https://symfony.com/contributors"
  5899. }
  5900. ],
  5901. "description": "Generic abstractions related to dispatching event",
  5902. "homepage": "https://symfony.com",
  5903. "keywords": [
  5904. "abstractions",
  5905. "contracts",
  5906. "decoupling",
  5907. "interfaces",
  5908. "interoperability",
  5909. "standards"
  5910. ],
  5911. "support": {
  5912. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  5913. },
  5914. "funding": [
  5915. {
  5916. "url": "https://symfony.com/sponsor",
  5917. "type": "custom"
  5918. },
  5919. {
  5920. "url": "https://github.com/fabpot",
  5921. "type": "github"
  5922. },
  5923. {
  5924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5925. "type": "tidelift"
  5926. }
  5927. ],
  5928. "time": "2024-04-18T09:32:20+00:00"
  5929. },
  5930. {
  5931. "name": "symfony/finder",
  5932. "version": "v7.1.6",
  5933. "source": {
  5934. "type": "git",
  5935. "url": "https://github.com/symfony/finder.git",
  5936. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8"
  5937. },
  5938. "dist": {
  5939. "type": "zip",
  5940. "url": "https://api.github.com/repos/symfony/finder/zipball/2cb89664897be33f78c65d3d2845954c8d7a43b8",
  5941. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8",
  5942. "shasum": ""
  5943. },
  5944. "require": {
  5945. "php": ">=8.2"
  5946. },
  5947. "require-dev": {
  5948. "symfony/filesystem": "^6.4|^7.0"
  5949. },
  5950. "type": "library",
  5951. "autoload": {
  5952. "psr-4": {
  5953. "Symfony\\Component\\Finder\\": ""
  5954. },
  5955. "exclude-from-classmap": [
  5956. "/Tests/"
  5957. ]
  5958. },
  5959. "notification-url": "https://packagist.org/downloads/",
  5960. "license": [
  5961. "MIT"
  5962. ],
  5963. "authors": [
  5964. {
  5965. "name": "Fabien Potencier",
  5966. "email": "fabien@symfony.com"
  5967. },
  5968. {
  5969. "name": "Symfony Community",
  5970. "homepage": "https://symfony.com/contributors"
  5971. }
  5972. ],
  5973. "description": "Finds files and directories via an intuitive fluent interface",
  5974. "homepage": "https://symfony.com",
  5975. "support": {
  5976. "source": "https://github.com/symfony/finder/tree/v7.1.6"
  5977. },
  5978. "funding": [
  5979. {
  5980. "url": "https://symfony.com/sponsor",
  5981. "type": "custom"
  5982. },
  5983. {
  5984. "url": "https://github.com/fabpot",
  5985. "type": "github"
  5986. },
  5987. {
  5988. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5989. "type": "tidelift"
  5990. }
  5991. ],
  5992. "time": "2024-10-01T08:31:23+00:00"
  5993. },
  5994. {
  5995. "name": "symfony/http-client",
  5996. "version": "v7.1.8",
  5997. "source": {
  5998. "type": "git",
  5999. "url": "https://github.com/symfony/http-client.git",
  6000. "reference": "c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a"
  6001. },
  6002. "dist": {
  6003. "type": "zip",
  6004. "url": "https://api.github.com/repos/symfony/http-client/zipball/c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a",
  6005. "reference": "c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a",
  6006. "shasum": ""
  6007. },
  6008. "require": {
  6009. "php": ">=8.2",
  6010. "psr/log": "^1|^2|^3",
  6011. "symfony/deprecation-contracts": "^2.5|^3",
  6012. "symfony/http-client-contracts": "^3.4.1",
  6013. "symfony/service-contracts": "^2.5|^3"
  6014. },
  6015. "conflict": {
  6016. "php-http/discovery": "<1.15",
  6017. "symfony/http-foundation": "<6.4"
  6018. },
  6019. "provide": {
  6020. "php-http/async-client-implementation": "*",
  6021. "php-http/client-implementation": "*",
  6022. "psr/http-client-implementation": "1.0",
  6023. "symfony/http-client-implementation": "3.0"
  6024. },
  6025. "require-dev": {
  6026. "amphp/amp": "^2.5",
  6027. "amphp/http-client": "^4.2.1",
  6028. "amphp/http-tunnel": "^1.0",
  6029. "amphp/socket": "^1.1",
  6030. "guzzlehttp/promises": "^1.4|^2.0",
  6031. "nyholm/psr7": "^1.0",
  6032. "php-http/httplug": "^1.0|^2.0",
  6033. "psr/http-client": "^1.0",
  6034. "symfony/dependency-injection": "^6.4|^7.0",
  6035. "symfony/http-kernel": "^6.4|^7.0",
  6036. "symfony/messenger": "^6.4|^7.0",
  6037. "symfony/process": "^6.4|^7.0",
  6038. "symfony/rate-limiter": "^6.4|^7.0",
  6039. "symfony/stopwatch": "^6.4|^7.0"
  6040. },
  6041. "type": "library",
  6042. "autoload": {
  6043. "psr-4": {
  6044. "Symfony\\Component\\HttpClient\\": ""
  6045. },
  6046. "exclude-from-classmap": [
  6047. "/Tests/"
  6048. ]
  6049. },
  6050. "notification-url": "https://packagist.org/downloads/",
  6051. "license": [
  6052. "MIT"
  6053. ],
  6054. "authors": [
  6055. {
  6056. "name": "Nicolas Grekas",
  6057. "email": "p@tchwork.com"
  6058. },
  6059. {
  6060. "name": "Symfony Community",
  6061. "homepage": "https://symfony.com/contributors"
  6062. }
  6063. ],
  6064. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  6065. "homepage": "https://symfony.com",
  6066. "keywords": [
  6067. "http"
  6068. ],
  6069. "support": {
  6070. "source": "https://github.com/symfony/http-client/tree/v7.1.8"
  6071. },
  6072. "funding": [
  6073. {
  6074. "url": "https://symfony.com/sponsor",
  6075. "type": "custom"
  6076. },
  6077. {
  6078. "url": "https://github.com/fabpot",
  6079. "type": "github"
  6080. },
  6081. {
  6082. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6083. "type": "tidelift"
  6084. }
  6085. ],
  6086. "time": "2024-11-13T13:40:27+00:00"
  6087. },
  6088. {
  6089. "name": "symfony/http-client-contracts",
  6090. "version": "v3.5.0",
  6091. "source": {
  6092. "type": "git",
  6093. "url": "https://github.com/symfony/http-client-contracts.git",
  6094. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  6095. },
  6096. "dist": {
  6097. "type": "zip",
  6098. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  6099. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  6100. "shasum": ""
  6101. },
  6102. "require": {
  6103. "php": ">=8.1"
  6104. },
  6105. "type": "library",
  6106. "extra": {
  6107. "branch-alias": {
  6108. "dev-main": "3.5-dev"
  6109. },
  6110. "thanks": {
  6111. "name": "symfony/contracts",
  6112. "url": "https://github.com/symfony/contracts"
  6113. }
  6114. },
  6115. "autoload": {
  6116. "psr-4": {
  6117. "Symfony\\Contracts\\HttpClient\\": ""
  6118. },
  6119. "exclude-from-classmap": [
  6120. "/Test/"
  6121. ]
  6122. },
  6123. "notification-url": "https://packagist.org/downloads/",
  6124. "license": [
  6125. "MIT"
  6126. ],
  6127. "authors": [
  6128. {
  6129. "name": "Nicolas Grekas",
  6130. "email": "p@tchwork.com"
  6131. },
  6132. {
  6133. "name": "Symfony Community",
  6134. "homepage": "https://symfony.com/contributors"
  6135. }
  6136. ],
  6137. "description": "Generic abstractions related to HTTP clients",
  6138. "homepage": "https://symfony.com",
  6139. "keywords": [
  6140. "abstractions",
  6141. "contracts",
  6142. "decoupling",
  6143. "interfaces",
  6144. "interoperability",
  6145. "standards"
  6146. ],
  6147. "support": {
  6148. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  6149. },
  6150. "funding": [
  6151. {
  6152. "url": "https://symfony.com/sponsor",
  6153. "type": "custom"
  6154. },
  6155. {
  6156. "url": "https://github.com/fabpot",
  6157. "type": "github"
  6158. },
  6159. {
  6160. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6161. "type": "tidelift"
  6162. }
  6163. ],
  6164. "time": "2024-04-18T09:32:20+00:00"
  6165. },
  6166. {
  6167. "name": "symfony/http-foundation",
  6168. "version": "v7.1.8",
  6169. "source": {
  6170. "type": "git",
  6171. "url": "https://github.com/symfony/http-foundation.git",
  6172. "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112"
  6173. },
  6174. "dist": {
  6175. "type": "zip",
  6176. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f4419ec69ccfc3f725a4de7c20e4e57626d10112",
  6177. "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112",
  6178. "shasum": ""
  6179. },
  6180. "require": {
  6181. "php": ">=8.2",
  6182. "symfony/polyfill-mbstring": "~1.1",
  6183. "symfony/polyfill-php83": "^1.27"
  6184. },
  6185. "conflict": {
  6186. "doctrine/dbal": "<3.6",
  6187. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  6188. },
  6189. "require-dev": {
  6190. "doctrine/dbal": "^3.6|^4",
  6191. "predis/predis": "^1.1|^2.0",
  6192. "symfony/cache": "^6.4.12|^7.1.5",
  6193. "symfony/dependency-injection": "^6.4|^7.0",
  6194. "symfony/expression-language": "^6.4|^7.0",
  6195. "symfony/http-kernel": "^6.4|^7.0",
  6196. "symfony/mime": "^6.4|^7.0",
  6197. "symfony/rate-limiter": "^6.4|^7.0"
  6198. },
  6199. "type": "library",
  6200. "autoload": {
  6201. "psr-4": {
  6202. "Symfony\\Component\\HttpFoundation\\": ""
  6203. },
  6204. "exclude-from-classmap": [
  6205. "/Tests/"
  6206. ]
  6207. },
  6208. "notification-url": "https://packagist.org/downloads/",
  6209. "license": [
  6210. "MIT"
  6211. ],
  6212. "authors": [
  6213. {
  6214. "name": "Fabien Potencier",
  6215. "email": "fabien@symfony.com"
  6216. },
  6217. {
  6218. "name": "Symfony Community",
  6219. "homepage": "https://symfony.com/contributors"
  6220. }
  6221. ],
  6222. "description": "Defines an object-oriented layer for the HTTP specification",
  6223. "homepage": "https://symfony.com",
  6224. "support": {
  6225. "source": "https://github.com/symfony/http-foundation/tree/v7.1.8"
  6226. },
  6227. "funding": [
  6228. {
  6229. "url": "https://symfony.com/sponsor",
  6230. "type": "custom"
  6231. },
  6232. {
  6233. "url": "https://github.com/fabpot",
  6234. "type": "github"
  6235. },
  6236. {
  6237. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6238. "type": "tidelift"
  6239. }
  6240. ],
  6241. "time": "2024-11-09T09:16:45+00:00"
  6242. },
  6243. {
  6244. "name": "symfony/http-kernel",
  6245. "version": "v7.1.8",
  6246. "source": {
  6247. "type": "git",
  6248. "url": "https://github.com/symfony/http-kernel.git",
  6249. "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e"
  6250. },
  6251. "dist": {
  6252. "type": "zip",
  6253. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/33fef24e3dc79d6d30bf4936531f2f4bd2ca189e",
  6254. "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e",
  6255. "shasum": ""
  6256. },
  6257. "require": {
  6258. "php": ">=8.2",
  6259. "psr/log": "^1|^2|^3",
  6260. "symfony/deprecation-contracts": "^2.5|^3",
  6261. "symfony/error-handler": "^6.4|^7.0",
  6262. "symfony/event-dispatcher": "^6.4|^7.0",
  6263. "symfony/http-foundation": "^6.4|^7.0",
  6264. "symfony/polyfill-ctype": "^1.8"
  6265. },
  6266. "conflict": {
  6267. "symfony/browser-kit": "<6.4",
  6268. "symfony/cache": "<6.4",
  6269. "symfony/config": "<6.4",
  6270. "symfony/console": "<6.4",
  6271. "symfony/dependency-injection": "<6.4",
  6272. "symfony/doctrine-bridge": "<6.4",
  6273. "symfony/form": "<6.4",
  6274. "symfony/http-client": "<6.4",
  6275. "symfony/http-client-contracts": "<2.5",
  6276. "symfony/mailer": "<6.4",
  6277. "symfony/messenger": "<6.4",
  6278. "symfony/translation": "<6.4",
  6279. "symfony/translation-contracts": "<2.5",
  6280. "symfony/twig-bridge": "<6.4",
  6281. "symfony/validator": "<6.4",
  6282. "symfony/var-dumper": "<6.4",
  6283. "twig/twig": "<3.0.4"
  6284. },
  6285. "provide": {
  6286. "psr/log-implementation": "1.0|2.0|3.0"
  6287. },
  6288. "require-dev": {
  6289. "psr/cache": "^1.0|^2.0|^3.0",
  6290. "symfony/browser-kit": "^6.4|^7.0",
  6291. "symfony/clock": "^6.4|^7.0",
  6292. "symfony/config": "^6.4|^7.0",
  6293. "symfony/console": "^6.4|^7.0",
  6294. "symfony/css-selector": "^6.4|^7.0",
  6295. "symfony/dependency-injection": "^6.4|^7.0",
  6296. "symfony/dom-crawler": "^6.4|^7.0",
  6297. "symfony/expression-language": "^6.4|^7.0",
  6298. "symfony/finder": "^6.4|^7.0",
  6299. "symfony/http-client-contracts": "^2.5|^3",
  6300. "symfony/process": "^6.4|^7.0",
  6301. "symfony/property-access": "^7.1",
  6302. "symfony/routing": "^6.4|^7.0",
  6303. "symfony/serializer": "^7.1",
  6304. "symfony/stopwatch": "^6.4|^7.0",
  6305. "symfony/translation": "^6.4|^7.0",
  6306. "symfony/translation-contracts": "^2.5|^3",
  6307. "symfony/uid": "^6.4|^7.0",
  6308. "symfony/validator": "^6.4|^7.0",
  6309. "symfony/var-dumper": "^6.4|^7.0",
  6310. "symfony/var-exporter": "^6.4|^7.0",
  6311. "twig/twig": "^3.0.4"
  6312. },
  6313. "type": "library",
  6314. "autoload": {
  6315. "psr-4": {
  6316. "Symfony\\Component\\HttpKernel\\": ""
  6317. },
  6318. "exclude-from-classmap": [
  6319. "/Tests/"
  6320. ]
  6321. },
  6322. "notification-url": "https://packagist.org/downloads/",
  6323. "license": [
  6324. "MIT"
  6325. ],
  6326. "authors": [
  6327. {
  6328. "name": "Fabien Potencier",
  6329. "email": "fabien@symfony.com"
  6330. },
  6331. {
  6332. "name": "Symfony Community",
  6333. "homepage": "https://symfony.com/contributors"
  6334. }
  6335. ],
  6336. "description": "Provides a structured process for converting a Request into a Response",
  6337. "homepage": "https://symfony.com",
  6338. "support": {
  6339. "source": "https://github.com/symfony/http-kernel/tree/v7.1.8"
  6340. },
  6341. "funding": [
  6342. {
  6343. "url": "https://symfony.com/sponsor",
  6344. "type": "custom"
  6345. },
  6346. {
  6347. "url": "https://github.com/fabpot",
  6348. "type": "github"
  6349. },
  6350. {
  6351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6352. "type": "tidelift"
  6353. }
  6354. ],
  6355. "time": "2024-11-13T14:25:32+00:00"
  6356. },
  6357. {
  6358. "name": "symfony/mailer",
  6359. "version": "v7.1.6",
  6360. "source": {
  6361. "type": "git",
  6362. "url": "https://github.com/symfony/mailer.git",
  6363. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd"
  6364. },
  6365. "dist": {
  6366. "type": "zip",
  6367. "url": "https://api.github.com/repos/symfony/mailer/zipball/69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  6368. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  6369. "shasum": ""
  6370. },
  6371. "require": {
  6372. "egulias/email-validator": "^2.1.10|^3|^4",
  6373. "php": ">=8.2",
  6374. "psr/event-dispatcher": "^1",
  6375. "psr/log": "^1|^2|^3",
  6376. "symfony/event-dispatcher": "^6.4|^7.0",
  6377. "symfony/mime": "^6.4|^7.0",
  6378. "symfony/service-contracts": "^2.5|^3"
  6379. },
  6380. "conflict": {
  6381. "symfony/http-client-contracts": "<2.5",
  6382. "symfony/http-kernel": "<6.4",
  6383. "symfony/messenger": "<6.4",
  6384. "symfony/mime": "<6.4",
  6385. "symfony/twig-bridge": "<6.4"
  6386. },
  6387. "require-dev": {
  6388. "symfony/console": "^6.4|^7.0",
  6389. "symfony/http-client": "^6.4|^7.0",
  6390. "symfony/messenger": "^6.4|^7.0",
  6391. "symfony/twig-bridge": "^6.4|^7.0"
  6392. },
  6393. "type": "library",
  6394. "autoload": {
  6395. "psr-4": {
  6396. "Symfony\\Component\\Mailer\\": ""
  6397. },
  6398. "exclude-from-classmap": [
  6399. "/Tests/"
  6400. ]
  6401. },
  6402. "notification-url": "https://packagist.org/downloads/",
  6403. "license": [
  6404. "MIT"
  6405. ],
  6406. "authors": [
  6407. {
  6408. "name": "Fabien Potencier",
  6409. "email": "fabien@symfony.com"
  6410. },
  6411. {
  6412. "name": "Symfony Community",
  6413. "homepage": "https://symfony.com/contributors"
  6414. }
  6415. ],
  6416. "description": "Helps sending emails",
  6417. "homepage": "https://symfony.com",
  6418. "support": {
  6419. "source": "https://github.com/symfony/mailer/tree/v7.1.6"
  6420. },
  6421. "funding": [
  6422. {
  6423. "url": "https://symfony.com/sponsor",
  6424. "type": "custom"
  6425. },
  6426. {
  6427. "url": "https://github.com/fabpot",
  6428. "type": "github"
  6429. },
  6430. {
  6431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6432. "type": "tidelift"
  6433. }
  6434. ],
  6435. "time": "2024-09-25T14:20:29+00:00"
  6436. },
  6437. {
  6438. "name": "symfony/mime",
  6439. "version": "v7.1.6",
  6440. "source": {
  6441. "type": "git",
  6442. "url": "https://github.com/symfony/mime.git",
  6443. "reference": "caa1e521edb2650b8470918dfe51708c237f0598"
  6444. },
  6445. "dist": {
  6446. "type": "zip",
  6447. "url": "https://api.github.com/repos/symfony/mime/zipball/caa1e521edb2650b8470918dfe51708c237f0598",
  6448. "reference": "caa1e521edb2650b8470918dfe51708c237f0598",
  6449. "shasum": ""
  6450. },
  6451. "require": {
  6452. "php": ">=8.2",
  6453. "symfony/polyfill-intl-idn": "^1.10",
  6454. "symfony/polyfill-mbstring": "^1.0"
  6455. },
  6456. "conflict": {
  6457. "egulias/email-validator": "~3.0.0",
  6458. "phpdocumentor/reflection-docblock": "<3.2.2",
  6459. "phpdocumentor/type-resolver": "<1.4.0",
  6460. "symfony/mailer": "<6.4",
  6461. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  6462. },
  6463. "require-dev": {
  6464. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6465. "league/html-to-markdown": "^5.0",
  6466. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6467. "symfony/dependency-injection": "^6.4|^7.0",
  6468. "symfony/process": "^6.4|^7.0",
  6469. "symfony/property-access": "^6.4|^7.0",
  6470. "symfony/property-info": "^6.4|^7.0",
  6471. "symfony/serializer": "^6.4.3|^7.0.3"
  6472. },
  6473. "type": "library",
  6474. "autoload": {
  6475. "psr-4": {
  6476. "Symfony\\Component\\Mime\\": ""
  6477. },
  6478. "exclude-from-classmap": [
  6479. "/Tests/"
  6480. ]
  6481. },
  6482. "notification-url": "https://packagist.org/downloads/",
  6483. "license": [
  6484. "MIT"
  6485. ],
  6486. "authors": [
  6487. {
  6488. "name": "Fabien Potencier",
  6489. "email": "fabien@symfony.com"
  6490. },
  6491. {
  6492. "name": "Symfony Community",
  6493. "homepage": "https://symfony.com/contributors"
  6494. }
  6495. ],
  6496. "description": "Allows manipulating MIME messages",
  6497. "homepage": "https://symfony.com",
  6498. "keywords": [
  6499. "mime",
  6500. "mime-type"
  6501. ],
  6502. "support": {
  6503. "source": "https://github.com/symfony/mime/tree/v7.1.6"
  6504. },
  6505. "funding": [
  6506. {
  6507. "url": "https://symfony.com/sponsor",
  6508. "type": "custom"
  6509. },
  6510. {
  6511. "url": "https://github.com/fabpot",
  6512. "type": "github"
  6513. },
  6514. {
  6515. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6516. "type": "tidelift"
  6517. }
  6518. ],
  6519. "time": "2024-10-25T15:11:02+00:00"
  6520. },
  6521. {
  6522. "name": "symfony/polyfill-ctype",
  6523. "version": "v1.31.0",
  6524. "source": {
  6525. "type": "git",
  6526. "url": "https://github.com/symfony/polyfill-ctype.git",
  6527. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6528. },
  6529. "dist": {
  6530. "type": "zip",
  6531. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6532. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6533. "shasum": ""
  6534. },
  6535. "require": {
  6536. "php": ">=7.2"
  6537. },
  6538. "provide": {
  6539. "ext-ctype": "*"
  6540. },
  6541. "suggest": {
  6542. "ext-ctype": "For best performance"
  6543. },
  6544. "type": "library",
  6545. "extra": {
  6546. "thanks": {
  6547. "name": "symfony/polyfill",
  6548. "url": "https://github.com/symfony/polyfill"
  6549. }
  6550. },
  6551. "autoload": {
  6552. "files": [
  6553. "bootstrap.php"
  6554. ],
  6555. "psr-4": {
  6556. "Symfony\\Polyfill\\Ctype\\": ""
  6557. }
  6558. },
  6559. "notification-url": "https://packagist.org/downloads/",
  6560. "license": [
  6561. "MIT"
  6562. ],
  6563. "authors": [
  6564. {
  6565. "name": "Gert de Pagter",
  6566. "email": "BackEndTea@gmail.com"
  6567. },
  6568. {
  6569. "name": "Symfony Community",
  6570. "homepage": "https://symfony.com/contributors"
  6571. }
  6572. ],
  6573. "description": "Symfony polyfill for ctype functions",
  6574. "homepage": "https://symfony.com",
  6575. "keywords": [
  6576. "compatibility",
  6577. "ctype",
  6578. "polyfill",
  6579. "portable"
  6580. ],
  6581. "support": {
  6582. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6583. },
  6584. "funding": [
  6585. {
  6586. "url": "https://symfony.com/sponsor",
  6587. "type": "custom"
  6588. },
  6589. {
  6590. "url": "https://github.com/fabpot",
  6591. "type": "github"
  6592. },
  6593. {
  6594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6595. "type": "tidelift"
  6596. }
  6597. ],
  6598. "time": "2024-09-09T11:45:10+00:00"
  6599. },
  6600. {
  6601. "name": "symfony/polyfill-intl-grapheme",
  6602. "version": "v1.31.0",
  6603. "source": {
  6604. "type": "git",
  6605. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6606. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6607. },
  6608. "dist": {
  6609. "type": "zip",
  6610. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6611. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6612. "shasum": ""
  6613. },
  6614. "require": {
  6615. "php": ">=7.2"
  6616. },
  6617. "suggest": {
  6618. "ext-intl": "For best performance"
  6619. },
  6620. "type": "library",
  6621. "extra": {
  6622. "thanks": {
  6623. "name": "symfony/polyfill",
  6624. "url": "https://github.com/symfony/polyfill"
  6625. }
  6626. },
  6627. "autoload": {
  6628. "files": [
  6629. "bootstrap.php"
  6630. ],
  6631. "psr-4": {
  6632. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6633. }
  6634. },
  6635. "notification-url": "https://packagist.org/downloads/",
  6636. "license": [
  6637. "MIT"
  6638. ],
  6639. "authors": [
  6640. {
  6641. "name": "Nicolas Grekas",
  6642. "email": "p@tchwork.com"
  6643. },
  6644. {
  6645. "name": "Symfony Community",
  6646. "homepage": "https://symfony.com/contributors"
  6647. }
  6648. ],
  6649. "description": "Symfony polyfill for intl's grapheme_* functions",
  6650. "homepage": "https://symfony.com",
  6651. "keywords": [
  6652. "compatibility",
  6653. "grapheme",
  6654. "intl",
  6655. "polyfill",
  6656. "portable",
  6657. "shim"
  6658. ],
  6659. "support": {
  6660. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6661. },
  6662. "funding": [
  6663. {
  6664. "url": "https://symfony.com/sponsor",
  6665. "type": "custom"
  6666. },
  6667. {
  6668. "url": "https://github.com/fabpot",
  6669. "type": "github"
  6670. },
  6671. {
  6672. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6673. "type": "tidelift"
  6674. }
  6675. ],
  6676. "time": "2024-09-09T11:45:10+00:00"
  6677. },
  6678. {
  6679. "name": "symfony/polyfill-intl-idn",
  6680. "version": "v1.31.0",
  6681. "source": {
  6682. "type": "git",
  6683. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6684. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  6685. },
  6686. "dist": {
  6687. "type": "zip",
  6688. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  6689. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  6690. "shasum": ""
  6691. },
  6692. "require": {
  6693. "php": ">=7.2",
  6694. "symfony/polyfill-intl-normalizer": "^1.10"
  6695. },
  6696. "suggest": {
  6697. "ext-intl": "For best performance"
  6698. },
  6699. "type": "library",
  6700. "extra": {
  6701. "thanks": {
  6702. "name": "symfony/polyfill",
  6703. "url": "https://github.com/symfony/polyfill"
  6704. }
  6705. },
  6706. "autoload": {
  6707. "files": [
  6708. "bootstrap.php"
  6709. ],
  6710. "psr-4": {
  6711. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6712. }
  6713. },
  6714. "notification-url": "https://packagist.org/downloads/",
  6715. "license": [
  6716. "MIT"
  6717. ],
  6718. "authors": [
  6719. {
  6720. "name": "Laurent Bassin",
  6721. "email": "laurent@bassin.info"
  6722. },
  6723. {
  6724. "name": "Trevor Rowbotham",
  6725. "email": "trevor.rowbotham@pm.me"
  6726. },
  6727. {
  6728. "name": "Symfony Community",
  6729. "homepage": "https://symfony.com/contributors"
  6730. }
  6731. ],
  6732. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6733. "homepage": "https://symfony.com",
  6734. "keywords": [
  6735. "compatibility",
  6736. "idn",
  6737. "intl",
  6738. "polyfill",
  6739. "portable",
  6740. "shim"
  6741. ],
  6742. "support": {
  6743. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  6744. },
  6745. "funding": [
  6746. {
  6747. "url": "https://symfony.com/sponsor",
  6748. "type": "custom"
  6749. },
  6750. {
  6751. "url": "https://github.com/fabpot",
  6752. "type": "github"
  6753. },
  6754. {
  6755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6756. "type": "tidelift"
  6757. }
  6758. ],
  6759. "time": "2024-09-09T11:45:10+00:00"
  6760. },
  6761. {
  6762. "name": "symfony/polyfill-intl-normalizer",
  6763. "version": "v1.31.0",
  6764. "source": {
  6765. "type": "git",
  6766. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6767. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6768. },
  6769. "dist": {
  6770. "type": "zip",
  6771. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6772. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6773. "shasum": ""
  6774. },
  6775. "require": {
  6776. "php": ">=7.2"
  6777. },
  6778. "suggest": {
  6779. "ext-intl": "For best performance"
  6780. },
  6781. "type": "library",
  6782. "extra": {
  6783. "thanks": {
  6784. "name": "symfony/polyfill",
  6785. "url": "https://github.com/symfony/polyfill"
  6786. }
  6787. },
  6788. "autoload": {
  6789. "files": [
  6790. "bootstrap.php"
  6791. ],
  6792. "psr-4": {
  6793. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6794. },
  6795. "classmap": [
  6796. "Resources/stubs"
  6797. ]
  6798. },
  6799. "notification-url": "https://packagist.org/downloads/",
  6800. "license": [
  6801. "MIT"
  6802. ],
  6803. "authors": [
  6804. {
  6805. "name": "Nicolas Grekas",
  6806. "email": "p@tchwork.com"
  6807. },
  6808. {
  6809. "name": "Symfony Community",
  6810. "homepage": "https://symfony.com/contributors"
  6811. }
  6812. ],
  6813. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6814. "homepage": "https://symfony.com",
  6815. "keywords": [
  6816. "compatibility",
  6817. "intl",
  6818. "normalizer",
  6819. "polyfill",
  6820. "portable",
  6821. "shim"
  6822. ],
  6823. "support": {
  6824. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6825. },
  6826. "funding": [
  6827. {
  6828. "url": "https://symfony.com/sponsor",
  6829. "type": "custom"
  6830. },
  6831. {
  6832. "url": "https://github.com/fabpot",
  6833. "type": "github"
  6834. },
  6835. {
  6836. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6837. "type": "tidelift"
  6838. }
  6839. ],
  6840. "time": "2024-09-09T11:45:10+00:00"
  6841. },
  6842. {
  6843. "name": "symfony/polyfill-mbstring",
  6844. "version": "v1.31.0",
  6845. "source": {
  6846. "type": "git",
  6847. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6848. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6849. },
  6850. "dist": {
  6851. "type": "zip",
  6852. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6853. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6854. "shasum": ""
  6855. },
  6856. "require": {
  6857. "php": ">=7.2"
  6858. },
  6859. "provide": {
  6860. "ext-mbstring": "*"
  6861. },
  6862. "suggest": {
  6863. "ext-mbstring": "For best performance"
  6864. },
  6865. "type": "library",
  6866. "extra": {
  6867. "thanks": {
  6868. "name": "symfony/polyfill",
  6869. "url": "https://github.com/symfony/polyfill"
  6870. }
  6871. },
  6872. "autoload": {
  6873. "files": [
  6874. "bootstrap.php"
  6875. ],
  6876. "psr-4": {
  6877. "Symfony\\Polyfill\\Mbstring\\": ""
  6878. }
  6879. },
  6880. "notification-url": "https://packagist.org/downloads/",
  6881. "license": [
  6882. "MIT"
  6883. ],
  6884. "authors": [
  6885. {
  6886. "name": "Nicolas Grekas",
  6887. "email": "p@tchwork.com"
  6888. },
  6889. {
  6890. "name": "Symfony Community",
  6891. "homepage": "https://symfony.com/contributors"
  6892. }
  6893. ],
  6894. "description": "Symfony polyfill for the Mbstring extension",
  6895. "homepage": "https://symfony.com",
  6896. "keywords": [
  6897. "compatibility",
  6898. "mbstring",
  6899. "polyfill",
  6900. "portable",
  6901. "shim"
  6902. ],
  6903. "support": {
  6904. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6905. },
  6906. "funding": [
  6907. {
  6908. "url": "https://symfony.com/sponsor",
  6909. "type": "custom"
  6910. },
  6911. {
  6912. "url": "https://github.com/fabpot",
  6913. "type": "github"
  6914. },
  6915. {
  6916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6917. "type": "tidelift"
  6918. }
  6919. ],
  6920. "time": "2024-09-09T11:45:10+00:00"
  6921. },
  6922. {
  6923. "name": "symfony/polyfill-php80",
  6924. "version": "v1.31.0",
  6925. "source": {
  6926. "type": "git",
  6927. "url": "https://github.com/symfony/polyfill-php80.git",
  6928. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6929. },
  6930. "dist": {
  6931. "type": "zip",
  6932. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6933. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6934. "shasum": ""
  6935. },
  6936. "require": {
  6937. "php": ">=7.2"
  6938. },
  6939. "type": "library",
  6940. "extra": {
  6941. "thanks": {
  6942. "name": "symfony/polyfill",
  6943. "url": "https://github.com/symfony/polyfill"
  6944. }
  6945. },
  6946. "autoload": {
  6947. "files": [
  6948. "bootstrap.php"
  6949. ],
  6950. "psr-4": {
  6951. "Symfony\\Polyfill\\Php80\\": ""
  6952. },
  6953. "classmap": [
  6954. "Resources/stubs"
  6955. ]
  6956. },
  6957. "notification-url": "https://packagist.org/downloads/",
  6958. "license": [
  6959. "MIT"
  6960. ],
  6961. "authors": [
  6962. {
  6963. "name": "Ion Bazan",
  6964. "email": "ion.bazan@gmail.com"
  6965. },
  6966. {
  6967. "name": "Nicolas Grekas",
  6968. "email": "p@tchwork.com"
  6969. },
  6970. {
  6971. "name": "Symfony Community",
  6972. "homepage": "https://symfony.com/contributors"
  6973. }
  6974. ],
  6975. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6976. "homepage": "https://symfony.com",
  6977. "keywords": [
  6978. "compatibility",
  6979. "polyfill",
  6980. "portable",
  6981. "shim"
  6982. ],
  6983. "support": {
  6984. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6985. },
  6986. "funding": [
  6987. {
  6988. "url": "https://symfony.com/sponsor",
  6989. "type": "custom"
  6990. },
  6991. {
  6992. "url": "https://github.com/fabpot",
  6993. "type": "github"
  6994. },
  6995. {
  6996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6997. "type": "tidelift"
  6998. }
  6999. ],
  7000. "time": "2024-09-09T11:45:10+00:00"
  7001. },
  7002. {
  7003. "name": "symfony/polyfill-php81",
  7004. "version": "v1.31.0",
  7005. "source": {
  7006. "type": "git",
  7007. "url": "https://github.com/symfony/polyfill-php81.git",
  7008. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  7009. },
  7010. "dist": {
  7011. "type": "zip",
  7012. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7013. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7014. "shasum": ""
  7015. },
  7016. "require": {
  7017. "php": ">=7.2"
  7018. },
  7019. "type": "library",
  7020. "extra": {
  7021. "thanks": {
  7022. "name": "symfony/polyfill",
  7023. "url": "https://github.com/symfony/polyfill"
  7024. }
  7025. },
  7026. "autoload": {
  7027. "files": [
  7028. "bootstrap.php"
  7029. ],
  7030. "psr-4": {
  7031. "Symfony\\Polyfill\\Php81\\": ""
  7032. },
  7033. "classmap": [
  7034. "Resources/stubs"
  7035. ]
  7036. },
  7037. "notification-url": "https://packagist.org/downloads/",
  7038. "license": [
  7039. "MIT"
  7040. ],
  7041. "authors": [
  7042. {
  7043. "name": "Nicolas Grekas",
  7044. "email": "p@tchwork.com"
  7045. },
  7046. {
  7047. "name": "Symfony Community",
  7048. "homepage": "https://symfony.com/contributors"
  7049. }
  7050. ],
  7051. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7052. "homepage": "https://symfony.com",
  7053. "keywords": [
  7054. "compatibility",
  7055. "polyfill",
  7056. "portable",
  7057. "shim"
  7058. ],
  7059. "support": {
  7060. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  7061. },
  7062. "funding": [
  7063. {
  7064. "url": "https://symfony.com/sponsor",
  7065. "type": "custom"
  7066. },
  7067. {
  7068. "url": "https://github.com/fabpot",
  7069. "type": "github"
  7070. },
  7071. {
  7072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7073. "type": "tidelift"
  7074. }
  7075. ],
  7076. "time": "2024-09-09T11:45:10+00:00"
  7077. },
  7078. {
  7079. "name": "symfony/polyfill-php83",
  7080. "version": "v1.31.0",
  7081. "source": {
  7082. "type": "git",
  7083. "url": "https://github.com/symfony/polyfill-php83.git",
  7084. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  7085. },
  7086. "dist": {
  7087. "type": "zip",
  7088. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  7089. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  7090. "shasum": ""
  7091. },
  7092. "require": {
  7093. "php": ">=7.2"
  7094. },
  7095. "type": "library",
  7096. "extra": {
  7097. "thanks": {
  7098. "name": "symfony/polyfill",
  7099. "url": "https://github.com/symfony/polyfill"
  7100. }
  7101. },
  7102. "autoload": {
  7103. "files": [
  7104. "bootstrap.php"
  7105. ],
  7106. "psr-4": {
  7107. "Symfony\\Polyfill\\Php83\\": ""
  7108. },
  7109. "classmap": [
  7110. "Resources/stubs"
  7111. ]
  7112. },
  7113. "notification-url": "https://packagist.org/downloads/",
  7114. "license": [
  7115. "MIT"
  7116. ],
  7117. "authors": [
  7118. {
  7119. "name": "Nicolas Grekas",
  7120. "email": "p@tchwork.com"
  7121. },
  7122. {
  7123. "name": "Symfony Community",
  7124. "homepage": "https://symfony.com/contributors"
  7125. }
  7126. ],
  7127. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  7128. "homepage": "https://symfony.com",
  7129. "keywords": [
  7130. "compatibility",
  7131. "polyfill",
  7132. "portable",
  7133. "shim"
  7134. ],
  7135. "support": {
  7136. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  7137. },
  7138. "funding": [
  7139. {
  7140. "url": "https://symfony.com/sponsor",
  7141. "type": "custom"
  7142. },
  7143. {
  7144. "url": "https://github.com/fabpot",
  7145. "type": "github"
  7146. },
  7147. {
  7148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7149. "type": "tidelift"
  7150. }
  7151. ],
  7152. "time": "2024-09-09T11:45:10+00:00"
  7153. },
  7154. {
  7155. "name": "symfony/polyfill-uuid",
  7156. "version": "v1.31.0",
  7157. "source": {
  7158. "type": "git",
  7159. "url": "https://github.com/symfony/polyfill-uuid.git",
  7160. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  7161. },
  7162. "dist": {
  7163. "type": "zip",
  7164. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  7165. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  7166. "shasum": ""
  7167. },
  7168. "require": {
  7169. "php": ">=7.2"
  7170. },
  7171. "provide": {
  7172. "ext-uuid": "*"
  7173. },
  7174. "suggest": {
  7175. "ext-uuid": "For best performance"
  7176. },
  7177. "type": "library",
  7178. "extra": {
  7179. "thanks": {
  7180. "name": "symfony/polyfill",
  7181. "url": "https://github.com/symfony/polyfill"
  7182. }
  7183. },
  7184. "autoload": {
  7185. "files": [
  7186. "bootstrap.php"
  7187. ],
  7188. "psr-4": {
  7189. "Symfony\\Polyfill\\Uuid\\": ""
  7190. }
  7191. },
  7192. "notification-url": "https://packagist.org/downloads/",
  7193. "license": [
  7194. "MIT"
  7195. ],
  7196. "authors": [
  7197. {
  7198. "name": "Grégoire Pineau",
  7199. "email": "lyrixx@lyrixx.info"
  7200. },
  7201. {
  7202. "name": "Symfony Community",
  7203. "homepage": "https://symfony.com/contributors"
  7204. }
  7205. ],
  7206. "description": "Symfony polyfill for uuid functions",
  7207. "homepage": "https://symfony.com",
  7208. "keywords": [
  7209. "compatibility",
  7210. "polyfill",
  7211. "portable",
  7212. "uuid"
  7213. ],
  7214. "support": {
  7215. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  7216. },
  7217. "funding": [
  7218. {
  7219. "url": "https://symfony.com/sponsor",
  7220. "type": "custom"
  7221. },
  7222. {
  7223. "url": "https://github.com/fabpot",
  7224. "type": "github"
  7225. },
  7226. {
  7227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7228. "type": "tidelift"
  7229. }
  7230. ],
  7231. "time": "2024-09-09T11:45:10+00:00"
  7232. },
  7233. {
  7234. "name": "symfony/process",
  7235. "version": "v7.1.8",
  7236. "source": {
  7237. "type": "git",
  7238. "url": "https://github.com/symfony/process.git",
  7239. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892"
  7240. },
  7241. "dist": {
  7242. "type": "zip",
  7243. "url": "https://api.github.com/repos/symfony/process/zipball/42783370fda6e538771f7c7a36e9fa2ee3a84892",
  7244. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892",
  7245. "shasum": ""
  7246. },
  7247. "require": {
  7248. "php": ">=8.2"
  7249. },
  7250. "type": "library",
  7251. "autoload": {
  7252. "psr-4": {
  7253. "Symfony\\Component\\Process\\": ""
  7254. },
  7255. "exclude-from-classmap": [
  7256. "/Tests/"
  7257. ]
  7258. },
  7259. "notification-url": "https://packagist.org/downloads/",
  7260. "license": [
  7261. "MIT"
  7262. ],
  7263. "authors": [
  7264. {
  7265. "name": "Fabien Potencier",
  7266. "email": "fabien@symfony.com"
  7267. },
  7268. {
  7269. "name": "Symfony Community",
  7270. "homepage": "https://symfony.com/contributors"
  7271. }
  7272. ],
  7273. "description": "Executes commands in sub-processes",
  7274. "homepage": "https://symfony.com",
  7275. "support": {
  7276. "source": "https://github.com/symfony/process/tree/v7.1.8"
  7277. },
  7278. "funding": [
  7279. {
  7280. "url": "https://symfony.com/sponsor",
  7281. "type": "custom"
  7282. },
  7283. {
  7284. "url": "https://github.com/fabpot",
  7285. "type": "github"
  7286. },
  7287. {
  7288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7289. "type": "tidelift"
  7290. }
  7291. ],
  7292. "time": "2024-11-06T14:23:19+00:00"
  7293. },
  7294. {
  7295. "name": "symfony/psr-http-message-bridge",
  7296. "version": "v7.1.6",
  7297. "source": {
  7298. "type": "git",
  7299. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7300. "reference": "f16471bb19f6685b9ccf0a2c03c213840ae68cd6"
  7301. },
  7302. "dist": {
  7303. "type": "zip",
  7304. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/f16471bb19f6685b9ccf0a2c03c213840ae68cd6",
  7305. "reference": "f16471bb19f6685b9ccf0a2c03c213840ae68cd6",
  7306. "shasum": ""
  7307. },
  7308. "require": {
  7309. "php": ">=8.2",
  7310. "psr/http-message": "^1.0|^2.0",
  7311. "symfony/http-foundation": "^6.4|^7.0"
  7312. },
  7313. "conflict": {
  7314. "php-http/discovery": "<1.15",
  7315. "symfony/http-kernel": "<6.4"
  7316. },
  7317. "require-dev": {
  7318. "nyholm/psr7": "^1.1",
  7319. "php-http/discovery": "^1.15",
  7320. "psr/log": "^1.1.4|^2|^3",
  7321. "symfony/browser-kit": "^6.4|^7.0",
  7322. "symfony/config": "^6.4|^7.0",
  7323. "symfony/event-dispatcher": "^6.4|^7.0",
  7324. "symfony/framework-bundle": "^6.4|^7.0",
  7325. "symfony/http-kernel": "^6.4|^7.0"
  7326. },
  7327. "type": "symfony-bridge",
  7328. "autoload": {
  7329. "psr-4": {
  7330. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7331. },
  7332. "exclude-from-classmap": [
  7333. "/Tests/"
  7334. ]
  7335. },
  7336. "notification-url": "https://packagist.org/downloads/",
  7337. "license": [
  7338. "MIT"
  7339. ],
  7340. "authors": [
  7341. {
  7342. "name": "Fabien Potencier",
  7343. "email": "fabien@symfony.com"
  7344. },
  7345. {
  7346. "name": "Symfony Community",
  7347. "homepage": "https://symfony.com/contributors"
  7348. }
  7349. ],
  7350. "description": "PSR HTTP message bridge",
  7351. "homepage": "https://symfony.com",
  7352. "keywords": [
  7353. "http",
  7354. "http-message",
  7355. "psr-17",
  7356. "psr-7"
  7357. ],
  7358. "support": {
  7359. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.1.6"
  7360. },
  7361. "funding": [
  7362. {
  7363. "url": "https://symfony.com/sponsor",
  7364. "type": "custom"
  7365. },
  7366. {
  7367. "url": "https://github.com/fabpot",
  7368. "type": "github"
  7369. },
  7370. {
  7371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7372. "type": "tidelift"
  7373. }
  7374. ],
  7375. "time": "2024-09-25T14:20:29+00:00"
  7376. },
  7377. {
  7378. "name": "symfony/routing",
  7379. "version": "v7.1.6",
  7380. "source": {
  7381. "type": "git",
  7382. "url": "https://github.com/symfony/routing.git",
  7383. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a"
  7384. },
  7385. "dist": {
  7386. "type": "zip",
  7387. "url": "https://api.github.com/repos/symfony/routing/zipball/66a2c469f6c22d08603235c46a20007c0701ea0a",
  7388. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a",
  7389. "shasum": ""
  7390. },
  7391. "require": {
  7392. "php": ">=8.2",
  7393. "symfony/deprecation-contracts": "^2.5|^3"
  7394. },
  7395. "conflict": {
  7396. "symfony/config": "<6.4",
  7397. "symfony/dependency-injection": "<6.4",
  7398. "symfony/yaml": "<6.4"
  7399. },
  7400. "require-dev": {
  7401. "psr/log": "^1|^2|^3",
  7402. "symfony/config": "^6.4|^7.0",
  7403. "symfony/dependency-injection": "^6.4|^7.0",
  7404. "symfony/expression-language": "^6.4|^7.0",
  7405. "symfony/http-foundation": "^6.4|^7.0",
  7406. "symfony/yaml": "^6.4|^7.0"
  7407. },
  7408. "type": "library",
  7409. "autoload": {
  7410. "psr-4": {
  7411. "Symfony\\Component\\Routing\\": ""
  7412. },
  7413. "exclude-from-classmap": [
  7414. "/Tests/"
  7415. ]
  7416. },
  7417. "notification-url": "https://packagist.org/downloads/",
  7418. "license": [
  7419. "MIT"
  7420. ],
  7421. "authors": [
  7422. {
  7423. "name": "Fabien Potencier",
  7424. "email": "fabien@symfony.com"
  7425. },
  7426. {
  7427. "name": "Symfony Community",
  7428. "homepage": "https://symfony.com/contributors"
  7429. }
  7430. ],
  7431. "description": "Maps an HTTP request to a set of configuration variables",
  7432. "homepage": "https://symfony.com",
  7433. "keywords": [
  7434. "router",
  7435. "routing",
  7436. "uri",
  7437. "url"
  7438. ],
  7439. "support": {
  7440. "source": "https://github.com/symfony/routing/tree/v7.1.6"
  7441. },
  7442. "funding": [
  7443. {
  7444. "url": "https://symfony.com/sponsor",
  7445. "type": "custom"
  7446. },
  7447. {
  7448. "url": "https://github.com/fabpot",
  7449. "type": "github"
  7450. },
  7451. {
  7452. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7453. "type": "tidelift"
  7454. }
  7455. ],
  7456. "time": "2024-10-01T08:31:23+00:00"
  7457. },
  7458. {
  7459. "name": "symfony/service-contracts",
  7460. "version": "v3.5.0",
  7461. "source": {
  7462. "type": "git",
  7463. "url": "https://github.com/symfony/service-contracts.git",
  7464. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7465. },
  7466. "dist": {
  7467. "type": "zip",
  7468. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7469. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7470. "shasum": ""
  7471. },
  7472. "require": {
  7473. "php": ">=8.1",
  7474. "psr/container": "^1.1|^2.0",
  7475. "symfony/deprecation-contracts": "^2.5|^3"
  7476. },
  7477. "conflict": {
  7478. "ext-psr": "<1.1|>=2"
  7479. },
  7480. "type": "library",
  7481. "extra": {
  7482. "branch-alias": {
  7483. "dev-main": "3.5-dev"
  7484. },
  7485. "thanks": {
  7486. "name": "symfony/contracts",
  7487. "url": "https://github.com/symfony/contracts"
  7488. }
  7489. },
  7490. "autoload": {
  7491. "psr-4": {
  7492. "Symfony\\Contracts\\Service\\": ""
  7493. },
  7494. "exclude-from-classmap": [
  7495. "/Test/"
  7496. ]
  7497. },
  7498. "notification-url": "https://packagist.org/downloads/",
  7499. "license": [
  7500. "MIT"
  7501. ],
  7502. "authors": [
  7503. {
  7504. "name": "Nicolas Grekas",
  7505. "email": "p@tchwork.com"
  7506. },
  7507. {
  7508. "name": "Symfony Community",
  7509. "homepage": "https://symfony.com/contributors"
  7510. }
  7511. ],
  7512. "description": "Generic abstractions related to writing services",
  7513. "homepage": "https://symfony.com",
  7514. "keywords": [
  7515. "abstractions",
  7516. "contracts",
  7517. "decoupling",
  7518. "interfaces",
  7519. "interoperability",
  7520. "standards"
  7521. ],
  7522. "support": {
  7523. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7524. },
  7525. "funding": [
  7526. {
  7527. "url": "https://symfony.com/sponsor",
  7528. "type": "custom"
  7529. },
  7530. {
  7531. "url": "https://github.com/fabpot",
  7532. "type": "github"
  7533. },
  7534. {
  7535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7536. "type": "tidelift"
  7537. }
  7538. ],
  7539. "time": "2024-04-18T09:32:20+00:00"
  7540. },
  7541. {
  7542. "name": "symfony/string",
  7543. "version": "v7.1.8",
  7544. "source": {
  7545. "type": "git",
  7546. "url": "https://github.com/symfony/string.git",
  7547. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281"
  7548. },
  7549. "dist": {
  7550. "type": "zip",
  7551. "url": "https://api.github.com/repos/symfony/string/zipball/591ebd41565f356fcd8b090fe64dbb5878f50281",
  7552. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281",
  7553. "shasum": ""
  7554. },
  7555. "require": {
  7556. "php": ">=8.2",
  7557. "symfony/polyfill-ctype": "~1.8",
  7558. "symfony/polyfill-intl-grapheme": "~1.0",
  7559. "symfony/polyfill-intl-normalizer": "~1.0",
  7560. "symfony/polyfill-mbstring": "~1.0"
  7561. },
  7562. "conflict": {
  7563. "symfony/translation-contracts": "<2.5"
  7564. },
  7565. "require-dev": {
  7566. "symfony/emoji": "^7.1",
  7567. "symfony/error-handler": "^6.4|^7.0",
  7568. "symfony/http-client": "^6.4|^7.0",
  7569. "symfony/intl": "^6.4|^7.0",
  7570. "symfony/translation-contracts": "^2.5|^3.0",
  7571. "symfony/var-exporter": "^6.4|^7.0"
  7572. },
  7573. "type": "library",
  7574. "autoload": {
  7575. "files": [
  7576. "Resources/functions.php"
  7577. ],
  7578. "psr-4": {
  7579. "Symfony\\Component\\String\\": ""
  7580. },
  7581. "exclude-from-classmap": [
  7582. "/Tests/"
  7583. ]
  7584. },
  7585. "notification-url": "https://packagist.org/downloads/",
  7586. "license": [
  7587. "MIT"
  7588. ],
  7589. "authors": [
  7590. {
  7591. "name": "Nicolas Grekas",
  7592. "email": "p@tchwork.com"
  7593. },
  7594. {
  7595. "name": "Symfony Community",
  7596. "homepage": "https://symfony.com/contributors"
  7597. }
  7598. ],
  7599. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7600. "homepage": "https://symfony.com",
  7601. "keywords": [
  7602. "grapheme",
  7603. "i18n",
  7604. "string",
  7605. "unicode",
  7606. "utf-8",
  7607. "utf8"
  7608. ],
  7609. "support": {
  7610. "source": "https://github.com/symfony/string/tree/v7.1.8"
  7611. },
  7612. "funding": [
  7613. {
  7614. "url": "https://symfony.com/sponsor",
  7615. "type": "custom"
  7616. },
  7617. {
  7618. "url": "https://github.com/fabpot",
  7619. "type": "github"
  7620. },
  7621. {
  7622. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7623. "type": "tidelift"
  7624. }
  7625. ],
  7626. "time": "2024-11-13T13:31:21+00:00"
  7627. },
  7628. {
  7629. "name": "symfony/translation",
  7630. "version": "v7.1.6",
  7631. "source": {
  7632. "type": "git",
  7633. "url": "https://github.com/symfony/translation.git",
  7634. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f"
  7635. },
  7636. "dist": {
  7637. "type": "zip",
  7638. "url": "https://api.github.com/repos/symfony/translation/zipball/b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7639. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7640. "shasum": ""
  7641. },
  7642. "require": {
  7643. "php": ">=8.2",
  7644. "symfony/polyfill-mbstring": "~1.0",
  7645. "symfony/translation-contracts": "^2.5|^3.0"
  7646. },
  7647. "conflict": {
  7648. "symfony/config": "<6.4",
  7649. "symfony/console": "<6.4",
  7650. "symfony/dependency-injection": "<6.4",
  7651. "symfony/http-client-contracts": "<2.5",
  7652. "symfony/http-kernel": "<6.4",
  7653. "symfony/service-contracts": "<2.5",
  7654. "symfony/twig-bundle": "<6.4",
  7655. "symfony/yaml": "<6.4"
  7656. },
  7657. "provide": {
  7658. "symfony/translation-implementation": "2.3|3.0"
  7659. },
  7660. "require-dev": {
  7661. "nikic/php-parser": "^4.18|^5.0",
  7662. "psr/log": "^1|^2|^3",
  7663. "symfony/config": "^6.4|^7.0",
  7664. "symfony/console": "^6.4|^7.0",
  7665. "symfony/dependency-injection": "^6.4|^7.0",
  7666. "symfony/finder": "^6.4|^7.0",
  7667. "symfony/http-client-contracts": "^2.5|^3.0",
  7668. "symfony/http-kernel": "^6.4|^7.0",
  7669. "symfony/intl": "^6.4|^7.0",
  7670. "symfony/polyfill-intl-icu": "^1.21",
  7671. "symfony/routing": "^6.4|^7.0",
  7672. "symfony/service-contracts": "^2.5|^3",
  7673. "symfony/yaml": "^6.4|^7.0"
  7674. },
  7675. "type": "library",
  7676. "autoload": {
  7677. "files": [
  7678. "Resources/functions.php"
  7679. ],
  7680. "psr-4": {
  7681. "Symfony\\Component\\Translation\\": ""
  7682. },
  7683. "exclude-from-classmap": [
  7684. "/Tests/"
  7685. ]
  7686. },
  7687. "notification-url": "https://packagist.org/downloads/",
  7688. "license": [
  7689. "MIT"
  7690. ],
  7691. "authors": [
  7692. {
  7693. "name": "Fabien Potencier",
  7694. "email": "fabien@symfony.com"
  7695. },
  7696. {
  7697. "name": "Symfony Community",
  7698. "homepage": "https://symfony.com/contributors"
  7699. }
  7700. ],
  7701. "description": "Provides tools to internationalize your application",
  7702. "homepage": "https://symfony.com",
  7703. "support": {
  7704. "source": "https://github.com/symfony/translation/tree/v7.1.6"
  7705. },
  7706. "funding": [
  7707. {
  7708. "url": "https://symfony.com/sponsor",
  7709. "type": "custom"
  7710. },
  7711. {
  7712. "url": "https://github.com/fabpot",
  7713. "type": "github"
  7714. },
  7715. {
  7716. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7717. "type": "tidelift"
  7718. }
  7719. ],
  7720. "time": "2024-09-28T12:35:13+00:00"
  7721. },
  7722. {
  7723. "name": "symfony/translation-contracts",
  7724. "version": "v3.5.0",
  7725. "source": {
  7726. "type": "git",
  7727. "url": "https://github.com/symfony/translation-contracts.git",
  7728. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7729. },
  7730. "dist": {
  7731. "type": "zip",
  7732. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7733. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7734. "shasum": ""
  7735. },
  7736. "require": {
  7737. "php": ">=8.1"
  7738. },
  7739. "type": "library",
  7740. "extra": {
  7741. "branch-alias": {
  7742. "dev-main": "3.5-dev"
  7743. },
  7744. "thanks": {
  7745. "name": "symfony/contracts",
  7746. "url": "https://github.com/symfony/contracts"
  7747. }
  7748. },
  7749. "autoload": {
  7750. "psr-4": {
  7751. "Symfony\\Contracts\\Translation\\": ""
  7752. },
  7753. "exclude-from-classmap": [
  7754. "/Test/"
  7755. ]
  7756. },
  7757. "notification-url": "https://packagist.org/downloads/",
  7758. "license": [
  7759. "MIT"
  7760. ],
  7761. "authors": [
  7762. {
  7763. "name": "Nicolas Grekas",
  7764. "email": "p@tchwork.com"
  7765. },
  7766. {
  7767. "name": "Symfony Community",
  7768. "homepage": "https://symfony.com/contributors"
  7769. }
  7770. ],
  7771. "description": "Generic abstractions related to translation",
  7772. "homepage": "https://symfony.com",
  7773. "keywords": [
  7774. "abstractions",
  7775. "contracts",
  7776. "decoupling",
  7777. "interfaces",
  7778. "interoperability",
  7779. "standards"
  7780. ],
  7781. "support": {
  7782. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7783. },
  7784. "funding": [
  7785. {
  7786. "url": "https://symfony.com/sponsor",
  7787. "type": "custom"
  7788. },
  7789. {
  7790. "url": "https://github.com/fabpot",
  7791. "type": "github"
  7792. },
  7793. {
  7794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7795. "type": "tidelift"
  7796. }
  7797. ],
  7798. "time": "2024-04-18T09:32:20+00:00"
  7799. },
  7800. {
  7801. "name": "symfony/uid",
  7802. "version": "v7.1.6",
  7803. "source": {
  7804. "type": "git",
  7805. "url": "https://github.com/symfony/uid.git",
  7806. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917"
  7807. },
  7808. "dist": {
  7809. "type": "zip",
  7810. "url": "https://api.github.com/repos/symfony/uid/zipball/65befb3bb2d503bbffbd08c815aa38b472999917",
  7811. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917",
  7812. "shasum": ""
  7813. },
  7814. "require": {
  7815. "php": ">=8.2",
  7816. "symfony/polyfill-uuid": "^1.15"
  7817. },
  7818. "require-dev": {
  7819. "symfony/console": "^6.4|^7.0"
  7820. },
  7821. "type": "library",
  7822. "autoload": {
  7823. "psr-4": {
  7824. "Symfony\\Component\\Uid\\": ""
  7825. },
  7826. "exclude-from-classmap": [
  7827. "/Tests/"
  7828. ]
  7829. },
  7830. "notification-url": "https://packagist.org/downloads/",
  7831. "license": [
  7832. "MIT"
  7833. ],
  7834. "authors": [
  7835. {
  7836. "name": "Grégoire Pineau",
  7837. "email": "lyrixx@lyrixx.info"
  7838. },
  7839. {
  7840. "name": "Nicolas Grekas",
  7841. "email": "p@tchwork.com"
  7842. },
  7843. {
  7844. "name": "Symfony Community",
  7845. "homepage": "https://symfony.com/contributors"
  7846. }
  7847. ],
  7848. "description": "Provides an object-oriented API to generate and represent UIDs",
  7849. "homepage": "https://symfony.com",
  7850. "keywords": [
  7851. "UID",
  7852. "ulid",
  7853. "uuid"
  7854. ],
  7855. "support": {
  7856. "source": "https://github.com/symfony/uid/tree/v7.1.6"
  7857. },
  7858. "funding": [
  7859. {
  7860. "url": "https://symfony.com/sponsor",
  7861. "type": "custom"
  7862. },
  7863. {
  7864. "url": "https://github.com/fabpot",
  7865. "type": "github"
  7866. },
  7867. {
  7868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7869. "type": "tidelift"
  7870. }
  7871. ],
  7872. "time": "2024-09-25T14:20:29+00:00"
  7873. },
  7874. {
  7875. "name": "symfony/var-dumper",
  7876. "version": "v7.1.8",
  7877. "source": {
  7878. "type": "git",
  7879. "url": "https://github.com/symfony/var-dumper.git",
  7880. "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8"
  7881. },
  7882. "dist": {
  7883. "type": "zip",
  7884. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
  7885. "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
  7886. "shasum": ""
  7887. },
  7888. "require": {
  7889. "php": ">=8.2",
  7890. "symfony/polyfill-mbstring": "~1.0"
  7891. },
  7892. "conflict": {
  7893. "symfony/console": "<6.4"
  7894. },
  7895. "require-dev": {
  7896. "ext-iconv": "*",
  7897. "symfony/console": "^6.4|^7.0",
  7898. "symfony/http-kernel": "^6.4|^7.0",
  7899. "symfony/process": "^6.4|^7.0",
  7900. "symfony/uid": "^6.4|^7.0",
  7901. "twig/twig": "^3.0.4"
  7902. },
  7903. "bin": [
  7904. "Resources/bin/var-dump-server"
  7905. ],
  7906. "type": "library",
  7907. "autoload": {
  7908. "files": [
  7909. "Resources/functions/dump.php"
  7910. ],
  7911. "psr-4": {
  7912. "Symfony\\Component\\VarDumper\\": ""
  7913. },
  7914. "exclude-from-classmap": [
  7915. "/Tests/"
  7916. ]
  7917. },
  7918. "notification-url": "https://packagist.org/downloads/",
  7919. "license": [
  7920. "MIT"
  7921. ],
  7922. "authors": [
  7923. {
  7924. "name": "Nicolas Grekas",
  7925. "email": "p@tchwork.com"
  7926. },
  7927. {
  7928. "name": "Symfony Community",
  7929. "homepage": "https://symfony.com/contributors"
  7930. }
  7931. ],
  7932. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7933. "homepage": "https://symfony.com",
  7934. "keywords": [
  7935. "debug",
  7936. "dump"
  7937. ],
  7938. "support": {
  7939. "source": "https://github.com/symfony/var-dumper/tree/v7.1.8"
  7940. },
  7941. "funding": [
  7942. {
  7943. "url": "https://symfony.com/sponsor",
  7944. "type": "custom"
  7945. },
  7946. {
  7947. "url": "https://github.com/fabpot",
  7948. "type": "github"
  7949. },
  7950. {
  7951. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7952. "type": "tidelift"
  7953. }
  7954. ],
  7955. "time": "2024-11-08T15:46:42+00:00"
  7956. },
  7957. {
  7958. "name": "symfony/var-exporter",
  7959. "version": "v7.1.6",
  7960. "source": {
  7961. "type": "git",
  7962. "url": "https://github.com/symfony/var-exporter.git",
  7963. "reference": "90173ef89c40e7c8c616653241048705f84130ef"
  7964. },
  7965. "dist": {
  7966. "type": "zip",
  7967. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/90173ef89c40e7c8c616653241048705f84130ef",
  7968. "reference": "90173ef89c40e7c8c616653241048705f84130ef",
  7969. "shasum": ""
  7970. },
  7971. "require": {
  7972. "php": ">=8.2"
  7973. },
  7974. "require-dev": {
  7975. "symfony/property-access": "^6.4|^7.0",
  7976. "symfony/serializer": "^6.4|^7.0",
  7977. "symfony/var-dumper": "^6.4|^7.0"
  7978. },
  7979. "type": "library",
  7980. "autoload": {
  7981. "psr-4": {
  7982. "Symfony\\Component\\VarExporter\\": ""
  7983. },
  7984. "exclude-from-classmap": [
  7985. "/Tests/"
  7986. ]
  7987. },
  7988. "notification-url": "https://packagist.org/downloads/",
  7989. "license": [
  7990. "MIT"
  7991. ],
  7992. "authors": [
  7993. {
  7994. "name": "Nicolas Grekas",
  7995. "email": "p@tchwork.com"
  7996. },
  7997. {
  7998. "name": "Symfony Community",
  7999. "homepage": "https://symfony.com/contributors"
  8000. }
  8001. ],
  8002. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8003. "homepage": "https://symfony.com",
  8004. "keywords": [
  8005. "clone",
  8006. "construct",
  8007. "export",
  8008. "hydrate",
  8009. "instantiate",
  8010. "lazy-loading",
  8011. "proxy",
  8012. "serialize"
  8013. ],
  8014. "support": {
  8015. "source": "https://github.com/symfony/var-exporter/tree/v7.1.6"
  8016. },
  8017. "funding": [
  8018. {
  8019. "url": "https://symfony.com/sponsor",
  8020. "type": "custom"
  8021. },
  8022. {
  8023. "url": "https://github.com/fabpot",
  8024. "type": "github"
  8025. },
  8026. {
  8027. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8028. "type": "tidelift"
  8029. }
  8030. ],
  8031. "time": "2024-09-25T14:20:29+00:00"
  8032. },
  8033. {
  8034. "name": "symfony/yaml",
  8035. "version": "v7.1.6",
  8036. "source": {
  8037. "type": "git",
  8038. "url": "https://github.com/symfony/yaml.git",
  8039. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671"
  8040. },
  8041. "dist": {
  8042. "type": "zip",
  8043. "url": "https://api.github.com/repos/symfony/yaml/zipball/3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  8044. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  8045. "shasum": ""
  8046. },
  8047. "require": {
  8048. "php": ">=8.2",
  8049. "symfony/polyfill-ctype": "^1.8"
  8050. },
  8051. "conflict": {
  8052. "symfony/console": "<6.4"
  8053. },
  8054. "require-dev": {
  8055. "symfony/console": "^6.4|^7.0"
  8056. },
  8057. "bin": [
  8058. "Resources/bin/yaml-lint"
  8059. ],
  8060. "type": "library",
  8061. "autoload": {
  8062. "psr-4": {
  8063. "Symfony\\Component\\Yaml\\": ""
  8064. },
  8065. "exclude-from-classmap": [
  8066. "/Tests/"
  8067. ]
  8068. },
  8069. "notification-url": "https://packagist.org/downloads/",
  8070. "license": [
  8071. "MIT"
  8072. ],
  8073. "authors": [
  8074. {
  8075. "name": "Fabien Potencier",
  8076. "email": "fabien@symfony.com"
  8077. },
  8078. {
  8079. "name": "Symfony Community",
  8080. "homepage": "https://symfony.com/contributors"
  8081. }
  8082. ],
  8083. "description": "Loads and dumps YAML files",
  8084. "homepage": "https://symfony.com",
  8085. "support": {
  8086. "source": "https://github.com/symfony/yaml/tree/v7.1.6"
  8087. },
  8088. "funding": [
  8089. {
  8090. "url": "https://symfony.com/sponsor",
  8091. "type": "custom"
  8092. },
  8093. {
  8094. "url": "https://github.com/fabpot",
  8095. "type": "github"
  8096. },
  8097. {
  8098. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8099. "type": "tidelift"
  8100. }
  8101. ],
  8102. "time": "2024-09-25T14:20:29+00:00"
  8103. },
  8104. {
  8105. "name": "thenorthmemory/xml",
  8106. "version": "1.1.1",
  8107. "source": {
  8108. "type": "git",
  8109. "url": "https://github.com/TheNorthMemory/xml.git",
  8110. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb"
  8111. },
  8112. "dist": {
  8113. "type": "zip",
  8114. "url": "https://api.github.com/repos/TheNorthMemory/xml/zipball/6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  8115. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  8116. "shasum": ""
  8117. },
  8118. "require": {
  8119. "ext-libxml": "*",
  8120. "ext-simplexml": "*",
  8121. "php": ">=7.1.2"
  8122. },
  8123. "require-dev": {
  8124. "phpstan/phpstan": "^0.12.89 || ^1.0",
  8125. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  8126. },
  8127. "type": "library",
  8128. "autoload": {
  8129. "psr-4": {
  8130. "TheNorthMemory\\Xml\\": "src/"
  8131. }
  8132. },
  8133. "notification-url": "https://packagist.org/downloads/",
  8134. "license": [
  8135. "Apache-2.0"
  8136. ],
  8137. "authors": [
  8138. {
  8139. "name": "James ZHANG",
  8140. "homepage": "https://github.com/TheNorthMemory"
  8141. }
  8142. ],
  8143. "description": "A wrapper of the XML parser and builder",
  8144. "homepage": "https://github.com/TheNorthMemory/xml",
  8145. "keywords": [
  8146. "xml-builder",
  8147. "xml-parser"
  8148. ],
  8149. "support": {
  8150. "issues": "https://github.com/TheNorthMemory/xml/issues",
  8151. "source": "https://github.com/TheNorthMemory/xml/tree/1.1.1"
  8152. },
  8153. "time": "2023-01-15T06:01:13+00:00"
  8154. },
  8155. {
  8156. "name": "tijsverkoyen/css-to-inline-styles",
  8157. "version": "v2.2.7",
  8158. "source": {
  8159. "type": "git",
  8160. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8161. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  8162. },
  8163. "dist": {
  8164. "type": "zip",
  8165. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8166. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8167. "shasum": ""
  8168. },
  8169. "require": {
  8170. "ext-dom": "*",
  8171. "ext-libxml": "*",
  8172. "php": "^5.5 || ^7.0 || ^8.0",
  8173. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  8174. },
  8175. "require-dev": {
  8176. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8177. },
  8178. "type": "library",
  8179. "extra": {
  8180. "branch-alias": {
  8181. "dev-master": "2.2.x-dev"
  8182. }
  8183. },
  8184. "autoload": {
  8185. "psr-4": {
  8186. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8187. }
  8188. },
  8189. "notification-url": "https://packagist.org/downloads/",
  8190. "license": [
  8191. "BSD-3-Clause"
  8192. ],
  8193. "authors": [
  8194. {
  8195. "name": "Tijs Verkoyen",
  8196. "email": "css_to_inline_styles@verkoyen.eu",
  8197. "role": "Developer"
  8198. }
  8199. ],
  8200. "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.",
  8201. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8202. "support": {
  8203. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8204. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  8205. },
  8206. "time": "2023-12-08T13:03:43+00:00"
  8207. },
  8208. {
  8209. "name": "vlucas/phpdotenv",
  8210. "version": "v5.6.1",
  8211. "source": {
  8212. "type": "git",
  8213. "url": "https://github.com/vlucas/phpdotenv.git",
  8214. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  8215. },
  8216. "dist": {
  8217. "type": "zip",
  8218. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8219. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8220. "shasum": ""
  8221. },
  8222. "require": {
  8223. "ext-pcre": "*",
  8224. "graham-campbell/result-type": "^1.1.3",
  8225. "php": "^7.2.5 || ^8.0",
  8226. "phpoption/phpoption": "^1.9.3",
  8227. "symfony/polyfill-ctype": "^1.24",
  8228. "symfony/polyfill-mbstring": "^1.24",
  8229. "symfony/polyfill-php80": "^1.24"
  8230. },
  8231. "require-dev": {
  8232. "bamarni/composer-bin-plugin": "^1.8.2",
  8233. "ext-filter": "*",
  8234. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8235. },
  8236. "suggest": {
  8237. "ext-filter": "Required to use the boolean validator."
  8238. },
  8239. "type": "library",
  8240. "extra": {
  8241. "bamarni-bin": {
  8242. "bin-links": true,
  8243. "forward-command": false
  8244. },
  8245. "branch-alias": {
  8246. "dev-master": "5.6-dev"
  8247. }
  8248. },
  8249. "autoload": {
  8250. "psr-4": {
  8251. "Dotenv\\": "src/"
  8252. }
  8253. },
  8254. "notification-url": "https://packagist.org/downloads/",
  8255. "license": [
  8256. "BSD-3-Clause"
  8257. ],
  8258. "authors": [
  8259. {
  8260. "name": "Graham Campbell",
  8261. "email": "hello@gjcampbell.co.uk",
  8262. "homepage": "https://github.com/GrahamCampbell"
  8263. },
  8264. {
  8265. "name": "Vance Lucas",
  8266. "email": "vance@vancelucas.com",
  8267. "homepage": "https://github.com/vlucas"
  8268. }
  8269. ],
  8270. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8271. "keywords": [
  8272. "dotenv",
  8273. "env",
  8274. "environment"
  8275. ],
  8276. "support": {
  8277. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8278. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8279. },
  8280. "funding": [
  8281. {
  8282. "url": "https://github.com/GrahamCampbell",
  8283. "type": "github"
  8284. },
  8285. {
  8286. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8287. "type": "tidelift"
  8288. }
  8289. ],
  8290. "time": "2024-07-20T21:52:34+00:00"
  8291. },
  8292. {
  8293. "name": "voku/portable-ascii",
  8294. "version": "2.0.3",
  8295. "source": {
  8296. "type": "git",
  8297. "url": "https://github.com/voku/portable-ascii.git",
  8298. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  8299. },
  8300. "dist": {
  8301. "type": "zip",
  8302. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  8303. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  8304. "shasum": ""
  8305. },
  8306. "require": {
  8307. "php": ">=7.0.0"
  8308. },
  8309. "require-dev": {
  8310. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8311. },
  8312. "suggest": {
  8313. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8314. },
  8315. "type": "library",
  8316. "autoload": {
  8317. "psr-4": {
  8318. "voku\\": "src/voku/"
  8319. }
  8320. },
  8321. "notification-url": "https://packagist.org/downloads/",
  8322. "license": [
  8323. "MIT"
  8324. ],
  8325. "authors": [
  8326. {
  8327. "name": "Lars Moelleken",
  8328. "homepage": "https://www.moelleken.org/"
  8329. }
  8330. ],
  8331. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8332. "homepage": "https://github.com/voku/portable-ascii",
  8333. "keywords": [
  8334. "ascii",
  8335. "clean",
  8336. "php"
  8337. ],
  8338. "support": {
  8339. "issues": "https://github.com/voku/portable-ascii/issues",
  8340. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  8341. },
  8342. "funding": [
  8343. {
  8344. "url": "https://www.paypal.me/moelleken",
  8345. "type": "custom"
  8346. },
  8347. {
  8348. "url": "https://github.com/voku",
  8349. "type": "github"
  8350. },
  8351. {
  8352. "url": "https://opencollective.com/portable-ascii",
  8353. "type": "open_collective"
  8354. },
  8355. {
  8356. "url": "https://www.patreon.com/voku",
  8357. "type": "patreon"
  8358. },
  8359. {
  8360. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8361. "type": "tidelift"
  8362. }
  8363. ],
  8364. "time": "2024-11-21T01:49:47+00:00"
  8365. },
  8366. {
  8367. "name": "w7corp/easywechat",
  8368. "version": "6.15.5",
  8369. "source": {
  8370. "type": "git",
  8371. "url": "https://github.com/w7corp/easywechat.git",
  8372. "reference": "d643084ba958ba8ca077e82b805748dfeb5aa44d"
  8373. },
  8374. "dist": {
  8375. "type": "zip",
  8376. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/d643084ba958ba8ca077e82b805748dfeb5aa44d",
  8377. "reference": "d643084ba958ba8ca077e82b805748dfeb5aa44d",
  8378. "shasum": ""
  8379. },
  8380. "require": {
  8381. "ext-curl": "*",
  8382. "ext-fileinfo": "*",
  8383. "ext-libxml": "*",
  8384. "ext-openssl": "*",
  8385. "ext-simplexml": "*",
  8386. "ext-sodium": "*",
  8387. "nyholm/psr7": "^1.5",
  8388. "nyholm/psr7-server": "^1.0",
  8389. "overtrue/socialite": "^3.5.4|^4.0.1",
  8390. "php": ">=8.0.2",
  8391. "psr/http-client": "^1.0",
  8392. "psr/simple-cache": "^1.0|^2.0|^3.0",
  8393. "symfony/cache": "^5.4|^6.0|^7.0",
  8394. "symfony/http-client": "^5.4|^6.0|^7.0",
  8395. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8396. "symfony/mime": "^5.4|^6.0|^7.0",
  8397. "symfony/polyfill-php81": "^1.25",
  8398. "symfony/psr-http-message-bridge": "^2.1.2|^6.4.0|^7.1",
  8399. "thenorthmemory/xml": "^1.0"
  8400. },
  8401. "require-dev": {
  8402. "jetbrains/phpstorm-attributes": "^1.0",
  8403. "laravel/pint": "^1.2",
  8404. "mikey179/vfsstream": "^1.6",
  8405. "mockery/mockery": "^1.4.4",
  8406. "phpstan/phpstan": "^1.0",
  8407. "phpunit/phpunit": "^9.5",
  8408. "symfony/var-dumper": "^5.2"
  8409. },
  8410. "type": "library",
  8411. "autoload": {
  8412. "psr-4": {
  8413. "EasyWeChat\\": "src/"
  8414. }
  8415. },
  8416. "notification-url": "https://packagist.org/downloads/",
  8417. "license": [
  8418. "MIT"
  8419. ],
  8420. "authors": [
  8421. {
  8422. "name": "overtrue",
  8423. "email": "anzhengchao@gmail.com"
  8424. }
  8425. ],
  8426. "description": "微信SDK",
  8427. "keywords": [
  8428. "easywechat",
  8429. "sdk",
  8430. "wechat",
  8431. "weixin",
  8432. "weixin-sdk"
  8433. ],
  8434. "support": {
  8435. "issues": "https://github.com/w7corp/easywechat/issues",
  8436. "source": "https://github.com/w7corp/easywechat/tree/6.15.5"
  8437. },
  8438. "funding": [
  8439. {
  8440. "url": "https://github.com/overtrue",
  8441. "type": "github"
  8442. }
  8443. ],
  8444. "time": "2024-11-15T04:34:15+00:00"
  8445. },
  8446. {
  8447. "name": "webmozart/assert",
  8448. "version": "1.11.0",
  8449. "source": {
  8450. "type": "git",
  8451. "url": "https://github.com/webmozarts/assert.git",
  8452. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8453. },
  8454. "dist": {
  8455. "type": "zip",
  8456. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8457. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8458. "shasum": ""
  8459. },
  8460. "require": {
  8461. "ext-ctype": "*",
  8462. "php": "^7.2 || ^8.0"
  8463. },
  8464. "conflict": {
  8465. "phpstan/phpstan": "<0.12.20",
  8466. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8467. },
  8468. "require-dev": {
  8469. "phpunit/phpunit": "^8.5.13"
  8470. },
  8471. "type": "library",
  8472. "extra": {
  8473. "branch-alias": {
  8474. "dev-master": "1.10-dev"
  8475. }
  8476. },
  8477. "autoload": {
  8478. "psr-4": {
  8479. "Webmozart\\Assert\\": "src/"
  8480. }
  8481. },
  8482. "notification-url": "https://packagist.org/downloads/",
  8483. "license": [
  8484. "MIT"
  8485. ],
  8486. "authors": [
  8487. {
  8488. "name": "Bernhard Schussek",
  8489. "email": "bschussek@gmail.com"
  8490. }
  8491. ],
  8492. "description": "Assertions to validate method input/output with nice error messages.",
  8493. "keywords": [
  8494. "assert",
  8495. "check",
  8496. "validate"
  8497. ],
  8498. "support": {
  8499. "issues": "https://github.com/webmozarts/assert/issues",
  8500. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8501. },
  8502. "time": "2022-06-03T18:03:27+00:00"
  8503. }
  8504. ],
  8505. "packages-dev": [
  8506. {
  8507. "name": "barryvdh/laravel-ide-helper",
  8508. "version": "v3.2.2",
  8509. "source": {
  8510. "type": "git",
  8511. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  8512. "reference": "07e3bd8796f3d1414801a03d3783f9d3ec9efc08"
  8513. },
  8514. "dist": {
  8515. "type": "zip",
  8516. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/07e3bd8796f3d1414801a03d3783f9d3ec9efc08",
  8517. "reference": "07e3bd8796f3d1414801a03d3783f9d3ec9efc08",
  8518. "shasum": ""
  8519. },
  8520. "require": {
  8521. "barryvdh/reflection-docblock": "^2.1.2",
  8522. "composer/class-map-generator": "^1.0",
  8523. "ext-json": "*",
  8524. "illuminate/console": "^11.15",
  8525. "illuminate/database": "^11.15",
  8526. "illuminate/filesystem": "^11.15",
  8527. "illuminate/support": "^11.15",
  8528. "nikic/php-parser": "^4.18 || ^5",
  8529. "php": "^8.2",
  8530. "phpdocumentor/type-resolver": "^1.1.0"
  8531. },
  8532. "require-dev": {
  8533. "ext-pdo_sqlite": "*",
  8534. "friendsofphp/php-cs-fixer": "^3",
  8535. "illuminate/config": "^11.15",
  8536. "illuminate/view": "^11.15",
  8537. "mockery/mockery": "^1.4",
  8538. "orchestra/testbench": "^9.2",
  8539. "phpunit/phpunit": "^10.5",
  8540. "spatie/phpunit-snapshot-assertions": "^4 || ^5",
  8541. "vimeo/psalm": "^5.4"
  8542. },
  8543. "suggest": {
  8544. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9|^10|^11)."
  8545. },
  8546. "type": "library",
  8547. "extra": {
  8548. "branch-alias": {
  8549. "dev-master": "3.2-dev"
  8550. },
  8551. "laravel": {
  8552. "providers": [
  8553. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  8554. ]
  8555. }
  8556. },
  8557. "autoload": {
  8558. "psr-4": {
  8559. "Barryvdh\\LaravelIdeHelper\\": "src"
  8560. }
  8561. },
  8562. "notification-url": "https://packagist.org/downloads/",
  8563. "license": [
  8564. "MIT"
  8565. ],
  8566. "authors": [
  8567. {
  8568. "name": "Barry vd. Heuvel",
  8569. "email": "barryvdh@gmail.com"
  8570. }
  8571. ],
  8572. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  8573. "keywords": [
  8574. "autocomplete",
  8575. "codeintel",
  8576. "helper",
  8577. "ide",
  8578. "laravel",
  8579. "netbeans",
  8580. "phpdoc",
  8581. "phpstorm",
  8582. "sublime"
  8583. ],
  8584. "support": {
  8585. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  8586. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v3.2.2"
  8587. },
  8588. "funding": [
  8589. {
  8590. "url": "https://fruitcake.nl",
  8591. "type": "custom"
  8592. },
  8593. {
  8594. "url": "https://github.com/barryvdh",
  8595. "type": "github"
  8596. }
  8597. ],
  8598. "time": "2024-10-29T14:00:16+00:00"
  8599. },
  8600. {
  8601. "name": "barryvdh/reflection-docblock",
  8602. "version": "v2.1.3",
  8603. "source": {
  8604. "type": "git",
  8605. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  8606. "reference": "c6fad15f7c878be21650c51e1f841bca7e49752e"
  8607. },
  8608. "dist": {
  8609. "type": "zip",
  8610. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/c6fad15f7c878be21650c51e1f841bca7e49752e",
  8611. "reference": "c6fad15f7c878be21650c51e1f841bca7e49752e",
  8612. "shasum": ""
  8613. },
  8614. "require": {
  8615. "php": ">=5.3.3"
  8616. },
  8617. "require-dev": {
  8618. "phpunit/phpunit": "^8.5.14|^9"
  8619. },
  8620. "suggest": {
  8621. "dflydev/markdown": "~1.0",
  8622. "erusev/parsedown": "~1.0"
  8623. },
  8624. "type": "library",
  8625. "extra": {
  8626. "branch-alias": {
  8627. "dev-master": "2.0.x-dev"
  8628. }
  8629. },
  8630. "autoload": {
  8631. "psr-0": {
  8632. "Barryvdh": [
  8633. "src/"
  8634. ]
  8635. }
  8636. },
  8637. "notification-url": "https://packagist.org/downloads/",
  8638. "license": [
  8639. "MIT"
  8640. ],
  8641. "authors": [
  8642. {
  8643. "name": "Mike van Riel",
  8644. "email": "mike.vanriel@naenius.com"
  8645. }
  8646. ],
  8647. "support": {
  8648. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.1.3"
  8649. },
  8650. "time": "2024-10-23T11:41:03+00:00"
  8651. },
  8652. {
  8653. "name": "composer/class-map-generator",
  8654. "version": "1.5.0",
  8655. "source": {
  8656. "type": "git",
  8657. "url": "https://github.com/composer/class-map-generator.git",
  8658. "reference": "4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915"
  8659. },
  8660. "dist": {
  8661. "type": "zip",
  8662. "url": "https://api.github.com/repos/composer/class-map-generator/zipball/4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915",
  8663. "reference": "4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915",
  8664. "shasum": ""
  8665. },
  8666. "require": {
  8667. "composer/pcre": "^2.1 || ^3.1",
  8668. "php": "^7.2 || ^8.0",
  8669. "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
  8670. },
  8671. "require-dev": {
  8672. "phpstan/phpstan": "^1.12 || ^2",
  8673. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  8674. "phpstan/phpstan-phpunit": "^1 || ^2",
  8675. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  8676. "phpunit/phpunit": "^8",
  8677. "symfony/filesystem": "^5.4 || ^6"
  8678. },
  8679. "type": "library",
  8680. "extra": {
  8681. "branch-alias": {
  8682. "dev-main": "1.x-dev"
  8683. }
  8684. },
  8685. "autoload": {
  8686. "psr-4": {
  8687. "Composer\\ClassMapGenerator\\": "src"
  8688. }
  8689. },
  8690. "notification-url": "https://packagist.org/downloads/",
  8691. "license": [
  8692. "MIT"
  8693. ],
  8694. "authors": [
  8695. {
  8696. "name": "Jordi Boggiano",
  8697. "email": "j.boggiano@seld.be",
  8698. "homepage": "https://seld.be"
  8699. }
  8700. ],
  8701. "description": "Utilities to scan PHP code and generate class maps.",
  8702. "keywords": [
  8703. "classmap"
  8704. ],
  8705. "support": {
  8706. "issues": "https://github.com/composer/class-map-generator/issues",
  8707. "source": "https://github.com/composer/class-map-generator/tree/1.5.0"
  8708. },
  8709. "funding": [
  8710. {
  8711. "url": "https://packagist.com",
  8712. "type": "custom"
  8713. },
  8714. {
  8715. "url": "https://github.com/composer",
  8716. "type": "github"
  8717. },
  8718. {
  8719. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8720. "type": "tidelift"
  8721. }
  8722. ],
  8723. "time": "2024-11-25T16:11:06+00:00"
  8724. },
  8725. {
  8726. "name": "composer/pcre",
  8727. "version": "3.3.2",
  8728. "source": {
  8729. "type": "git",
  8730. "url": "https://github.com/composer/pcre.git",
  8731. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8732. },
  8733. "dist": {
  8734. "type": "zip",
  8735. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8736. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8737. "shasum": ""
  8738. },
  8739. "require": {
  8740. "php": "^7.4 || ^8.0"
  8741. },
  8742. "conflict": {
  8743. "phpstan/phpstan": "<1.11.10"
  8744. },
  8745. "require-dev": {
  8746. "phpstan/phpstan": "^1.12 || ^2",
  8747. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8748. "phpunit/phpunit": "^8 || ^9"
  8749. },
  8750. "type": "library",
  8751. "extra": {
  8752. "branch-alias": {
  8753. "dev-main": "3.x-dev"
  8754. },
  8755. "phpstan": {
  8756. "includes": [
  8757. "extension.neon"
  8758. ]
  8759. }
  8760. },
  8761. "autoload": {
  8762. "psr-4": {
  8763. "Composer\\Pcre\\": "src"
  8764. }
  8765. },
  8766. "notification-url": "https://packagist.org/downloads/",
  8767. "license": [
  8768. "MIT"
  8769. ],
  8770. "authors": [
  8771. {
  8772. "name": "Jordi Boggiano",
  8773. "email": "j.boggiano@seld.be",
  8774. "homepage": "http://seld.be"
  8775. }
  8776. ],
  8777. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8778. "keywords": [
  8779. "PCRE",
  8780. "preg",
  8781. "regex",
  8782. "regular expression"
  8783. ],
  8784. "support": {
  8785. "issues": "https://github.com/composer/pcre/issues",
  8786. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8787. },
  8788. "funding": [
  8789. {
  8790. "url": "https://packagist.com",
  8791. "type": "custom"
  8792. },
  8793. {
  8794. "url": "https://github.com/composer",
  8795. "type": "github"
  8796. },
  8797. {
  8798. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8799. "type": "tidelift"
  8800. }
  8801. ],
  8802. "time": "2024-11-12T16:29:46+00:00"
  8803. },
  8804. {
  8805. "name": "doctrine/deprecations",
  8806. "version": "1.1.3",
  8807. "source": {
  8808. "type": "git",
  8809. "url": "https://github.com/doctrine/deprecations.git",
  8810. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  8811. },
  8812. "dist": {
  8813. "type": "zip",
  8814. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  8815. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  8816. "shasum": ""
  8817. },
  8818. "require": {
  8819. "php": "^7.1 || ^8.0"
  8820. },
  8821. "require-dev": {
  8822. "doctrine/coding-standard": "^9",
  8823. "phpstan/phpstan": "1.4.10 || 1.10.15",
  8824. "phpstan/phpstan-phpunit": "^1.0",
  8825. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8826. "psalm/plugin-phpunit": "0.18.4",
  8827. "psr/log": "^1 || ^2 || ^3",
  8828. "vimeo/psalm": "4.30.0 || 5.12.0"
  8829. },
  8830. "suggest": {
  8831. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  8832. },
  8833. "type": "library",
  8834. "autoload": {
  8835. "psr-4": {
  8836. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  8837. }
  8838. },
  8839. "notification-url": "https://packagist.org/downloads/",
  8840. "license": [
  8841. "MIT"
  8842. ],
  8843. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  8844. "homepage": "https://www.doctrine-project.org/",
  8845. "support": {
  8846. "issues": "https://github.com/doctrine/deprecations/issues",
  8847. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  8848. },
  8849. "time": "2024-01-30T19:34:25+00:00"
  8850. },
  8851. {
  8852. "name": "hamcrest/hamcrest-php",
  8853. "version": "v2.0.1",
  8854. "source": {
  8855. "type": "git",
  8856. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8857. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8858. },
  8859. "dist": {
  8860. "type": "zip",
  8861. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8862. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8863. "shasum": ""
  8864. },
  8865. "require": {
  8866. "php": "^5.3|^7.0|^8.0"
  8867. },
  8868. "replace": {
  8869. "cordoval/hamcrest-php": "*",
  8870. "davedevelopment/hamcrest-php": "*",
  8871. "kodova/hamcrest-php": "*"
  8872. },
  8873. "require-dev": {
  8874. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8875. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8876. },
  8877. "type": "library",
  8878. "extra": {
  8879. "branch-alias": {
  8880. "dev-master": "2.1-dev"
  8881. }
  8882. },
  8883. "autoload": {
  8884. "classmap": [
  8885. "hamcrest"
  8886. ]
  8887. },
  8888. "notification-url": "https://packagist.org/downloads/",
  8889. "license": [
  8890. "BSD-3-Clause"
  8891. ],
  8892. "description": "This is the PHP port of Hamcrest Matchers",
  8893. "keywords": [
  8894. "test"
  8895. ],
  8896. "support": {
  8897. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8898. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8899. },
  8900. "time": "2020-07-09T08:09:16+00:00"
  8901. },
  8902. {
  8903. "name": "laravel/pail",
  8904. "version": "v1.2.1",
  8905. "source": {
  8906. "type": "git",
  8907. "url": "https://github.com/laravel/pail.git",
  8908. "reference": "353ac12134b98e2e7c3333d916bd3e523931e583"
  8909. },
  8910. "dist": {
  8911. "type": "zip",
  8912. "url": "https://api.github.com/repos/laravel/pail/zipball/353ac12134b98e2e7c3333d916bd3e523931e583",
  8913. "reference": "353ac12134b98e2e7c3333d916bd3e523931e583",
  8914. "shasum": ""
  8915. },
  8916. "require": {
  8917. "ext-mbstring": "*",
  8918. "illuminate/console": "^10.24|^11.0",
  8919. "illuminate/contracts": "^10.24|^11.0",
  8920. "illuminate/log": "^10.24|^11.0",
  8921. "illuminate/process": "^10.24|^11.0",
  8922. "illuminate/support": "^10.24|^11.0",
  8923. "nunomaduro/termwind": "^1.15|^2.0",
  8924. "php": "^8.2",
  8925. "symfony/console": "^6.0|^7.0"
  8926. },
  8927. "require-dev": {
  8928. "laravel/framework": "^10.24|^11.0",
  8929. "laravel/pint": "^1.13",
  8930. "orchestra/testbench-core": "^8.12|^9.0",
  8931. "pestphp/pest": "^2.20",
  8932. "pestphp/pest-plugin-type-coverage": "^2.3",
  8933. "phpstan/phpstan": "^1.10",
  8934. "symfony/var-dumper": "^6.3|^7.0"
  8935. },
  8936. "type": "library",
  8937. "extra": {
  8938. "branch-alias": {
  8939. "dev-main": "1.x-dev"
  8940. },
  8941. "laravel": {
  8942. "providers": [
  8943. "Laravel\\Pail\\PailServiceProvider"
  8944. ]
  8945. }
  8946. },
  8947. "autoload": {
  8948. "psr-4": {
  8949. "Laravel\\Pail\\": "src/"
  8950. }
  8951. },
  8952. "notification-url": "https://packagist.org/downloads/",
  8953. "license": [
  8954. "MIT"
  8955. ],
  8956. "authors": [
  8957. {
  8958. "name": "Taylor Otwell",
  8959. "email": "taylor@laravel.com"
  8960. },
  8961. {
  8962. "name": "Nuno Maduro",
  8963. "email": "enunomaduro@gmail.com"
  8964. }
  8965. ],
  8966. "description": "Easily delve into your Laravel application's log files directly from the command line.",
  8967. "homepage": "https://github.com/laravel/pail",
  8968. "keywords": [
  8969. "laravel",
  8970. "logs",
  8971. "php",
  8972. "tail"
  8973. ],
  8974. "support": {
  8975. "issues": "https://github.com/laravel/pail/issues",
  8976. "source": "https://github.com/laravel/pail"
  8977. },
  8978. "time": "2024-10-23T12:56:23+00:00"
  8979. },
  8980. {
  8981. "name": "laravel/pint",
  8982. "version": "v1.18.3",
  8983. "source": {
  8984. "type": "git",
  8985. "url": "https://github.com/laravel/pint.git",
  8986. "reference": "cef51821608239040ab841ad6e1c6ae502ae3026"
  8987. },
  8988. "dist": {
  8989. "type": "zip",
  8990. "url": "https://api.github.com/repos/laravel/pint/zipball/cef51821608239040ab841ad6e1c6ae502ae3026",
  8991. "reference": "cef51821608239040ab841ad6e1c6ae502ae3026",
  8992. "shasum": ""
  8993. },
  8994. "require": {
  8995. "ext-json": "*",
  8996. "ext-mbstring": "*",
  8997. "ext-tokenizer": "*",
  8998. "ext-xml": "*",
  8999. "php": "^8.1.0"
  9000. },
  9001. "require-dev": {
  9002. "friendsofphp/php-cs-fixer": "^3.65.0",
  9003. "illuminate/view": "^10.48.24",
  9004. "larastan/larastan": "^2.9.11",
  9005. "laravel-zero/framework": "^10.4.0",
  9006. "mockery/mockery": "^1.6.12",
  9007. "nunomaduro/termwind": "^1.17.0",
  9008. "pestphp/pest": "^2.36.0"
  9009. },
  9010. "bin": [
  9011. "builds/pint"
  9012. ],
  9013. "type": "project",
  9014. "autoload": {
  9015. "psr-4": {
  9016. "App\\": "app/",
  9017. "Database\\Seeders\\": "database/seeders/",
  9018. "Database\\Factories\\": "database/factories/"
  9019. }
  9020. },
  9021. "notification-url": "https://packagist.org/downloads/",
  9022. "license": [
  9023. "MIT"
  9024. ],
  9025. "authors": [
  9026. {
  9027. "name": "Nuno Maduro",
  9028. "email": "enunomaduro@gmail.com"
  9029. }
  9030. ],
  9031. "description": "An opinionated code formatter for PHP.",
  9032. "homepage": "https://laravel.com",
  9033. "keywords": [
  9034. "format",
  9035. "formatter",
  9036. "lint",
  9037. "linter",
  9038. "php"
  9039. ],
  9040. "support": {
  9041. "issues": "https://github.com/laravel/pint/issues",
  9042. "source": "https://github.com/laravel/pint"
  9043. },
  9044. "time": "2024-11-26T15:34:00+00:00"
  9045. },
  9046. {
  9047. "name": "laravel/sail",
  9048. "version": "v1.39.0",
  9049. "source": {
  9050. "type": "git",
  9051. "url": "https://github.com/laravel/sail.git",
  9052. "reference": "be9d67a11133535811f9ec4ab5c176a2f47250fc"
  9053. },
  9054. "dist": {
  9055. "type": "zip",
  9056. "url": "https://api.github.com/repos/laravel/sail/zipball/be9d67a11133535811f9ec4ab5c176a2f47250fc",
  9057. "reference": "be9d67a11133535811f9ec4ab5c176a2f47250fc",
  9058. "shasum": ""
  9059. },
  9060. "require": {
  9061. "illuminate/console": "^9.52.16|^10.0|^11.0",
  9062. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  9063. "illuminate/support": "^9.52.16|^10.0|^11.0",
  9064. "php": "^8.0",
  9065. "symfony/console": "^6.0|^7.0",
  9066. "symfony/yaml": "^6.0|^7.0"
  9067. },
  9068. "require-dev": {
  9069. "orchestra/testbench": "^7.0|^8.0|^9.0",
  9070. "phpstan/phpstan": "^1.10"
  9071. },
  9072. "bin": [
  9073. "bin/sail"
  9074. ],
  9075. "type": "library",
  9076. "extra": {
  9077. "laravel": {
  9078. "providers": [
  9079. "Laravel\\Sail\\SailServiceProvider"
  9080. ]
  9081. }
  9082. },
  9083. "autoload": {
  9084. "psr-4": {
  9085. "Laravel\\Sail\\": "src/"
  9086. }
  9087. },
  9088. "notification-url": "https://packagist.org/downloads/",
  9089. "license": [
  9090. "MIT"
  9091. ],
  9092. "authors": [
  9093. {
  9094. "name": "Taylor Otwell",
  9095. "email": "taylor@laravel.com"
  9096. }
  9097. ],
  9098. "description": "Docker files for running a basic Laravel application.",
  9099. "keywords": [
  9100. "docker",
  9101. "laravel"
  9102. ],
  9103. "support": {
  9104. "issues": "https://github.com/laravel/sail/issues",
  9105. "source": "https://github.com/laravel/sail"
  9106. },
  9107. "time": "2024-11-25T23:48:26+00:00"
  9108. },
  9109. {
  9110. "name": "mockery/mockery",
  9111. "version": "1.6.12",
  9112. "source": {
  9113. "type": "git",
  9114. "url": "https://github.com/mockery/mockery.git",
  9115. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9116. },
  9117. "dist": {
  9118. "type": "zip",
  9119. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9120. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9121. "shasum": ""
  9122. },
  9123. "require": {
  9124. "hamcrest/hamcrest-php": "^2.0.1",
  9125. "lib-pcre": ">=7.0",
  9126. "php": ">=7.3"
  9127. },
  9128. "conflict": {
  9129. "phpunit/phpunit": "<8.0"
  9130. },
  9131. "require-dev": {
  9132. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9133. "symplify/easy-coding-standard": "^12.1.14"
  9134. },
  9135. "type": "library",
  9136. "autoload": {
  9137. "files": [
  9138. "library/helpers.php",
  9139. "library/Mockery.php"
  9140. ],
  9141. "psr-4": {
  9142. "Mockery\\": "library/Mockery"
  9143. }
  9144. },
  9145. "notification-url": "https://packagist.org/downloads/",
  9146. "license": [
  9147. "BSD-3-Clause"
  9148. ],
  9149. "authors": [
  9150. {
  9151. "name": "Pádraic Brady",
  9152. "email": "padraic.brady@gmail.com",
  9153. "homepage": "https://github.com/padraic",
  9154. "role": "Author"
  9155. },
  9156. {
  9157. "name": "Dave Marshall",
  9158. "email": "dave.marshall@atstsolutions.co.uk",
  9159. "homepage": "https://davedevelopment.co.uk",
  9160. "role": "Developer"
  9161. },
  9162. {
  9163. "name": "Nathanael Esayeas",
  9164. "email": "nathanael.esayeas@protonmail.com",
  9165. "homepage": "https://github.com/ghostwriter",
  9166. "role": "Lead Developer"
  9167. }
  9168. ],
  9169. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9170. "homepage": "https://github.com/mockery/mockery",
  9171. "keywords": [
  9172. "BDD",
  9173. "TDD",
  9174. "library",
  9175. "mock",
  9176. "mock objects",
  9177. "mockery",
  9178. "stub",
  9179. "test",
  9180. "test double",
  9181. "testing"
  9182. ],
  9183. "support": {
  9184. "docs": "https://docs.mockery.io/",
  9185. "issues": "https://github.com/mockery/mockery/issues",
  9186. "rss": "https://github.com/mockery/mockery/releases.atom",
  9187. "security": "https://github.com/mockery/mockery/security/advisories",
  9188. "source": "https://github.com/mockery/mockery"
  9189. },
  9190. "time": "2024-05-16T03:13:13+00:00"
  9191. },
  9192. {
  9193. "name": "myclabs/deep-copy",
  9194. "version": "1.12.1",
  9195. "source": {
  9196. "type": "git",
  9197. "url": "https://github.com/myclabs/DeepCopy.git",
  9198. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  9199. },
  9200. "dist": {
  9201. "type": "zip",
  9202. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  9203. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  9204. "shasum": ""
  9205. },
  9206. "require": {
  9207. "php": "^7.1 || ^8.0"
  9208. },
  9209. "conflict": {
  9210. "doctrine/collections": "<1.6.8",
  9211. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9212. },
  9213. "require-dev": {
  9214. "doctrine/collections": "^1.6.8",
  9215. "doctrine/common": "^2.13.3 || ^3.2.2",
  9216. "phpspec/prophecy": "^1.10",
  9217. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9218. },
  9219. "type": "library",
  9220. "autoload": {
  9221. "files": [
  9222. "src/DeepCopy/deep_copy.php"
  9223. ],
  9224. "psr-4": {
  9225. "DeepCopy\\": "src/DeepCopy/"
  9226. }
  9227. },
  9228. "notification-url": "https://packagist.org/downloads/",
  9229. "license": [
  9230. "MIT"
  9231. ],
  9232. "description": "Create deep copies (clones) of your objects",
  9233. "keywords": [
  9234. "clone",
  9235. "copy",
  9236. "duplicate",
  9237. "object",
  9238. "object graph"
  9239. ],
  9240. "support": {
  9241. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9242. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  9243. },
  9244. "funding": [
  9245. {
  9246. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9247. "type": "tidelift"
  9248. }
  9249. ],
  9250. "time": "2024-11-08T17:47:46+00:00"
  9251. },
  9252. {
  9253. "name": "phar-io/manifest",
  9254. "version": "2.0.4",
  9255. "source": {
  9256. "type": "git",
  9257. "url": "https://github.com/phar-io/manifest.git",
  9258. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9259. },
  9260. "dist": {
  9261. "type": "zip",
  9262. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9263. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9264. "shasum": ""
  9265. },
  9266. "require": {
  9267. "ext-dom": "*",
  9268. "ext-libxml": "*",
  9269. "ext-phar": "*",
  9270. "ext-xmlwriter": "*",
  9271. "phar-io/version": "^3.0.1",
  9272. "php": "^7.2 || ^8.0"
  9273. },
  9274. "type": "library",
  9275. "extra": {
  9276. "branch-alias": {
  9277. "dev-master": "2.0.x-dev"
  9278. }
  9279. },
  9280. "autoload": {
  9281. "classmap": [
  9282. "src/"
  9283. ]
  9284. },
  9285. "notification-url": "https://packagist.org/downloads/",
  9286. "license": [
  9287. "BSD-3-Clause"
  9288. ],
  9289. "authors": [
  9290. {
  9291. "name": "Arne Blankerts",
  9292. "email": "arne@blankerts.de",
  9293. "role": "Developer"
  9294. },
  9295. {
  9296. "name": "Sebastian Heuer",
  9297. "email": "sebastian@phpeople.de",
  9298. "role": "Developer"
  9299. },
  9300. {
  9301. "name": "Sebastian Bergmann",
  9302. "email": "sebastian@phpunit.de",
  9303. "role": "Developer"
  9304. }
  9305. ],
  9306. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9307. "support": {
  9308. "issues": "https://github.com/phar-io/manifest/issues",
  9309. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9310. },
  9311. "funding": [
  9312. {
  9313. "url": "https://github.com/theseer",
  9314. "type": "github"
  9315. }
  9316. ],
  9317. "time": "2024-03-03T12:33:53+00:00"
  9318. },
  9319. {
  9320. "name": "phar-io/version",
  9321. "version": "3.2.1",
  9322. "source": {
  9323. "type": "git",
  9324. "url": "https://github.com/phar-io/version.git",
  9325. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9326. },
  9327. "dist": {
  9328. "type": "zip",
  9329. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9330. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9331. "shasum": ""
  9332. },
  9333. "require": {
  9334. "php": "^7.2 || ^8.0"
  9335. },
  9336. "type": "library",
  9337. "autoload": {
  9338. "classmap": [
  9339. "src/"
  9340. ]
  9341. },
  9342. "notification-url": "https://packagist.org/downloads/",
  9343. "license": [
  9344. "BSD-3-Clause"
  9345. ],
  9346. "authors": [
  9347. {
  9348. "name": "Arne Blankerts",
  9349. "email": "arne@blankerts.de",
  9350. "role": "Developer"
  9351. },
  9352. {
  9353. "name": "Sebastian Heuer",
  9354. "email": "sebastian@phpeople.de",
  9355. "role": "Developer"
  9356. },
  9357. {
  9358. "name": "Sebastian Bergmann",
  9359. "email": "sebastian@phpunit.de",
  9360. "role": "Developer"
  9361. }
  9362. ],
  9363. "description": "Library for handling version information and constraints",
  9364. "support": {
  9365. "issues": "https://github.com/phar-io/version/issues",
  9366. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9367. },
  9368. "time": "2022-02-21T01:04:05+00:00"
  9369. },
  9370. {
  9371. "name": "phpdocumentor/reflection-common",
  9372. "version": "2.2.0",
  9373. "source": {
  9374. "type": "git",
  9375. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9376. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9377. },
  9378. "dist": {
  9379. "type": "zip",
  9380. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9381. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9382. "shasum": ""
  9383. },
  9384. "require": {
  9385. "php": "^7.2 || ^8.0"
  9386. },
  9387. "type": "library",
  9388. "extra": {
  9389. "branch-alias": {
  9390. "dev-2.x": "2.x-dev"
  9391. }
  9392. },
  9393. "autoload": {
  9394. "psr-4": {
  9395. "phpDocumentor\\Reflection\\": "src/"
  9396. }
  9397. },
  9398. "notification-url": "https://packagist.org/downloads/",
  9399. "license": [
  9400. "MIT"
  9401. ],
  9402. "authors": [
  9403. {
  9404. "name": "Jaap van Otterdijk",
  9405. "email": "opensource@ijaap.nl"
  9406. }
  9407. ],
  9408. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9409. "homepage": "http://www.phpdoc.org",
  9410. "keywords": [
  9411. "FQSEN",
  9412. "phpDocumentor",
  9413. "phpdoc",
  9414. "reflection",
  9415. "static analysis"
  9416. ],
  9417. "support": {
  9418. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9419. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9420. },
  9421. "time": "2020-06-27T09:03:43+00:00"
  9422. },
  9423. {
  9424. "name": "phpdocumentor/type-resolver",
  9425. "version": "1.10.0",
  9426. "source": {
  9427. "type": "git",
  9428. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9429. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  9430. },
  9431. "dist": {
  9432. "type": "zip",
  9433. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  9434. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  9435. "shasum": ""
  9436. },
  9437. "require": {
  9438. "doctrine/deprecations": "^1.0",
  9439. "php": "^7.3 || ^8.0",
  9440. "phpdocumentor/reflection-common": "^2.0",
  9441. "phpstan/phpdoc-parser": "^1.18|^2.0"
  9442. },
  9443. "require-dev": {
  9444. "ext-tokenizer": "*",
  9445. "phpbench/phpbench": "^1.2",
  9446. "phpstan/extension-installer": "^1.1",
  9447. "phpstan/phpstan": "^1.8",
  9448. "phpstan/phpstan-phpunit": "^1.1",
  9449. "phpunit/phpunit": "^9.5",
  9450. "rector/rector": "^0.13.9",
  9451. "vimeo/psalm": "^4.25"
  9452. },
  9453. "type": "library",
  9454. "extra": {
  9455. "branch-alias": {
  9456. "dev-1.x": "1.x-dev"
  9457. }
  9458. },
  9459. "autoload": {
  9460. "psr-4": {
  9461. "phpDocumentor\\Reflection\\": "src"
  9462. }
  9463. },
  9464. "notification-url": "https://packagist.org/downloads/",
  9465. "license": [
  9466. "MIT"
  9467. ],
  9468. "authors": [
  9469. {
  9470. "name": "Mike van Riel",
  9471. "email": "me@mikevanriel.com"
  9472. }
  9473. ],
  9474. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9475. "support": {
  9476. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9477. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  9478. },
  9479. "time": "2024-11-09T15:12:26+00:00"
  9480. },
  9481. {
  9482. "name": "phpstan/phpdoc-parser",
  9483. "version": "2.0.0",
  9484. "source": {
  9485. "type": "git",
  9486. "url": "https://github.com/phpstan/phpdoc-parser.git",
  9487. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299"
  9488. },
  9489. "dist": {
  9490. "type": "zip",
  9491. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/c00d78fb6b29658347f9d37ebe104bffadf36299",
  9492. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299",
  9493. "shasum": ""
  9494. },
  9495. "require": {
  9496. "php": "^7.4 || ^8.0"
  9497. },
  9498. "require-dev": {
  9499. "doctrine/annotations": "^2.0",
  9500. "nikic/php-parser": "^5.3.0",
  9501. "php-parallel-lint/php-parallel-lint": "^1.2",
  9502. "phpstan/extension-installer": "^1.0",
  9503. "phpstan/phpstan": "^2.0",
  9504. "phpstan/phpstan-phpunit": "^2.0",
  9505. "phpstan/phpstan-strict-rules": "^2.0",
  9506. "phpunit/phpunit": "^9.6",
  9507. "symfony/process": "^5.2"
  9508. },
  9509. "type": "library",
  9510. "autoload": {
  9511. "psr-4": {
  9512. "PHPStan\\PhpDocParser\\": [
  9513. "src/"
  9514. ]
  9515. }
  9516. },
  9517. "notification-url": "https://packagist.org/downloads/",
  9518. "license": [
  9519. "MIT"
  9520. ],
  9521. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  9522. "support": {
  9523. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  9524. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.0.0"
  9525. },
  9526. "time": "2024-10-13T11:29:49+00:00"
  9527. },
  9528. {
  9529. "name": "phpunit/php-code-coverage",
  9530. "version": "11.0.7",
  9531. "source": {
  9532. "type": "git",
  9533. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9534. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca"
  9535. },
  9536. "dist": {
  9537. "type": "zip",
  9538. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  9539. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  9540. "shasum": ""
  9541. },
  9542. "require": {
  9543. "ext-dom": "*",
  9544. "ext-libxml": "*",
  9545. "ext-xmlwriter": "*",
  9546. "nikic/php-parser": "^5.3.1",
  9547. "php": ">=8.2",
  9548. "phpunit/php-file-iterator": "^5.1.0",
  9549. "phpunit/php-text-template": "^4.0.1",
  9550. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  9551. "sebastian/complexity": "^4.0.1",
  9552. "sebastian/environment": "^7.2.0",
  9553. "sebastian/lines-of-code": "^3.0.1",
  9554. "sebastian/version": "^5.0.2",
  9555. "theseer/tokenizer": "^1.2.3"
  9556. },
  9557. "require-dev": {
  9558. "phpunit/phpunit": "^11.4.1"
  9559. },
  9560. "suggest": {
  9561. "ext-pcov": "PHP extension that provides line coverage",
  9562. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9563. },
  9564. "type": "library",
  9565. "extra": {
  9566. "branch-alias": {
  9567. "dev-main": "11.0.x-dev"
  9568. }
  9569. },
  9570. "autoload": {
  9571. "classmap": [
  9572. "src/"
  9573. ]
  9574. },
  9575. "notification-url": "https://packagist.org/downloads/",
  9576. "license": [
  9577. "BSD-3-Clause"
  9578. ],
  9579. "authors": [
  9580. {
  9581. "name": "Sebastian Bergmann",
  9582. "email": "sebastian@phpunit.de",
  9583. "role": "lead"
  9584. }
  9585. ],
  9586. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9587. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9588. "keywords": [
  9589. "coverage",
  9590. "testing",
  9591. "xunit"
  9592. ],
  9593. "support": {
  9594. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9595. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9596. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.7"
  9597. },
  9598. "funding": [
  9599. {
  9600. "url": "https://github.com/sebastianbergmann",
  9601. "type": "github"
  9602. }
  9603. ],
  9604. "time": "2024-10-09T06:21:38+00:00"
  9605. },
  9606. {
  9607. "name": "phpunit/php-file-iterator",
  9608. "version": "5.1.0",
  9609. "source": {
  9610. "type": "git",
  9611. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9612. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  9613. },
  9614. "dist": {
  9615. "type": "zip",
  9616. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  9617. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  9618. "shasum": ""
  9619. },
  9620. "require": {
  9621. "php": ">=8.2"
  9622. },
  9623. "require-dev": {
  9624. "phpunit/phpunit": "^11.0"
  9625. },
  9626. "type": "library",
  9627. "extra": {
  9628. "branch-alias": {
  9629. "dev-main": "5.0-dev"
  9630. }
  9631. },
  9632. "autoload": {
  9633. "classmap": [
  9634. "src/"
  9635. ]
  9636. },
  9637. "notification-url": "https://packagist.org/downloads/",
  9638. "license": [
  9639. "BSD-3-Clause"
  9640. ],
  9641. "authors": [
  9642. {
  9643. "name": "Sebastian Bergmann",
  9644. "email": "sebastian@phpunit.de",
  9645. "role": "lead"
  9646. }
  9647. ],
  9648. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9649. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9650. "keywords": [
  9651. "filesystem",
  9652. "iterator"
  9653. ],
  9654. "support": {
  9655. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9656. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9657. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  9658. },
  9659. "funding": [
  9660. {
  9661. "url": "https://github.com/sebastianbergmann",
  9662. "type": "github"
  9663. }
  9664. ],
  9665. "time": "2024-08-27T05:02:59+00:00"
  9666. },
  9667. {
  9668. "name": "phpunit/php-invoker",
  9669. "version": "5.0.1",
  9670. "source": {
  9671. "type": "git",
  9672. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9673. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  9674. },
  9675. "dist": {
  9676. "type": "zip",
  9677. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  9678. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  9679. "shasum": ""
  9680. },
  9681. "require": {
  9682. "php": ">=8.2"
  9683. },
  9684. "require-dev": {
  9685. "ext-pcntl": "*",
  9686. "phpunit/phpunit": "^11.0"
  9687. },
  9688. "suggest": {
  9689. "ext-pcntl": "*"
  9690. },
  9691. "type": "library",
  9692. "extra": {
  9693. "branch-alias": {
  9694. "dev-main": "5.0-dev"
  9695. }
  9696. },
  9697. "autoload": {
  9698. "classmap": [
  9699. "src/"
  9700. ]
  9701. },
  9702. "notification-url": "https://packagist.org/downloads/",
  9703. "license": [
  9704. "BSD-3-Clause"
  9705. ],
  9706. "authors": [
  9707. {
  9708. "name": "Sebastian Bergmann",
  9709. "email": "sebastian@phpunit.de",
  9710. "role": "lead"
  9711. }
  9712. ],
  9713. "description": "Invoke callables with a timeout",
  9714. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9715. "keywords": [
  9716. "process"
  9717. ],
  9718. "support": {
  9719. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9720. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  9721. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  9722. },
  9723. "funding": [
  9724. {
  9725. "url": "https://github.com/sebastianbergmann",
  9726. "type": "github"
  9727. }
  9728. ],
  9729. "time": "2024-07-03T05:07:44+00:00"
  9730. },
  9731. {
  9732. "name": "phpunit/php-text-template",
  9733. "version": "4.0.1",
  9734. "source": {
  9735. "type": "git",
  9736. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9737. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  9738. },
  9739. "dist": {
  9740. "type": "zip",
  9741. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  9742. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  9743. "shasum": ""
  9744. },
  9745. "require": {
  9746. "php": ">=8.2"
  9747. },
  9748. "require-dev": {
  9749. "phpunit/phpunit": "^11.0"
  9750. },
  9751. "type": "library",
  9752. "extra": {
  9753. "branch-alias": {
  9754. "dev-main": "4.0-dev"
  9755. }
  9756. },
  9757. "autoload": {
  9758. "classmap": [
  9759. "src/"
  9760. ]
  9761. },
  9762. "notification-url": "https://packagist.org/downloads/",
  9763. "license": [
  9764. "BSD-3-Clause"
  9765. ],
  9766. "authors": [
  9767. {
  9768. "name": "Sebastian Bergmann",
  9769. "email": "sebastian@phpunit.de",
  9770. "role": "lead"
  9771. }
  9772. ],
  9773. "description": "Simple template engine.",
  9774. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9775. "keywords": [
  9776. "template"
  9777. ],
  9778. "support": {
  9779. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9780. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9781. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  9782. },
  9783. "funding": [
  9784. {
  9785. "url": "https://github.com/sebastianbergmann",
  9786. "type": "github"
  9787. }
  9788. ],
  9789. "time": "2024-07-03T05:08:43+00:00"
  9790. },
  9791. {
  9792. "name": "phpunit/php-timer",
  9793. "version": "7.0.1",
  9794. "source": {
  9795. "type": "git",
  9796. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9797. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  9798. },
  9799. "dist": {
  9800. "type": "zip",
  9801. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  9802. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  9803. "shasum": ""
  9804. },
  9805. "require": {
  9806. "php": ">=8.2"
  9807. },
  9808. "require-dev": {
  9809. "phpunit/phpunit": "^11.0"
  9810. },
  9811. "type": "library",
  9812. "extra": {
  9813. "branch-alias": {
  9814. "dev-main": "7.0-dev"
  9815. }
  9816. },
  9817. "autoload": {
  9818. "classmap": [
  9819. "src/"
  9820. ]
  9821. },
  9822. "notification-url": "https://packagist.org/downloads/",
  9823. "license": [
  9824. "BSD-3-Clause"
  9825. ],
  9826. "authors": [
  9827. {
  9828. "name": "Sebastian Bergmann",
  9829. "email": "sebastian@phpunit.de",
  9830. "role": "lead"
  9831. }
  9832. ],
  9833. "description": "Utility class for timing",
  9834. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9835. "keywords": [
  9836. "timer"
  9837. ],
  9838. "support": {
  9839. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9840. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  9841. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  9842. },
  9843. "funding": [
  9844. {
  9845. "url": "https://github.com/sebastianbergmann",
  9846. "type": "github"
  9847. }
  9848. ],
  9849. "time": "2024-07-03T05:09:35+00:00"
  9850. },
  9851. {
  9852. "name": "phpunit/phpunit",
  9853. "version": "11.4.3",
  9854. "source": {
  9855. "type": "git",
  9856. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9857. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76"
  9858. },
  9859. "dist": {
  9860. "type": "zip",
  9861. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  9862. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  9863. "shasum": ""
  9864. },
  9865. "require": {
  9866. "ext-dom": "*",
  9867. "ext-json": "*",
  9868. "ext-libxml": "*",
  9869. "ext-mbstring": "*",
  9870. "ext-xml": "*",
  9871. "ext-xmlwriter": "*",
  9872. "myclabs/deep-copy": "^1.12.0",
  9873. "phar-io/manifest": "^2.0.4",
  9874. "phar-io/version": "^3.2.1",
  9875. "php": ">=8.2",
  9876. "phpunit/php-code-coverage": "^11.0.7",
  9877. "phpunit/php-file-iterator": "^5.1.0",
  9878. "phpunit/php-invoker": "^5.0.1",
  9879. "phpunit/php-text-template": "^4.0.1",
  9880. "phpunit/php-timer": "^7.0.1",
  9881. "sebastian/cli-parser": "^3.0.2",
  9882. "sebastian/code-unit": "^3.0.1",
  9883. "sebastian/comparator": "^6.1.1",
  9884. "sebastian/diff": "^6.0.2",
  9885. "sebastian/environment": "^7.2.0",
  9886. "sebastian/exporter": "^6.1.3",
  9887. "sebastian/global-state": "^7.0.2",
  9888. "sebastian/object-enumerator": "^6.0.1",
  9889. "sebastian/type": "^5.1.0",
  9890. "sebastian/version": "^5.0.2"
  9891. },
  9892. "suggest": {
  9893. "ext-soap": "To be able to generate mocks based on WSDL files"
  9894. },
  9895. "bin": [
  9896. "phpunit"
  9897. ],
  9898. "type": "library",
  9899. "extra": {
  9900. "branch-alias": {
  9901. "dev-main": "11.4-dev"
  9902. }
  9903. },
  9904. "autoload": {
  9905. "files": [
  9906. "src/Framework/Assert/Functions.php"
  9907. ],
  9908. "classmap": [
  9909. "src/"
  9910. ]
  9911. },
  9912. "notification-url": "https://packagist.org/downloads/",
  9913. "license": [
  9914. "BSD-3-Clause"
  9915. ],
  9916. "authors": [
  9917. {
  9918. "name": "Sebastian Bergmann",
  9919. "email": "sebastian@phpunit.de",
  9920. "role": "lead"
  9921. }
  9922. ],
  9923. "description": "The PHP Unit Testing framework.",
  9924. "homepage": "https://phpunit.de/",
  9925. "keywords": [
  9926. "phpunit",
  9927. "testing",
  9928. "xunit"
  9929. ],
  9930. "support": {
  9931. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9932. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9933. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.4.3"
  9934. },
  9935. "funding": [
  9936. {
  9937. "url": "https://phpunit.de/sponsors.html",
  9938. "type": "custom"
  9939. },
  9940. {
  9941. "url": "https://github.com/sebastianbergmann",
  9942. "type": "github"
  9943. },
  9944. {
  9945. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9946. "type": "tidelift"
  9947. }
  9948. ],
  9949. "time": "2024-10-28T13:07:50+00:00"
  9950. },
  9951. {
  9952. "name": "sebastian/cli-parser",
  9953. "version": "3.0.2",
  9954. "source": {
  9955. "type": "git",
  9956. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9957. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  9958. },
  9959. "dist": {
  9960. "type": "zip",
  9961. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  9962. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  9963. "shasum": ""
  9964. },
  9965. "require": {
  9966. "php": ">=8.2"
  9967. },
  9968. "require-dev": {
  9969. "phpunit/phpunit": "^11.0"
  9970. },
  9971. "type": "library",
  9972. "extra": {
  9973. "branch-alias": {
  9974. "dev-main": "3.0-dev"
  9975. }
  9976. },
  9977. "autoload": {
  9978. "classmap": [
  9979. "src/"
  9980. ]
  9981. },
  9982. "notification-url": "https://packagist.org/downloads/",
  9983. "license": [
  9984. "BSD-3-Clause"
  9985. ],
  9986. "authors": [
  9987. {
  9988. "name": "Sebastian Bergmann",
  9989. "email": "sebastian@phpunit.de",
  9990. "role": "lead"
  9991. }
  9992. ],
  9993. "description": "Library for parsing CLI options",
  9994. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9995. "support": {
  9996. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9997. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9998. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  9999. },
  10000. "funding": [
  10001. {
  10002. "url": "https://github.com/sebastianbergmann",
  10003. "type": "github"
  10004. }
  10005. ],
  10006. "time": "2024-07-03T04:41:36+00:00"
  10007. },
  10008. {
  10009. "name": "sebastian/code-unit",
  10010. "version": "3.0.1",
  10011. "source": {
  10012. "type": "git",
  10013. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10014. "reference": "6bb7d09d6623567178cf54126afa9c2310114268"
  10015. },
  10016. "dist": {
  10017. "type": "zip",
  10018. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6bb7d09d6623567178cf54126afa9c2310114268",
  10019. "reference": "6bb7d09d6623567178cf54126afa9c2310114268",
  10020. "shasum": ""
  10021. },
  10022. "require": {
  10023. "php": ">=8.2"
  10024. },
  10025. "require-dev": {
  10026. "phpunit/phpunit": "^11.0"
  10027. },
  10028. "type": "library",
  10029. "extra": {
  10030. "branch-alias": {
  10031. "dev-main": "3.0-dev"
  10032. }
  10033. },
  10034. "autoload": {
  10035. "classmap": [
  10036. "src/"
  10037. ]
  10038. },
  10039. "notification-url": "https://packagist.org/downloads/",
  10040. "license": [
  10041. "BSD-3-Clause"
  10042. ],
  10043. "authors": [
  10044. {
  10045. "name": "Sebastian Bergmann",
  10046. "email": "sebastian@phpunit.de",
  10047. "role": "lead"
  10048. }
  10049. ],
  10050. "description": "Collection of value objects that represent the PHP code units",
  10051. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10052. "support": {
  10053. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10054. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  10055. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.1"
  10056. },
  10057. "funding": [
  10058. {
  10059. "url": "https://github.com/sebastianbergmann",
  10060. "type": "github"
  10061. }
  10062. ],
  10063. "time": "2024-07-03T04:44:28+00:00"
  10064. },
  10065. {
  10066. "name": "sebastian/code-unit-reverse-lookup",
  10067. "version": "4.0.1",
  10068. "source": {
  10069. "type": "git",
  10070. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10071. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  10072. },
  10073. "dist": {
  10074. "type": "zip",
  10075. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  10076. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  10077. "shasum": ""
  10078. },
  10079. "require": {
  10080. "php": ">=8.2"
  10081. },
  10082. "require-dev": {
  10083. "phpunit/phpunit": "^11.0"
  10084. },
  10085. "type": "library",
  10086. "extra": {
  10087. "branch-alias": {
  10088. "dev-main": "4.0-dev"
  10089. }
  10090. },
  10091. "autoload": {
  10092. "classmap": [
  10093. "src/"
  10094. ]
  10095. },
  10096. "notification-url": "https://packagist.org/downloads/",
  10097. "license": [
  10098. "BSD-3-Clause"
  10099. ],
  10100. "authors": [
  10101. {
  10102. "name": "Sebastian Bergmann",
  10103. "email": "sebastian@phpunit.de"
  10104. }
  10105. ],
  10106. "description": "Looks up which function or method a line of code belongs to",
  10107. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10108. "support": {
  10109. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10110. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  10111. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  10112. },
  10113. "funding": [
  10114. {
  10115. "url": "https://github.com/sebastianbergmann",
  10116. "type": "github"
  10117. }
  10118. ],
  10119. "time": "2024-07-03T04:45:54+00:00"
  10120. },
  10121. {
  10122. "name": "sebastian/comparator",
  10123. "version": "6.2.1",
  10124. "source": {
  10125. "type": "git",
  10126. "url": "https://github.com/sebastianbergmann/comparator.git",
  10127. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739"
  10128. },
  10129. "dist": {
  10130. "type": "zip",
  10131. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/43d129d6a0f81c78bee378b46688293eb7ea3739",
  10132. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739",
  10133. "shasum": ""
  10134. },
  10135. "require": {
  10136. "ext-dom": "*",
  10137. "ext-mbstring": "*",
  10138. "php": ">=8.2",
  10139. "sebastian/diff": "^6.0",
  10140. "sebastian/exporter": "^6.0"
  10141. },
  10142. "require-dev": {
  10143. "phpunit/phpunit": "^11.4"
  10144. },
  10145. "type": "library",
  10146. "extra": {
  10147. "branch-alias": {
  10148. "dev-main": "6.2-dev"
  10149. }
  10150. },
  10151. "autoload": {
  10152. "classmap": [
  10153. "src/"
  10154. ]
  10155. },
  10156. "notification-url": "https://packagist.org/downloads/",
  10157. "license": [
  10158. "BSD-3-Clause"
  10159. ],
  10160. "authors": [
  10161. {
  10162. "name": "Sebastian Bergmann",
  10163. "email": "sebastian@phpunit.de"
  10164. },
  10165. {
  10166. "name": "Jeff Welch",
  10167. "email": "whatthejeff@gmail.com"
  10168. },
  10169. {
  10170. "name": "Volker Dusch",
  10171. "email": "github@wallbash.com"
  10172. },
  10173. {
  10174. "name": "Bernhard Schussek",
  10175. "email": "bschussek@2bepublished.at"
  10176. }
  10177. ],
  10178. "description": "Provides the functionality to compare PHP values for equality",
  10179. "homepage": "https://github.com/sebastianbergmann/comparator",
  10180. "keywords": [
  10181. "comparator",
  10182. "compare",
  10183. "equality"
  10184. ],
  10185. "support": {
  10186. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10187. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10188. "source": "https://github.com/sebastianbergmann/comparator/tree/6.2.1"
  10189. },
  10190. "funding": [
  10191. {
  10192. "url": "https://github.com/sebastianbergmann",
  10193. "type": "github"
  10194. }
  10195. ],
  10196. "time": "2024-10-31T05:30:08+00:00"
  10197. },
  10198. {
  10199. "name": "sebastian/complexity",
  10200. "version": "4.0.1",
  10201. "source": {
  10202. "type": "git",
  10203. "url": "https://github.com/sebastianbergmann/complexity.git",
  10204. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  10205. },
  10206. "dist": {
  10207. "type": "zip",
  10208. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  10209. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  10210. "shasum": ""
  10211. },
  10212. "require": {
  10213. "nikic/php-parser": "^5.0",
  10214. "php": ">=8.2"
  10215. },
  10216. "require-dev": {
  10217. "phpunit/phpunit": "^11.0"
  10218. },
  10219. "type": "library",
  10220. "extra": {
  10221. "branch-alias": {
  10222. "dev-main": "4.0-dev"
  10223. }
  10224. },
  10225. "autoload": {
  10226. "classmap": [
  10227. "src/"
  10228. ]
  10229. },
  10230. "notification-url": "https://packagist.org/downloads/",
  10231. "license": [
  10232. "BSD-3-Clause"
  10233. ],
  10234. "authors": [
  10235. {
  10236. "name": "Sebastian Bergmann",
  10237. "email": "sebastian@phpunit.de",
  10238. "role": "lead"
  10239. }
  10240. ],
  10241. "description": "Library for calculating the complexity of PHP code units",
  10242. "homepage": "https://github.com/sebastianbergmann/complexity",
  10243. "support": {
  10244. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10245. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10246. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  10247. },
  10248. "funding": [
  10249. {
  10250. "url": "https://github.com/sebastianbergmann",
  10251. "type": "github"
  10252. }
  10253. ],
  10254. "time": "2024-07-03T04:49:50+00:00"
  10255. },
  10256. {
  10257. "name": "sebastian/diff",
  10258. "version": "6.0.2",
  10259. "source": {
  10260. "type": "git",
  10261. "url": "https://github.com/sebastianbergmann/diff.git",
  10262. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  10263. },
  10264. "dist": {
  10265. "type": "zip",
  10266. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  10267. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  10268. "shasum": ""
  10269. },
  10270. "require": {
  10271. "php": ">=8.2"
  10272. },
  10273. "require-dev": {
  10274. "phpunit/phpunit": "^11.0",
  10275. "symfony/process": "^4.2 || ^5"
  10276. },
  10277. "type": "library",
  10278. "extra": {
  10279. "branch-alias": {
  10280. "dev-main": "6.0-dev"
  10281. }
  10282. },
  10283. "autoload": {
  10284. "classmap": [
  10285. "src/"
  10286. ]
  10287. },
  10288. "notification-url": "https://packagist.org/downloads/",
  10289. "license": [
  10290. "BSD-3-Clause"
  10291. ],
  10292. "authors": [
  10293. {
  10294. "name": "Sebastian Bergmann",
  10295. "email": "sebastian@phpunit.de"
  10296. },
  10297. {
  10298. "name": "Kore Nordmann",
  10299. "email": "mail@kore-nordmann.de"
  10300. }
  10301. ],
  10302. "description": "Diff implementation",
  10303. "homepage": "https://github.com/sebastianbergmann/diff",
  10304. "keywords": [
  10305. "diff",
  10306. "udiff",
  10307. "unidiff",
  10308. "unified diff"
  10309. ],
  10310. "support": {
  10311. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10312. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10313. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  10314. },
  10315. "funding": [
  10316. {
  10317. "url": "https://github.com/sebastianbergmann",
  10318. "type": "github"
  10319. }
  10320. ],
  10321. "time": "2024-07-03T04:53:05+00:00"
  10322. },
  10323. {
  10324. "name": "sebastian/environment",
  10325. "version": "7.2.0",
  10326. "source": {
  10327. "type": "git",
  10328. "url": "https://github.com/sebastianbergmann/environment.git",
  10329. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  10330. },
  10331. "dist": {
  10332. "type": "zip",
  10333. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  10334. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  10335. "shasum": ""
  10336. },
  10337. "require": {
  10338. "php": ">=8.2"
  10339. },
  10340. "require-dev": {
  10341. "phpunit/phpunit": "^11.0"
  10342. },
  10343. "suggest": {
  10344. "ext-posix": "*"
  10345. },
  10346. "type": "library",
  10347. "extra": {
  10348. "branch-alias": {
  10349. "dev-main": "7.2-dev"
  10350. }
  10351. },
  10352. "autoload": {
  10353. "classmap": [
  10354. "src/"
  10355. ]
  10356. },
  10357. "notification-url": "https://packagist.org/downloads/",
  10358. "license": [
  10359. "BSD-3-Clause"
  10360. ],
  10361. "authors": [
  10362. {
  10363. "name": "Sebastian Bergmann",
  10364. "email": "sebastian@phpunit.de"
  10365. }
  10366. ],
  10367. "description": "Provides functionality to handle HHVM/PHP environments",
  10368. "homepage": "https://github.com/sebastianbergmann/environment",
  10369. "keywords": [
  10370. "Xdebug",
  10371. "environment",
  10372. "hhvm"
  10373. ],
  10374. "support": {
  10375. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10376. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10377. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  10378. },
  10379. "funding": [
  10380. {
  10381. "url": "https://github.com/sebastianbergmann",
  10382. "type": "github"
  10383. }
  10384. ],
  10385. "time": "2024-07-03T04:54:44+00:00"
  10386. },
  10387. {
  10388. "name": "sebastian/exporter",
  10389. "version": "6.1.3",
  10390. "source": {
  10391. "type": "git",
  10392. "url": "https://github.com/sebastianbergmann/exporter.git",
  10393. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e"
  10394. },
  10395. "dist": {
  10396. "type": "zip",
  10397. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  10398. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  10399. "shasum": ""
  10400. },
  10401. "require": {
  10402. "ext-mbstring": "*",
  10403. "php": ">=8.2",
  10404. "sebastian/recursion-context": "^6.0"
  10405. },
  10406. "require-dev": {
  10407. "phpunit/phpunit": "^11.2"
  10408. },
  10409. "type": "library",
  10410. "extra": {
  10411. "branch-alias": {
  10412. "dev-main": "6.1-dev"
  10413. }
  10414. },
  10415. "autoload": {
  10416. "classmap": [
  10417. "src/"
  10418. ]
  10419. },
  10420. "notification-url": "https://packagist.org/downloads/",
  10421. "license": [
  10422. "BSD-3-Clause"
  10423. ],
  10424. "authors": [
  10425. {
  10426. "name": "Sebastian Bergmann",
  10427. "email": "sebastian@phpunit.de"
  10428. },
  10429. {
  10430. "name": "Jeff Welch",
  10431. "email": "whatthejeff@gmail.com"
  10432. },
  10433. {
  10434. "name": "Volker Dusch",
  10435. "email": "github@wallbash.com"
  10436. },
  10437. {
  10438. "name": "Adam Harvey",
  10439. "email": "aharvey@php.net"
  10440. },
  10441. {
  10442. "name": "Bernhard Schussek",
  10443. "email": "bschussek@gmail.com"
  10444. }
  10445. ],
  10446. "description": "Provides the functionality to export PHP variables for visualization",
  10447. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10448. "keywords": [
  10449. "export",
  10450. "exporter"
  10451. ],
  10452. "support": {
  10453. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10454. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10455. "source": "https://github.com/sebastianbergmann/exporter/tree/6.1.3"
  10456. },
  10457. "funding": [
  10458. {
  10459. "url": "https://github.com/sebastianbergmann",
  10460. "type": "github"
  10461. }
  10462. ],
  10463. "time": "2024-07-03T04:56:19+00:00"
  10464. },
  10465. {
  10466. "name": "sebastian/global-state",
  10467. "version": "7.0.2",
  10468. "source": {
  10469. "type": "git",
  10470. "url": "https://github.com/sebastianbergmann/global-state.git",
  10471. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  10472. },
  10473. "dist": {
  10474. "type": "zip",
  10475. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  10476. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  10477. "shasum": ""
  10478. },
  10479. "require": {
  10480. "php": ">=8.2",
  10481. "sebastian/object-reflector": "^4.0",
  10482. "sebastian/recursion-context": "^6.0"
  10483. },
  10484. "require-dev": {
  10485. "ext-dom": "*",
  10486. "phpunit/phpunit": "^11.0"
  10487. },
  10488. "type": "library",
  10489. "extra": {
  10490. "branch-alias": {
  10491. "dev-main": "7.0-dev"
  10492. }
  10493. },
  10494. "autoload": {
  10495. "classmap": [
  10496. "src/"
  10497. ]
  10498. },
  10499. "notification-url": "https://packagist.org/downloads/",
  10500. "license": [
  10501. "BSD-3-Clause"
  10502. ],
  10503. "authors": [
  10504. {
  10505. "name": "Sebastian Bergmann",
  10506. "email": "sebastian@phpunit.de"
  10507. }
  10508. ],
  10509. "description": "Snapshotting of global state",
  10510. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10511. "keywords": [
  10512. "global state"
  10513. ],
  10514. "support": {
  10515. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10516. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10517. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  10518. },
  10519. "funding": [
  10520. {
  10521. "url": "https://github.com/sebastianbergmann",
  10522. "type": "github"
  10523. }
  10524. ],
  10525. "time": "2024-07-03T04:57:36+00:00"
  10526. },
  10527. {
  10528. "name": "sebastian/lines-of-code",
  10529. "version": "3.0.1",
  10530. "source": {
  10531. "type": "git",
  10532. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10533. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  10534. },
  10535. "dist": {
  10536. "type": "zip",
  10537. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  10538. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  10539. "shasum": ""
  10540. },
  10541. "require": {
  10542. "nikic/php-parser": "^5.0",
  10543. "php": ">=8.2"
  10544. },
  10545. "require-dev": {
  10546. "phpunit/phpunit": "^11.0"
  10547. },
  10548. "type": "library",
  10549. "extra": {
  10550. "branch-alias": {
  10551. "dev-main": "3.0-dev"
  10552. }
  10553. },
  10554. "autoload": {
  10555. "classmap": [
  10556. "src/"
  10557. ]
  10558. },
  10559. "notification-url": "https://packagist.org/downloads/",
  10560. "license": [
  10561. "BSD-3-Clause"
  10562. ],
  10563. "authors": [
  10564. {
  10565. "name": "Sebastian Bergmann",
  10566. "email": "sebastian@phpunit.de",
  10567. "role": "lead"
  10568. }
  10569. ],
  10570. "description": "Library for counting the lines of code in PHP source code",
  10571. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10572. "support": {
  10573. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10574. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10575. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  10576. },
  10577. "funding": [
  10578. {
  10579. "url": "https://github.com/sebastianbergmann",
  10580. "type": "github"
  10581. }
  10582. ],
  10583. "time": "2024-07-03T04:58:38+00:00"
  10584. },
  10585. {
  10586. "name": "sebastian/object-enumerator",
  10587. "version": "6.0.1",
  10588. "source": {
  10589. "type": "git",
  10590. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10591. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  10592. },
  10593. "dist": {
  10594. "type": "zip",
  10595. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  10596. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  10597. "shasum": ""
  10598. },
  10599. "require": {
  10600. "php": ">=8.2",
  10601. "sebastian/object-reflector": "^4.0",
  10602. "sebastian/recursion-context": "^6.0"
  10603. },
  10604. "require-dev": {
  10605. "phpunit/phpunit": "^11.0"
  10606. },
  10607. "type": "library",
  10608. "extra": {
  10609. "branch-alias": {
  10610. "dev-main": "6.0-dev"
  10611. }
  10612. },
  10613. "autoload": {
  10614. "classmap": [
  10615. "src/"
  10616. ]
  10617. },
  10618. "notification-url": "https://packagist.org/downloads/",
  10619. "license": [
  10620. "BSD-3-Clause"
  10621. ],
  10622. "authors": [
  10623. {
  10624. "name": "Sebastian Bergmann",
  10625. "email": "sebastian@phpunit.de"
  10626. }
  10627. ],
  10628. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10629. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10630. "support": {
  10631. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10632. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  10633. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  10634. },
  10635. "funding": [
  10636. {
  10637. "url": "https://github.com/sebastianbergmann",
  10638. "type": "github"
  10639. }
  10640. ],
  10641. "time": "2024-07-03T05:00:13+00:00"
  10642. },
  10643. {
  10644. "name": "sebastian/object-reflector",
  10645. "version": "4.0.1",
  10646. "source": {
  10647. "type": "git",
  10648. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10649. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  10650. },
  10651. "dist": {
  10652. "type": "zip",
  10653. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  10654. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  10655. "shasum": ""
  10656. },
  10657. "require": {
  10658. "php": ">=8.2"
  10659. },
  10660. "require-dev": {
  10661. "phpunit/phpunit": "^11.0"
  10662. },
  10663. "type": "library",
  10664. "extra": {
  10665. "branch-alias": {
  10666. "dev-main": "4.0-dev"
  10667. }
  10668. },
  10669. "autoload": {
  10670. "classmap": [
  10671. "src/"
  10672. ]
  10673. },
  10674. "notification-url": "https://packagist.org/downloads/",
  10675. "license": [
  10676. "BSD-3-Clause"
  10677. ],
  10678. "authors": [
  10679. {
  10680. "name": "Sebastian Bergmann",
  10681. "email": "sebastian@phpunit.de"
  10682. }
  10683. ],
  10684. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10685. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10686. "support": {
  10687. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10688. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  10689. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  10690. },
  10691. "funding": [
  10692. {
  10693. "url": "https://github.com/sebastianbergmann",
  10694. "type": "github"
  10695. }
  10696. ],
  10697. "time": "2024-07-03T05:01:32+00:00"
  10698. },
  10699. {
  10700. "name": "sebastian/recursion-context",
  10701. "version": "6.0.2",
  10702. "source": {
  10703. "type": "git",
  10704. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10705. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  10706. },
  10707. "dist": {
  10708. "type": "zip",
  10709. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  10710. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  10711. "shasum": ""
  10712. },
  10713. "require": {
  10714. "php": ">=8.2"
  10715. },
  10716. "require-dev": {
  10717. "phpunit/phpunit": "^11.0"
  10718. },
  10719. "type": "library",
  10720. "extra": {
  10721. "branch-alias": {
  10722. "dev-main": "6.0-dev"
  10723. }
  10724. },
  10725. "autoload": {
  10726. "classmap": [
  10727. "src/"
  10728. ]
  10729. },
  10730. "notification-url": "https://packagist.org/downloads/",
  10731. "license": [
  10732. "BSD-3-Clause"
  10733. ],
  10734. "authors": [
  10735. {
  10736. "name": "Sebastian Bergmann",
  10737. "email": "sebastian@phpunit.de"
  10738. },
  10739. {
  10740. "name": "Jeff Welch",
  10741. "email": "whatthejeff@gmail.com"
  10742. },
  10743. {
  10744. "name": "Adam Harvey",
  10745. "email": "aharvey@php.net"
  10746. }
  10747. ],
  10748. "description": "Provides functionality to recursively process PHP variables",
  10749. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10750. "support": {
  10751. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10752. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  10753. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  10754. },
  10755. "funding": [
  10756. {
  10757. "url": "https://github.com/sebastianbergmann",
  10758. "type": "github"
  10759. }
  10760. ],
  10761. "time": "2024-07-03T05:10:34+00:00"
  10762. },
  10763. {
  10764. "name": "sebastian/type",
  10765. "version": "5.1.0",
  10766. "source": {
  10767. "type": "git",
  10768. "url": "https://github.com/sebastianbergmann/type.git",
  10769. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  10770. },
  10771. "dist": {
  10772. "type": "zip",
  10773. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  10774. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  10775. "shasum": ""
  10776. },
  10777. "require": {
  10778. "php": ">=8.2"
  10779. },
  10780. "require-dev": {
  10781. "phpunit/phpunit": "^11.3"
  10782. },
  10783. "type": "library",
  10784. "extra": {
  10785. "branch-alias": {
  10786. "dev-main": "5.1-dev"
  10787. }
  10788. },
  10789. "autoload": {
  10790. "classmap": [
  10791. "src/"
  10792. ]
  10793. },
  10794. "notification-url": "https://packagist.org/downloads/",
  10795. "license": [
  10796. "BSD-3-Clause"
  10797. ],
  10798. "authors": [
  10799. {
  10800. "name": "Sebastian Bergmann",
  10801. "email": "sebastian@phpunit.de",
  10802. "role": "lead"
  10803. }
  10804. ],
  10805. "description": "Collection of value objects that represent the types of the PHP type system",
  10806. "homepage": "https://github.com/sebastianbergmann/type",
  10807. "support": {
  10808. "issues": "https://github.com/sebastianbergmann/type/issues",
  10809. "security": "https://github.com/sebastianbergmann/type/security/policy",
  10810. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  10811. },
  10812. "funding": [
  10813. {
  10814. "url": "https://github.com/sebastianbergmann",
  10815. "type": "github"
  10816. }
  10817. ],
  10818. "time": "2024-09-17T13:12:04+00:00"
  10819. },
  10820. {
  10821. "name": "sebastian/version",
  10822. "version": "5.0.2",
  10823. "source": {
  10824. "type": "git",
  10825. "url": "https://github.com/sebastianbergmann/version.git",
  10826. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  10827. },
  10828. "dist": {
  10829. "type": "zip",
  10830. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  10831. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  10832. "shasum": ""
  10833. },
  10834. "require": {
  10835. "php": ">=8.2"
  10836. },
  10837. "type": "library",
  10838. "extra": {
  10839. "branch-alias": {
  10840. "dev-main": "5.0-dev"
  10841. }
  10842. },
  10843. "autoload": {
  10844. "classmap": [
  10845. "src/"
  10846. ]
  10847. },
  10848. "notification-url": "https://packagist.org/downloads/",
  10849. "license": [
  10850. "BSD-3-Clause"
  10851. ],
  10852. "authors": [
  10853. {
  10854. "name": "Sebastian Bergmann",
  10855. "email": "sebastian@phpunit.de",
  10856. "role": "lead"
  10857. }
  10858. ],
  10859. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10860. "homepage": "https://github.com/sebastianbergmann/version",
  10861. "support": {
  10862. "issues": "https://github.com/sebastianbergmann/version/issues",
  10863. "security": "https://github.com/sebastianbergmann/version/security/policy",
  10864. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  10865. },
  10866. "funding": [
  10867. {
  10868. "url": "https://github.com/sebastianbergmann",
  10869. "type": "github"
  10870. }
  10871. ],
  10872. "time": "2024-10-09T05:16:32+00:00"
  10873. },
  10874. {
  10875. "name": "theseer/tokenizer",
  10876. "version": "1.2.3",
  10877. "source": {
  10878. "type": "git",
  10879. "url": "https://github.com/theseer/tokenizer.git",
  10880. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10881. },
  10882. "dist": {
  10883. "type": "zip",
  10884. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10885. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10886. "shasum": ""
  10887. },
  10888. "require": {
  10889. "ext-dom": "*",
  10890. "ext-tokenizer": "*",
  10891. "ext-xmlwriter": "*",
  10892. "php": "^7.2 || ^8.0"
  10893. },
  10894. "type": "library",
  10895. "autoload": {
  10896. "classmap": [
  10897. "src/"
  10898. ]
  10899. },
  10900. "notification-url": "https://packagist.org/downloads/",
  10901. "license": [
  10902. "BSD-3-Clause"
  10903. ],
  10904. "authors": [
  10905. {
  10906. "name": "Arne Blankerts",
  10907. "email": "arne@blankerts.de",
  10908. "role": "Developer"
  10909. }
  10910. ],
  10911. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10912. "support": {
  10913. "issues": "https://github.com/theseer/tokenizer/issues",
  10914. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10915. },
  10916. "funding": [
  10917. {
  10918. "url": "https://github.com/theseer",
  10919. "type": "github"
  10920. }
  10921. ],
  10922. "time": "2024-03-03T12:36:25+00:00"
  10923. }
  10924. ],
  10925. "aliases": [],
  10926. "minimum-stability": "stable",
  10927. "stability-flags": {},
  10928. "prefer-stable": true,
  10929. "prefer-lowest": false,
  10930. "platform": {
  10931. "php": "^8.2"
  10932. },
  10933. "platform-dev": {},
  10934. "plugin-api-version": "2.6.0"
  10935. }