composer.lock 402 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238
  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": "0b94b47b777b531a2c91338a4b4b7ff1",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": "^5.5 || ^7.0 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  35. "squizlabs/php_codesniffer": "^3.6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  65. },
  66. "time": "2022-10-14T20:31:46+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/tea",
  70. "version": "3.2.1",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/tea-php.git",
  74. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  79. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.4",
  90. "ext-curl": "*",
  91. "ext-json": "*",
  92. "ext-libxml": "*",
  93. "ext-mbstring": "*",
  94. "ext-openssl": "*",
  95. "ext-simplexml": "*",
  96. "ext-xmlwriter": "*",
  97. "guzzlehttp/guzzle": "^6.3|^7.0",
  98. "php": ">=5.5"
  99. },
  100. "require-dev": {
  101. "phpunit/phpunit": "*",
  102. "symfony/dotenv": "^3.4",
  103. "symfony/var-dumper": "^3.4"
  104. },
  105. "suggest": {
  106. "ext-sockets": "To use client-side monitoring"
  107. },
  108. "type": "library",
  109. "autoload": {
  110. "psr-4": {
  111. "AlibabaCloud\\Tea\\": "src"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "Apache-2.0"
  117. ],
  118. "authors": [
  119. {
  120. "name": "Alibaba Cloud SDK",
  121. "email": "sdk-team@alibabacloud.com",
  122. "homepage": "http://www.alibabacloud.com"
  123. }
  124. ],
  125. "description": "Client of Tea for PHP",
  126. "homepage": "https://www.alibabacloud.com/",
  127. "keywords": [
  128. "alibabacloud",
  129. "client",
  130. "cloud",
  131. "tea"
  132. ],
  133. "support": {
  134. "issues": "https://github.com/aliyun/tea-php/issues",
  135. "source": "https://github.com/aliyun/tea-php"
  136. },
  137. "time": "2023-05-16T06:43:41+00:00"
  138. },
  139. {
  140. "name": "alibabacloud/tea-fileform",
  141. "version": "0.3.4",
  142. "source": {
  143. "type": "git",
  144. "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
  145. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181"
  146. },
  147. "dist": {
  148. "type": "zip",
  149. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  150. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  151. "shasum": "",
  152. "mirrors": [
  153. {
  154. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  155. "preferred": true
  156. }
  157. ]
  158. },
  159. "require": {
  160. "alibabacloud/tea": "^3.0",
  161. "php": ">5.5"
  162. },
  163. "require-dev": {
  164. "phpunit/phpunit": "^4.8.35|^5.4.3"
  165. },
  166. "type": "library",
  167. "autoload": {
  168. "psr-4": {
  169. "AlibabaCloud\\Tea\\FileForm\\": "src"
  170. }
  171. },
  172. "notification-url": "https://packagist.org/downloads/",
  173. "license": [
  174. "Apache-2.0"
  175. ],
  176. "authors": [
  177. {
  178. "name": "Alibaba Cloud SDK",
  179. "email": "sdk-team@alibabacloud.com"
  180. }
  181. ],
  182. "description": "Alibaba Cloud Tea File Library for PHP",
  183. "support": {
  184. "issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues",
  185. "source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4"
  186. },
  187. "time": "2020-12-01T07:24:35+00:00"
  188. },
  189. {
  190. "name": "alipaysdk/easysdk",
  191. "version": "2.2.3",
  192. "source": {
  193. "type": "git",
  194. "url": "https://github.com/alipay/alipay-easysdk.git",
  195. "reference": "c6008839a22a5fca08e9f8536730f7abfed522d5"
  196. },
  197. "dist": {
  198. "type": "zip",
  199. "url": "https://api.github.com/repos/alipay/alipay-easysdk/zipball/c6008839a22a5fca08e9f8536730f7abfed522d5",
  200. "reference": "c6008839a22a5fca08e9f8536730f7abfed522d5",
  201. "shasum": "",
  202. "mirrors": [
  203. {
  204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  205. "preferred": true
  206. }
  207. ]
  208. },
  209. "require": {
  210. "alibabacloud/tea": "^3.1",
  211. "alibabacloud/tea-fileform": "^0.3.2",
  212. "ext-ctype": "*",
  213. "ext-curl": "*",
  214. "ext-dom": "*",
  215. "ext-fileinfo": "*",
  216. "ext-json": "*",
  217. "ext-libxml": "*",
  218. "ext-mbstring": "*",
  219. "ext-openssl": "*",
  220. "ext-simplexml": "*",
  221. "ext-xmlwriter": "*",
  222. "guzzlehttp/guzzle": ">=6.3",
  223. "php": ">=7.0"
  224. },
  225. "require-dev": {
  226. "phpunit/phpunit": "^7.5"
  227. },
  228. "type": "library",
  229. "autoload": {
  230. "psr-4": {
  231. "Alipay\\EasySDK\\": "php/src/"
  232. }
  233. },
  234. "notification-url": "https://packagist.org/downloads/",
  235. "license": [
  236. "Apache-2.0"
  237. ],
  238. "authors": [
  239. {
  240. "name": "junying.wjy",
  241. "email": "junying.wjy@antfin.com"
  242. }
  243. ],
  244. "description": "支付宝官方 Alipay Easy SDK",
  245. "support": {
  246. "source": "https://github.com/alipay/alipay-easysdk/tree/v2.2.3"
  247. },
  248. "time": "2022-11-28T14:04:57+00:00"
  249. },
  250. {
  251. "name": "aws/aws-crt-php",
  252. "version": "v1.2.7",
  253. "source": {
  254. "type": "git",
  255. "url": "https://github.com/awslabs/aws-crt-php.git",
  256. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  257. },
  258. "dist": {
  259. "type": "zip",
  260. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  261. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  262. "shasum": ""
  263. },
  264. "require": {
  265. "php": ">=5.5"
  266. },
  267. "require-dev": {
  268. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  269. "yoast/phpunit-polyfills": "^1.0"
  270. },
  271. "suggest": {
  272. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  273. },
  274. "type": "library",
  275. "autoload": {
  276. "classmap": [
  277. "src/"
  278. ]
  279. },
  280. "notification-url": "https://packagist.org/downloads/",
  281. "license": [
  282. "Apache-2.0"
  283. ],
  284. "authors": [
  285. {
  286. "name": "AWS SDK Common Runtime Team",
  287. "email": "aws-sdk-common-runtime@amazon.com"
  288. }
  289. ],
  290. "description": "AWS Common Runtime for PHP",
  291. "homepage": "https://github.com/awslabs/aws-crt-php",
  292. "keywords": [
  293. "amazon",
  294. "aws",
  295. "crt",
  296. "sdk"
  297. ],
  298. "support": {
  299. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  300. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.7"
  301. },
  302. "time": "2024-10-18T22:15:13+00:00"
  303. },
  304. {
  305. "name": "aws/aws-sdk-php",
  306. "version": "3.333.0",
  307. "source": {
  308. "type": "git",
  309. "url": "https://github.com/aws/aws-sdk-php.git",
  310. "reference": "11bb2709885c9954004620d3648e9355feb92a41"
  311. },
  312. "dist": {
  313. "type": "zip",
  314. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/11bb2709885c9954004620d3648e9355feb92a41",
  315. "reference": "11bb2709885c9954004620d3648e9355feb92a41",
  316. "shasum": ""
  317. },
  318. "require": {
  319. "aws/aws-crt-php": "^1.2.3",
  320. "ext-json": "*",
  321. "ext-pcre": "*",
  322. "ext-simplexml": "*",
  323. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  324. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  325. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  326. "mtdowling/jmespath.php": "^2.6",
  327. "php": ">=7.2.5",
  328. "psr/http-message": "^1.0 || ^2.0"
  329. },
  330. "require-dev": {
  331. "andrewsville/php-token-reflection": "^1.4",
  332. "aws/aws-php-sns-message-validator": "~1.0",
  333. "behat/behat": "~3.0",
  334. "composer/composer": "^1.10.22",
  335. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  336. "doctrine/cache": "~1.4",
  337. "ext-dom": "*",
  338. "ext-openssl": "*",
  339. "ext-pcntl": "*",
  340. "ext-sockets": "*",
  341. "nette/neon": "^2.3",
  342. "paragonie/random_compat": ">= 2",
  343. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  344. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  345. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
  346. "sebastian/comparator": "^1.2.3 || ^4.0",
  347. "yoast/phpunit-polyfills": "^1.0"
  348. },
  349. "suggest": {
  350. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  351. "doctrine/cache": "To use the DoctrineCacheAdapter",
  352. "ext-curl": "To send requests using cURL",
  353. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  354. "ext-sockets": "To use client-side monitoring"
  355. },
  356. "type": "library",
  357. "extra": {
  358. "branch-alias": {
  359. "dev-master": "3.0-dev"
  360. }
  361. },
  362. "autoload": {
  363. "files": [
  364. "src/functions.php"
  365. ],
  366. "psr-4": {
  367. "Aws\\": "src/"
  368. },
  369. "exclude-from-classmap": [
  370. "src/data/"
  371. ]
  372. },
  373. "notification-url": "https://packagist.org/downloads/",
  374. "license": [
  375. "Apache-2.0"
  376. ],
  377. "authors": [
  378. {
  379. "name": "Amazon Web Services",
  380. "homepage": "http://aws.amazon.com"
  381. }
  382. ],
  383. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  384. "homepage": "http://aws.amazon.com/sdkforphp",
  385. "keywords": [
  386. "amazon",
  387. "aws",
  388. "cloud",
  389. "dynamodb",
  390. "ec2",
  391. "glacier",
  392. "s3",
  393. "sdk"
  394. ],
  395. "support": {
  396. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  397. "issues": "https://github.com/aws/aws-sdk-php/issues",
  398. "source": "https://github.com/aws/aws-sdk-php/tree/3.333.0"
  399. },
  400. "time": "2024-12-03T19:06:47+00:00"
  401. },
  402. {
  403. "name": "bacon/bacon-qr-code",
  404. "version": "2.0.8",
  405. "source": {
  406. "type": "git",
  407. "url": "https://github.com/Bacon/BaconQrCode.git",
  408. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  409. },
  410. "dist": {
  411. "type": "zip",
  412. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  413. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  414. "shasum": ""
  415. },
  416. "require": {
  417. "dasprid/enum": "^1.0.3",
  418. "ext-iconv": "*",
  419. "php": "^7.1 || ^8.0"
  420. },
  421. "require-dev": {
  422. "phly/keep-a-changelog": "^2.1",
  423. "phpunit/phpunit": "^7 | ^8 | ^9",
  424. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  425. "squizlabs/php_codesniffer": "^3.4"
  426. },
  427. "suggest": {
  428. "ext-imagick": "to generate QR code images"
  429. },
  430. "type": "library",
  431. "autoload": {
  432. "psr-4": {
  433. "BaconQrCode\\": "src/"
  434. }
  435. },
  436. "notification-url": "https://packagist.org/downloads/",
  437. "license": [
  438. "BSD-2-Clause"
  439. ],
  440. "authors": [
  441. {
  442. "name": "Ben Scholzen 'DASPRiD'",
  443. "email": "mail@dasprids.de",
  444. "homepage": "https://dasprids.de/",
  445. "role": "Developer"
  446. }
  447. ],
  448. "description": "BaconQrCode is a QR code generator for PHP.",
  449. "homepage": "https://github.com/Bacon/BaconQrCode",
  450. "support": {
  451. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  452. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  453. },
  454. "time": "2022-12-07T17:46:57+00:00"
  455. },
  456. {
  457. "name": "brick/math",
  458. "version": "0.12.1",
  459. "source": {
  460. "type": "git",
  461. "url": "https://github.com/brick/math.git",
  462. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  463. },
  464. "dist": {
  465. "type": "zip",
  466. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  467. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  468. "shasum": ""
  469. },
  470. "require": {
  471. "php": "^8.1"
  472. },
  473. "require-dev": {
  474. "php-coveralls/php-coveralls": "^2.2",
  475. "phpunit/phpunit": "^10.1",
  476. "vimeo/psalm": "5.16.0"
  477. },
  478. "type": "library",
  479. "autoload": {
  480. "psr-4": {
  481. "Brick\\Math\\": "src/"
  482. }
  483. },
  484. "notification-url": "https://packagist.org/downloads/",
  485. "license": [
  486. "MIT"
  487. ],
  488. "description": "Arbitrary-precision arithmetic library",
  489. "keywords": [
  490. "Arbitrary-precision",
  491. "BigInteger",
  492. "BigRational",
  493. "arithmetic",
  494. "bigdecimal",
  495. "bignum",
  496. "bignumber",
  497. "brick",
  498. "decimal",
  499. "integer",
  500. "math",
  501. "mathematics",
  502. "rational"
  503. ],
  504. "support": {
  505. "issues": "https://github.com/brick/math/issues",
  506. "source": "https://github.com/brick/math/tree/0.12.1"
  507. },
  508. "funding": [
  509. {
  510. "url": "https://github.com/BenMorel",
  511. "type": "github"
  512. }
  513. ],
  514. "time": "2023-11-29T23:19:16+00:00"
  515. },
  516. {
  517. "name": "carbonphp/carbon-doctrine-types",
  518. "version": "3.2.0",
  519. "source": {
  520. "type": "git",
  521. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  522. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  523. },
  524. "dist": {
  525. "type": "zip",
  526. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  527. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  528. "shasum": ""
  529. },
  530. "require": {
  531. "php": "^8.1"
  532. },
  533. "conflict": {
  534. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  535. },
  536. "require-dev": {
  537. "doctrine/dbal": "^4.0.0",
  538. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  539. "phpunit/phpunit": "^10.3"
  540. },
  541. "type": "library",
  542. "autoload": {
  543. "psr-4": {
  544. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  545. }
  546. },
  547. "notification-url": "https://packagist.org/downloads/",
  548. "license": [
  549. "MIT"
  550. ],
  551. "authors": [
  552. {
  553. "name": "KyleKatarn",
  554. "email": "kylekatarnls@gmail.com"
  555. }
  556. ],
  557. "description": "Types to use Carbon in Doctrine",
  558. "keywords": [
  559. "carbon",
  560. "date",
  561. "datetime",
  562. "doctrine",
  563. "time"
  564. ],
  565. "support": {
  566. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  567. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  568. },
  569. "funding": [
  570. {
  571. "url": "https://github.com/kylekatarnls",
  572. "type": "github"
  573. },
  574. {
  575. "url": "https://opencollective.com/Carbon",
  576. "type": "open_collective"
  577. },
  578. {
  579. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  580. "type": "tidelift"
  581. }
  582. ],
  583. "time": "2024-02-09T16:56:22+00:00"
  584. },
  585. {
  586. "name": "dasprid/enum",
  587. "version": "1.0.6",
  588. "source": {
  589. "type": "git",
  590. "url": "https://github.com/DASPRiD/Enum.git",
  591. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90"
  592. },
  593. "dist": {
  594. "type": "zip",
  595. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  596. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  597. "shasum": ""
  598. },
  599. "require": {
  600. "php": ">=7.1 <9.0"
  601. },
  602. "require-dev": {
  603. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  604. "squizlabs/php_codesniffer": "*"
  605. },
  606. "type": "library",
  607. "autoload": {
  608. "psr-4": {
  609. "DASPRiD\\Enum\\": "src/"
  610. }
  611. },
  612. "notification-url": "https://packagist.org/downloads/",
  613. "license": [
  614. "BSD-2-Clause"
  615. ],
  616. "authors": [
  617. {
  618. "name": "Ben Scholzen 'DASPRiD'",
  619. "email": "mail@dasprids.de",
  620. "homepage": "https://dasprids.de/",
  621. "role": "Developer"
  622. }
  623. ],
  624. "description": "PHP 7.1 enum implementation",
  625. "keywords": [
  626. "enum",
  627. "map"
  628. ],
  629. "support": {
  630. "issues": "https://github.com/DASPRiD/Enum/issues",
  631. "source": "https://github.com/DASPRiD/Enum/tree/1.0.6"
  632. },
  633. "time": "2024-08-09T14:30:48+00:00"
  634. },
  635. {
  636. "name": "dflydev/dot-access-data",
  637. "version": "v3.0.3",
  638. "source": {
  639. "type": "git",
  640. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  641. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  642. },
  643. "dist": {
  644. "type": "zip",
  645. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  646. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  647. "shasum": ""
  648. },
  649. "require": {
  650. "php": "^7.1 || ^8.0"
  651. },
  652. "require-dev": {
  653. "phpstan/phpstan": "^0.12.42",
  654. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  655. "scrutinizer/ocular": "1.6.0",
  656. "squizlabs/php_codesniffer": "^3.5",
  657. "vimeo/psalm": "^4.0.0"
  658. },
  659. "type": "library",
  660. "extra": {
  661. "branch-alias": {
  662. "dev-main": "3.x-dev"
  663. }
  664. },
  665. "autoload": {
  666. "psr-4": {
  667. "Dflydev\\DotAccessData\\": "src/"
  668. }
  669. },
  670. "notification-url": "https://packagist.org/downloads/",
  671. "license": [
  672. "MIT"
  673. ],
  674. "authors": [
  675. {
  676. "name": "Dragonfly Development Inc.",
  677. "email": "info@dflydev.com",
  678. "homepage": "http://dflydev.com"
  679. },
  680. {
  681. "name": "Beau Simensen",
  682. "email": "beau@dflydev.com",
  683. "homepage": "http://beausimensen.com"
  684. },
  685. {
  686. "name": "Carlos Frutos",
  687. "email": "carlos@kiwing.it",
  688. "homepage": "https://github.com/cfrutos"
  689. },
  690. {
  691. "name": "Colin O'Dell",
  692. "email": "colinodell@gmail.com",
  693. "homepage": "https://www.colinodell.com"
  694. }
  695. ],
  696. "description": "Given a deep data structure, access data by dot notation.",
  697. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  698. "keywords": [
  699. "access",
  700. "data",
  701. "dot",
  702. "notation"
  703. ],
  704. "support": {
  705. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  706. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  707. },
  708. "time": "2024-07-08T12:26:09+00:00"
  709. },
  710. {
  711. "name": "doctrine/inflector",
  712. "version": "2.0.10",
  713. "source": {
  714. "type": "git",
  715. "url": "https://github.com/doctrine/inflector.git",
  716. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  717. },
  718. "dist": {
  719. "type": "zip",
  720. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  721. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  722. "shasum": ""
  723. },
  724. "require": {
  725. "php": "^7.2 || ^8.0"
  726. },
  727. "require-dev": {
  728. "doctrine/coding-standard": "^11.0",
  729. "phpstan/phpstan": "^1.8",
  730. "phpstan/phpstan-phpunit": "^1.1",
  731. "phpstan/phpstan-strict-rules": "^1.3",
  732. "phpunit/phpunit": "^8.5 || ^9.5",
  733. "vimeo/psalm": "^4.25 || ^5.4"
  734. },
  735. "type": "library",
  736. "autoload": {
  737. "psr-4": {
  738. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  739. }
  740. },
  741. "notification-url": "https://packagist.org/downloads/",
  742. "license": [
  743. "MIT"
  744. ],
  745. "authors": [
  746. {
  747. "name": "Guilherme Blanco",
  748. "email": "guilhermeblanco@gmail.com"
  749. },
  750. {
  751. "name": "Roman Borschel",
  752. "email": "roman@code-factory.org"
  753. },
  754. {
  755. "name": "Benjamin Eberlei",
  756. "email": "kontakt@beberlei.de"
  757. },
  758. {
  759. "name": "Jonathan Wage",
  760. "email": "jonwage@gmail.com"
  761. },
  762. {
  763. "name": "Johannes Schmitt",
  764. "email": "schmittjoh@gmail.com"
  765. }
  766. ],
  767. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  768. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  769. "keywords": [
  770. "inflection",
  771. "inflector",
  772. "lowercase",
  773. "manipulation",
  774. "php",
  775. "plural",
  776. "singular",
  777. "strings",
  778. "uppercase",
  779. "words"
  780. ],
  781. "support": {
  782. "issues": "https://github.com/doctrine/inflector/issues",
  783. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  784. },
  785. "funding": [
  786. {
  787. "url": "https://www.doctrine-project.org/sponsorship.html",
  788. "type": "custom"
  789. },
  790. {
  791. "url": "https://www.patreon.com/phpdoctrine",
  792. "type": "patreon"
  793. },
  794. {
  795. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  796. "type": "tidelift"
  797. }
  798. ],
  799. "time": "2024-02-18T20:23:39+00:00"
  800. },
  801. {
  802. "name": "doctrine/lexer",
  803. "version": "3.0.1",
  804. "source": {
  805. "type": "git",
  806. "url": "https://github.com/doctrine/lexer.git",
  807. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  808. },
  809. "dist": {
  810. "type": "zip",
  811. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  812. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  813. "shasum": ""
  814. },
  815. "require": {
  816. "php": "^8.1"
  817. },
  818. "require-dev": {
  819. "doctrine/coding-standard": "^12",
  820. "phpstan/phpstan": "^1.10",
  821. "phpunit/phpunit": "^10.5",
  822. "psalm/plugin-phpunit": "^0.18.3",
  823. "vimeo/psalm": "^5.21"
  824. },
  825. "type": "library",
  826. "autoload": {
  827. "psr-4": {
  828. "Doctrine\\Common\\Lexer\\": "src"
  829. }
  830. },
  831. "notification-url": "https://packagist.org/downloads/",
  832. "license": [
  833. "MIT"
  834. ],
  835. "authors": [
  836. {
  837. "name": "Guilherme Blanco",
  838. "email": "guilhermeblanco@gmail.com"
  839. },
  840. {
  841. "name": "Roman Borschel",
  842. "email": "roman@code-factory.org"
  843. },
  844. {
  845. "name": "Johannes Schmitt",
  846. "email": "schmittjoh@gmail.com"
  847. }
  848. ],
  849. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  850. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  851. "keywords": [
  852. "annotations",
  853. "docblock",
  854. "lexer",
  855. "parser",
  856. "php"
  857. ],
  858. "support": {
  859. "issues": "https://github.com/doctrine/lexer/issues",
  860. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  861. },
  862. "funding": [
  863. {
  864. "url": "https://www.doctrine-project.org/sponsorship.html",
  865. "type": "custom"
  866. },
  867. {
  868. "url": "https://www.patreon.com/phpdoctrine",
  869. "type": "patreon"
  870. },
  871. {
  872. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  873. "type": "tidelift"
  874. }
  875. ],
  876. "time": "2024-02-05T11:56:58+00:00"
  877. },
  878. {
  879. "name": "dragonmantank/cron-expression",
  880. "version": "v3.4.0",
  881. "source": {
  882. "type": "git",
  883. "url": "https://github.com/dragonmantank/cron-expression.git",
  884. "reference": "8c784d071debd117328803d86b2097615b457500"
  885. },
  886. "dist": {
  887. "type": "zip",
  888. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  889. "reference": "8c784d071debd117328803d86b2097615b457500",
  890. "shasum": ""
  891. },
  892. "require": {
  893. "php": "^7.2|^8.0",
  894. "webmozart/assert": "^1.0"
  895. },
  896. "replace": {
  897. "mtdowling/cron-expression": "^1.0"
  898. },
  899. "require-dev": {
  900. "phpstan/extension-installer": "^1.0",
  901. "phpstan/phpstan": "^1.0",
  902. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  903. },
  904. "type": "library",
  905. "extra": {
  906. "branch-alias": {
  907. "dev-master": "3.x-dev"
  908. }
  909. },
  910. "autoload": {
  911. "psr-4": {
  912. "Cron\\": "src/Cron/"
  913. }
  914. },
  915. "notification-url": "https://packagist.org/downloads/",
  916. "license": [
  917. "MIT"
  918. ],
  919. "authors": [
  920. {
  921. "name": "Chris Tankersley",
  922. "email": "chris@ctankersley.com",
  923. "homepage": "https://github.com/dragonmantank"
  924. }
  925. ],
  926. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  927. "keywords": [
  928. "cron",
  929. "schedule"
  930. ],
  931. "support": {
  932. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  933. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  934. },
  935. "funding": [
  936. {
  937. "url": "https://github.com/dragonmantank",
  938. "type": "github"
  939. }
  940. ],
  941. "time": "2024-10-09T13:47:03+00:00"
  942. },
  943. {
  944. "name": "egulias/email-validator",
  945. "version": "4.0.2",
  946. "source": {
  947. "type": "git",
  948. "url": "https://github.com/egulias/EmailValidator.git",
  949. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  950. },
  951. "dist": {
  952. "type": "zip",
  953. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  954. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  955. "shasum": ""
  956. },
  957. "require": {
  958. "doctrine/lexer": "^2.0 || ^3.0",
  959. "php": ">=8.1",
  960. "symfony/polyfill-intl-idn": "^1.26"
  961. },
  962. "require-dev": {
  963. "phpunit/phpunit": "^10.2",
  964. "vimeo/psalm": "^5.12"
  965. },
  966. "suggest": {
  967. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  968. },
  969. "type": "library",
  970. "extra": {
  971. "branch-alias": {
  972. "dev-master": "4.0.x-dev"
  973. }
  974. },
  975. "autoload": {
  976. "psr-4": {
  977. "Egulias\\EmailValidator\\": "src"
  978. }
  979. },
  980. "notification-url": "https://packagist.org/downloads/",
  981. "license": [
  982. "MIT"
  983. ],
  984. "authors": [
  985. {
  986. "name": "Eduardo Gulias Davis"
  987. }
  988. ],
  989. "description": "A library for validating emails against several RFCs",
  990. "homepage": "https://github.com/egulias/EmailValidator",
  991. "keywords": [
  992. "email",
  993. "emailvalidation",
  994. "emailvalidator",
  995. "validation",
  996. "validator"
  997. ],
  998. "support": {
  999. "issues": "https://github.com/egulias/EmailValidator/issues",
  1000. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1001. },
  1002. "funding": [
  1003. {
  1004. "url": "https://github.com/egulias",
  1005. "type": "github"
  1006. }
  1007. ],
  1008. "time": "2023-10-06T06:47:41+00:00"
  1009. },
  1010. {
  1011. "name": "erusev/parsedown",
  1012. "version": "1.7.4",
  1013. "source": {
  1014. "type": "git",
  1015. "url": "https://github.com/erusev/parsedown.git",
  1016. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  1017. },
  1018. "dist": {
  1019. "type": "zip",
  1020. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  1021. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  1022. "shasum": ""
  1023. },
  1024. "require": {
  1025. "ext-mbstring": "*",
  1026. "php": ">=5.3.0"
  1027. },
  1028. "require-dev": {
  1029. "phpunit/phpunit": "^4.8.35"
  1030. },
  1031. "type": "library",
  1032. "autoload": {
  1033. "psr-0": {
  1034. "Parsedown": ""
  1035. }
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Emanuil Rusev",
  1044. "email": "hello@erusev.com",
  1045. "homepage": "http://erusev.com"
  1046. }
  1047. ],
  1048. "description": "Parser for Markdown.",
  1049. "homepage": "http://parsedown.org",
  1050. "keywords": [
  1051. "markdown",
  1052. "parser"
  1053. ],
  1054. "support": {
  1055. "issues": "https://github.com/erusev/parsedown/issues",
  1056. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  1057. },
  1058. "time": "2019-12-30T22:54:17+00:00"
  1059. },
  1060. {
  1061. "name": "fakerphp/faker",
  1062. "version": "v1.24.1",
  1063. "source": {
  1064. "type": "git",
  1065. "url": "https://github.com/FakerPHP/Faker.git",
  1066. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  1067. },
  1068. "dist": {
  1069. "type": "zip",
  1070. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  1071. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  1072. "shasum": ""
  1073. },
  1074. "require": {
  1075. "php": "^7.4 || ^8.0",
  1076. "psr/container": "^1.0 || ^2.0",
  1077. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1078. },
  1079. "conflict": {
  1080. "fzaninotto/faker": "*"
  1081. },
  1082. "require-dev": {
  1083. "bamarni/composer-bin-plugin": "^1.4.1",
  1084. "doctrine/persistence": "^1.3 || ^2.0",
  1085. "ext-intl": "*",
  1086. "phpunit/phpunit": "^9.5.26",
  1087. "symfony/phpunit-bridge": "^5.4.16"
  1088. },
  1089. "suggest": {
  1090. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  1091. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  1092. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  1093. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  1094. "ext-mbstring": "Required for multibyte Unicode string functionality."
  1095. },
  1096. "type": "library",
  1097. "autoload": {
  1098. "psr-4": {
  1099. "Faker\\": "src/Faker/"
  1100. }
  1101. },
  1102. "notification-url": "https://packagist.org/downloads/",
  1103. "license": [
  1104. "MIT"
  1105. ],
  1106. "authors": [
  1107. {
  1108. "name": "François Zaninotto"
  1109. }
  1110. ],
  1111. "description": "Faker is a PHP library that generates fake data for you.",
  1112. "keywords": [
  1113. "data",
  1114. "faker",
  1115. "fixtures"
  1116. ],
  1117. "support": {
  1118. "issues": "https://github.com/FakerPHP/Faker/issues",
  1119. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  1120. },
  1121. "time": "2024-11-21T13:46:39+00:00"
  1122. },
  1123. {
  1124. "name": "filp/whoops",
  1125. "version": "2.16.0",
  1126. "source": {
  1127. "type": "git",
  1128. "url": "https://github.com/filp/whoops.git",
  1129. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  1130. },
  1131. "dist": {
  1132. "type": "zip",
  1133. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  1134. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  1135. "shasum": ""
  1136. },
  1137. "require": {
  1138. "php": "^7.1 || ^8.0",
  1139. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1140. },
  1141. "require-dev": {
  1142. "mockery/mockery": "^1.0",
  1143. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  1144. "symfony/var-dumper": "^4.0 || ^5.0"
  1145. },
  1146. "suggest": {
  1147. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  1148. "whoops/soap": "Formats errors as SOAP responses"
  1149. },
  1150. "type": "library",
  1151. "extra": {
  1152. "branch-alias": {
  1153. "dev-master": "2.7-dev"
  1154. }
  1155. },
  1156. "autoload": {
  1157. "psr-4": {
  1158. "Whoops\\": "src/Whoops/"
  1159. }
  1160. },
  1161. "notification-url": "https://packagist.org/downloads/",
  1162. "license": [
  1163. "MIT"
  1164. ],
  1165. "authors": [
  1166. {
  1167. "name": "Filipe Dobreira",
  1168. "homepage": "https://github.com/filp",
  1169. "role": "Developer"
  1170. }
  1171. ],
  1172. "description": "php error handling for cool kids",
  1173. "homepage": "https://filp.github.io/whoops/",
  1174. "keywords": [
  1175. "error",
  1176. "exception",
  1177. "handling",
  1178. "library",
  1179. "throwable",
  1180. "whoops"
  1181. ],
  1182. "support": {
  1183. "issues": "https://github.com/filp/whoops/issues",
  1184. "source": "https://github.com/filp/whoops/tree/2.16.0"
  1185. },
  1186. "funding": [
  1187. {
  1188. "url": "https://github.com/denis-sokolov",
  1189. "type": "github"
  1190. }
  1191. ],
  1192. "time": "2024-09-25T12:00:00+00:00"
  1193. },
  1194. {
  1195. "name": "fruitcake/php-cors",
  1196. "version": "v1.3.0",
  1197. "source": {
  1198. "type": "git",
  1199. "url": "https://github.com/fruitcake/php-cors.git",
  1200. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  1201. },
  1202. "dist": {
  1203. "type": "zip",
  1204. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  1205. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  1206. "shasum": ""
  1207. },
  1208. "require": {
  1209. "php": "^7.4|^8.0",
  1210. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  1211. },
  1212. "require-dev": {
  1213. "phpstan/phpstan": "^1.4",
  1214. "phpunit/phpunit": "^9",
  1215. "squizlabs/php_codesniffer": "^3.5"
  1216. },
  1217. "type": "library",
  1218. "extra": {
  1219. "branch-alias": {
  1220. "dev-master": "1.2-dev"
  1221. }
  1222. },
  1223. "autoload": {
  1224. "psr-4": {
  1225. "Fruitcake\\Cors\\": "src/"
  1226. }
  1227. },
  1228. "notification-url": "https://packagist.org/downloads/",
  1229. "license": [
  1230. "MIT"
  1231. ],
  1232. "authors": [
  1233. {
  1234. "name": "Fruitcake",
  1235. "homepage": "https://fruitcake.nl"
  1236. },
  1237. {
  1238. "name": "Barryvdh",
  1239. "email": "barryvdh@gmail.com"
  1240. }
  1241. ],
  1242. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1243. "homepage": "https://github.com/fruitcake/php-cors",
  1244. "keywords": [
  1245. "cors",
  1246. "laravel",
  1247. "symfony"
  1248. ],
  1249. "support": {
  1250. "issues": "https://github.com/fruitcake/php-cors/issues",
  1251. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  1252. },
  1253. "funding": [
  1254. {
  1255. "url": "https://fruitcake.nl",
  1256. "type": "custom"
  1257. },
  1258. {
  1259. "url": "https://github.com/barryvdh",
  1260. "type": "github"
  1261. }
  1262. ],
  1263. "time": "2023-10-12T05:21:21+00:00"
  1264. },
  1265. {
  1266. "name": "graham-campbell/result-type",
  1267. "version": "v1.1.3",
  1268. "source": {
  1269. "type": "git",
  1270. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1271. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  1272. },
  1273. "dist": {
  1274. "type": "zip",
  1275. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  1276. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  1277. "shasum": ""
  1278. },
  1279. "require": {
  1280. "php": "^7.2.5 || ^8.0",
  1281. "phpoption/phpoption": "^1.9.3"
  1282. },
  1283. "require-dev": {
  1284. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  1285. },
  1286. "type": "library",
  1287. "autoload": {
  1288. "psr-4": {
  1289. "GrahamCampbell\\ResultType\\": "src/"
  1290. }
  1291. },
  1292. "notification-url": "https://packagist.org/downloads/",
  1293. "license": [
  1294. "MIT"
  1295. ],
  1296. "authors": [
  1297. {
  1298. "name": "Graham Campbell",
  1299. "email": "hello@gjcampbell.co.uk",
  1300. "homepage": "https://github.com/GrahamCampbell"
  1301. }
  1302. ],
  1303. "description": "An Implementation Of The Result Type",
  1304. "keywords": [
  1305. "Graham Campbell",
  1306. "GrahamCampbell",
  1307. "Result Type",
  1308. "Result-Type",
  1309. "result"
  1310. ],
  1311. "support": {
  1312. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1313. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  1314. },
  1315. "funding": [
  1316. {
  1317. "url": "https://github.com/GrahamCampbell",
  1318. "type": "github"
  1319. },
  1320. {
  1321. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1322. "type": "tidelift"
  1323. }
  1324. ],
  1325. "time": "2024-07-20T21:45:45+00:00"
  1326. },
  1327. {
  1328. "name": "guzzlehttp/guzzle",
  1329. "version": "7.9.2",
  1330. "source": {
  1331. "type": "git",
  1332. "url": "https://github.com/guzzle/guzzle.git",
  1333. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1334. },
  1335. "dist": {
  1336. "type": "zip",
  1337. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1338. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1339. "shasum": ""
  1340. },
  1341. "require": {
  1342. "ext-json": "*",
  1343. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1344. "guzzlehttp/psr7": "^2.7.0",
  1345. "php": "^7.2.5 || ^8.0",
  1346. "psr/http-client": "^1.0",
  1347. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1348. },
  1349. "provide": {
  1350. "psr/http-client-implementation": "1.0"
  1351. },
  1352. "require-dev": {
  1353. "bamarni/composer-bin-plugin": "^1.8.2",
  1354. "ext-curl": "*",
  1355. "guzzle/client-integration-tests": "3.0.2",
  1356. "php-http/message-factory": "^1.1",
  1357. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1358. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1359. },
  1360. "suggest": {
  1361. "ext-curl": "Required for CURL handler support",
  1362. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1363. "psr/log": "Required for using the Log middleware"
  1364. },
  1365. "type": "library",
  1366. "extra": {
  1367. "bamarni-bin": {
  1368. "bin-links": true,
  1369. "forward-command": false
  1370. }
  1371. },
  1372. "autoload": {
  1373. "files": [
  1374. "src/functions_include.php"
  1375. ],
  1376. "psr-4": {
  1377. "GuzzleHttp\\": "src/"
  1378. }
  1379. },
  1380. "notification-url": "https://packagist.org/downloads/",
  1381. "license": [
  1382. "MIT"
  1383. ],
  1384. "authors": [
  1385. {
  1386. "name": "Graham Campbell",
  1387. "email": "hello@gjcampbell.co.uk",
  1388. "homepage": "https://github.com/GrahamCampbell"
  1389. },
  1390. {
  1391. "name": "Michael Dowling",
  1392. "email": "mtdowling@gmail.com",
  1393. "homepage": "https://github.com/mtdowling"
  1394. },
  1395. {
  1396. "name": "Jeremy Lindblom",
  1397. "email": "jeremeamia@gmail.com",
  1398. "homepage": "https://github.com/jeremeamia"
  1399. },
  1400. {
  1401. "name": "George Mponos",
  1402. "email": "gmponos@gmail.com",
  1403. "homepage": "https://github.com/gmponos"
  1404. },
  1405. {
  1406. "name": "Tobias Nyholm",
  1407. "email": "tobias.nyholm@gmail.com",
  1408. "homepage": "https://github.com/Nyholm"
  1409. },
  1410. {
  1411. "name": "Márk Sági-Kazár",
  1412. "email": "mark.sagikazar@gmail.com",
  1413. "homepage": "https://github.com/sagikazarmark"
  1414. },
  1415. {
  1416. "name": "Tobias Schultze",
  1417. "email": "webmaster@tubo-world.de",
  1418. "homepage": "https://github.com/Tobion"
  1419. }
  1420. ],
  1421. "description": "Guzzle is a PHP HTTP client library",
  1422. "keywords": [
  1423. "client",
  1424. "curl",
  1425. "framework",
  1426. "http",
  1427. "http client",
  1428. "psr-18",
  1429. "psr-7",
  1430. "rest",
  1431. "web service"
  1432. ],
  1433. "support": {
  1434. "issues": "https://github.com/guzzle/guzzle/issues",
  1435. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1436. },
  1437. "funding": [
  1438. {
  1439. "url": "https://github.com/GrahamCampbell",
  1440. "type": "github"
  1441. },
  1442. {
  1443. "url": "https://github.com/Nyholm",
  1444. "type": "github"
  1445. },
  1446. {
  1447. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1448. "type": "tidelift"
  1449. }
  1450. ],
  1451. "time": "2024-07-24T11:22:20+00:00"
  1452. },
  1453. {
  1454. "name": "guzzlehttp/promises",
  1455. "version": "2.0.4",
  1456. "source": {
  1457. "type": "git",
  1458. "url": "https://github.com/guzzle/promises.git",
  1459. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  1460. },
  1461. "dist": {
  1462. "type": "zip",
  1463. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1464. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1465. "shasum": ""
  1466. },
  1467. "require": {
  1468. "php": "^7.2.5 || ^8.0"
  1469. },
  1470. "require-dev": {
  1471. "bamarni/composer-bin-plugin": "^1.8.2",
  1472. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1473. },
  1474. "type": "library",
  1475. "extra": {
  1476. "bamarni-bin": {
  1477. "bin-links": true,
  1478. "forward-command": false
  1479. }
  1480. },
  1481. "autoload": {
  1482. "psr-4": {
  1483. "GuzzleHttp\\Promise\\": "src/"
  1484. }
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "authors": [
  1491. {
  1492. "name": "Graham Campbell",
  1493. "email": "hello@gjcampbell.co.uk",
  1494. "homepage": "https://github.com/GrahamCampbell"
  1495. },
  1496. {
  1497. "name": "Michael Dowling",
  1498. "email": "mtdowling@gmail.com",
  1499. "homepage": "https://github.com/mtdowling"
  1500. },
  1501. {
  1502. "name": "Tobias Nyholm",
  1503. "email": "tobias.nyholm@gmail.com",
  1504. "homepage": "https://github.com/Nyholm"
  1505. },
  1506. {
  1507. "name": "Tobias Schultze",
  1508. "email": "webmaster@tubo-world.de",
  1509. "homepage": "https://github.com/Tobion"
  1510. }
  1511. ],
  1512. "description": "Guzzle promises library",
  1513. "keywords": [
  1514. "promise"
  1515. ],
  1516. "support": {
  1517. "issues": "https://github.com/guzzle/promises/issues",
  1518. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  1519. },
  1520. "funding": [
  1521. {
  1522. "url": "https://github.com/GrahamCampbell",
  1523. "type": "github"
  1524. },
  1525. {
  1526. "url": "https://github.com/Nyholm",
  1527. "type": "github"
  1528. },
  1529. {
  1530. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1531. "type": "tidelift"
  1532. }
  1533. ],
  1534. "time": "2024-10-17T10:06:22+00:00"
  1535. },
  1536. {
  1537. "name": "guzzlehttp/psr7",
  1538. "version": "2.7.0",
  1539. "source": {
  1540. "type": "git",
  1541. "url": "https://github.com/guzzle/psr7.git",
  1542. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1543. },
  1544. "dist": {
  1545. "type": "zip",
  1546. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1547. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1548. "shasum": ""
  1549. },
  1550. "require": {
  1551. "php": "^7.2.5 || ^8.0",
  1552. "psr/http-factory": "^1.0",
  1553. "psr/http-message": "^1.1 || ^2.0",
  1554. "ralouphie/getallheaders": "^3.0"
  1555. },
  1556. "provide": {
  1557. "psr/http-factory-implementation": "1.0",
  1558. "psr/http-message-implementation": "1.0"
  1559. },
  1560. "require-dev": {
  1561. "bamarni/composer-bin-plugin": "^1.8.2",
  1562. "http-interop/http-factory-tests": "0.9.0",
  1563. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1564. },
  1565. "suggest": {
  1566. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1567. },
  1568. "type": "library",
  1569. "extra": {
  1570. "bamarni-bin": {
  1571. "bin-links": true,
  1572. "forward-command": false
  1573. }
  1574. },
  1575. "autoload": {
  1576. "psr-4": {
  1577. "GuzzleHttp\\Psr7\\": "src/"
  1578. }
  1579. },
  1580. "notification-url": "https://packagist.org/downloads/",
  1581. "license": [
  1582. "MIT"
  1583. ],
  1584. "authors": [
  1585. {
  1586. "name": "Graham Campbell",
  1587. "email": "hello@gjcampbell.co.uk",
  1588. "homepage": "https://github.com/GrahamCampbell"
  1589. },
  1590. {
  1591. "name": "Michael Dowling",
  1592. "email": "mtdowling@gmail.com",
  1593. "homepage": "https://github.com/mtdowling"
  1594. },
  1595. {
  1596. "name": "George Mponos",
  1597. "email": "gmponos@gmail.com",
  1598. "homepage": "https://github.com/gmponos"
  1599. },
  1600. {
  1601. "name": "Tobias Nyholm",
  1602. "email": "tobias.nyholm@gmail.com",
  1603. "homepage": "https://github.com/Nyholm"
  1604. },
  1605. {
  1606. "name": "Márk Sági-Kazár",
  1607. "email": "mark.sagikazar@gmail.com",
  1608. "homepage": "https://github.com/sagikazarmark"
  1609. },
  1610. {
  1611. "name": "Tobias Schultze",
  1612. "email": "webmaster@tubo-world.de",
  1613. "homepage": "https://github.com/Tobion"
  1614. },
  1615. {
  1616. "name": "Márk Sági-Kazár",
  1617. "email": "mark.sagikazar@gmail.com",
  1618. "homepage": "https://sagikazarmark.hu"
  1619. }
  1620. ],
  1621. "description": "PSR-7 message implementation that also provides common utility methods",
  1622. "keywords": [
  1623. "http",
  1624. "message",
  1625. "psr-7",
  1626. "request",
  1627. "response",
  1628. "stream",
  1629. "uri",
  1630. "url"
  1631. ],
  1632. "support": {
  1633. "issues": "https://github.com/guzzle/psr7/issues",
  1634. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1635. },
  1636. "funding": [
  1637. {
  1638. "url": "https://github.com/GrahamCampbell",
  1639. "type": "github"
  1640. },
  1641. {
  1642. "url": "https://github.com/Nyholm",
  1643. "type": "github"
  1644. },
  1645. {
  1646. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1647. "type": "tidelift"
  1648. }
  1649. ],
  1650. "time": "2024-07-18T11:15:46+00:00"
  1651. },
  1652. {
  1653. "name": "guzzlehttp/uri-template",
  1654. "version": "v1.0.3",
  1655. "source": {
  1656. "type": "git",
  1657. "url": "https://github.com/guzzle/uri-template.git",
  1658. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1659. },
  1660. "dist": {
  1661. "type": "zip",
  1662. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1663. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1664. "shasum": ""
  1665. },
  1666. "require": {
  1667. "php": "^7.2.5 || ^8.0",
  1668. "symfony/polyfill-php80": "^1.24"
  1669. },
  1670. "require-dev": {
  1671. "bamarni/composer-bin-plugin": "^1.8.2",
  1672. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1673. "uri-template/tests": "1.0.0"
  1674. },
  1675. "type": "library",
  1676. "extra": {
  1677. "bamarni-bin": {
  1678. "bin-links": true,
  1679. "forward-command": false
  1680. }
  1681. },
  1682. "autoload": {
  1683. "psr-4": {
  1684. "GuzzleHttp\\UriTemplate\\": "src"
  1685. }
  1686. },
  1687. "notification-url": "https://packagist.org/downloads/",
  1688. "license": [
  1689. "MIT"
  1690. ],
  1691. "authors": [
  1692. {
  1693. "name": "Graham Campbell",
  1694. "email": "hello@gjcampbell.co.uk",
  1695. "homepage": "https://github.com/GrahamCampbell"
  1696. },
  1697. {
  1698. "name": "Michael Dowling",
  1699. "email": "mtdowling@gmail.com",
  1700. "homepage": "https://github.com/mtdowling"
  1701. },
  1702. {
  1703. "name": "George Mponos",
  1704. "email": "gmponos@gmail.com",
  1705. "homepage": "https://github.com/gmponos"
  1706. },
  1707. {
  1708. "name": "Tobias Nyholm",
  1709. "email": "tobias.nyholm@gmail.com",
  1710. "homepage": "https://github.com/Nyholm"
  1711. }
  1712. ],
  1713. "description": "A polyfill class for uri_template of PHP",
  1714. "keywords": [
  1715. "guzzlehttp",
  1716. "uri-template"
  1717. ],
  1718. "support": {
  1719. "issues": "https://github.com/guzzle/uri-template/issues",
  1720. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  1721. },
  1722. "funding": [
  1723. {
  1724. "url": "https://github.com/GrahamCampbell",
  1725. "type": "github"
  1726. },
  1727. {
  1728. "url": "https://github.com/Nyholm",
  1729. "type": "github"
  1730. },
  1731. {
  1732. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1733. "type": "tidelift"
  1734. }
  1735. ],
  1736. "time": "2023-12-03T19:50:20+00:00"
  1737. },
  1738. {
  1739. "name": "huifurepo/dg-php-sdk",
  1740. "version": "2.0.14",
  1741. "source": {
  1742. "type": "git",
  1743. "url": "https://github.com/huifurepo/bspay-php-sdk.git",
  1744. "reference": "b64924cbd9dfd7490164eff926bf651e48f8ae2c"
  1745. },
  1746. "dist": {
  1747. "type": "zip",
  1748. "url": "https://api.github.com/repos/huifurepo/bspay-php-sdk/zipball/b64924cbd9dfd7490164eff926bf651e48f8ae2c",
  1749. "reference": "b64924cbd9dfd7490164eff926bf651e48f8ae2c",
  1750. "shasum": ""
  1751. },
  1752. "type": "library",
  1753. "notification-url": "https://packagist.org/downloads/",
  1754. "license": [
  1755. "MIT"
  1756. ],
  1757. "description": "汇付天下斗拱SDK-PHP版",
  1758. "support": {
  1759. "issues": "https://github.com/huifurepo/bspay-php-sdk/issues",
  1760. "source": "https://github.com/huifurepo/bspay-php-sdk/tree/2.0.14"
  1761. },
  1762. "time": "2024-11-07T10:27:56+00:00"
  1763. },
  1764. {
  1765. "name": "iconify/json",
  1766. "version": "2.2.276",
  1767. "source": {
  1768. "type": "git",
  1769. "url": "https://github.com/iconify/icon-sets.git",
  1770. "reference": "aea1e648b6d28c7f95c3afb0eaf1338cffb0d980"
  1771. },
  1772. "dist": {
  1773. "type": "zip",
  1774. "url": "https://api.github.com/repos/iconify/icon-sets/zipball/aea1e648b6d28c7f95c3afb0eaf1338cffb0d980",
  1775. "reference": "aea1e648b6d28c7f95c3afb0eaf1338cffb0d980",
  1776. "shasum": ""
  1777. },
  1778. "type": "library",
  1779. "autoload": {
  1780. "psr-4": {
  1781. "Iconify\\IconsJSON\\": "lib"
  1782. }
  1783. },
  1784. "notification-url": "https://packagist.org/downloads/",
  1785. "license": [
  1786. "MIT"
  1787. ],
  1788. "description": "Iconify icons collection in JSON format",
  1789. "homepage": "https://iconify.design/icon-sets/",
  1790. "support": {
  1791. "issues": "https://github.com/iconify/icon-sets/issues",
  1792. "source": "https://github.com/iconify/icon-sets/tree/2.2.276"
  1793. },
  1794. "time": "2024-11-25T06:57:03+00:00"
  1795. },
  1796. {
  1797. "name": "iwzh/owl-scheduling",
  1798. "version": "1.0.2",
  1799. "source": {
  1800. "type": "git",
  1801. "url": "https://gitee.com/wzhec/owl-scheduling",
  1802. "reference": "61478147d286fddb2e0634c4d11acda862db851d"
  1803. },
  1804. "require": {
  1805. "php": ">=8.0",
  1806. "slowlyo/owl-admin": "*"
  1807. },
  1808. "type": "library",
  1809. "extra": {
  1810. "owl-admin": "Iwzh\\owlScheduling\\OwlSchedulingServiceProvider",
  1811. "laravel": {
  1812. "providers": [
  1813. "Iwzh\\owlScheduling\\OwlSchedulingServiceProvider"
  1814. ]
  1815. }
  1816. },
  1817. "autoload": {
  1818. "psr-4": {
  1819. "Iwzh\\owlScheduling\\": "src/"
  1820. }
  1821. },
  1822. "notification-url": "https://packagist.org/downloads/",
  1823. "license": [
  1824. "MIT"
  1825. ],
  1826. "authors": [
  1827. {
  1828. "name": "wzh",
  1829. "email": "wzhec@foxmail.com"
  1830. }
  1831. ],
  1832. "description": "OwlAdmin扩展:方便管理 laravel 的定时任务",
  1833. "homepage": "https://gitee.com/wzhec/owl-scheduling",
  1834. "keywords": [
  1835. "extension",
  1836. "owl-admin"
  1837. ],
  1838. "time": "2023-05-12T02:57:41+00:00"
  1839. },
  1840. {
  1841. "name": "knuckleswtf/scribe",
  1842. "version": "4.38.0",
  1843. "source": {
  1844. "type": "git",
  1845. "url": "https://github.com/knuckleswtf/scribe.git",
  1846. "reference": "da667aafb6804b4b599ac6506bb178bfa5434802"
  1847. },
  1848. "dist": {
  1849. "type": "zip",
  1850. "url": "https://api.github.com/repos/knuckleswtf/scribe/zipball/da667aafb6804b4b599ac6506bb178bfa5434802",
  1851. "reference": "da667aafb6804b4b599ac6506bb178bfa5434802",
  1852. "shasum": ""
  1853. },
  1854. "require": {
  1855. "erusev/parsedown": "1.7.4",
  1856. "ext-fileinfo": "*",
  1857. "ext-json": "*",
  1858. "ext-pdo": "*",
  1859. "fakerphp/faker": "^1.9.1",
  1860. "illuminate/console": "^8.0|^9.0|^10.0|^11.0",
  1861. "illuminate/routing": "^8.0|^9.0|^10.0|^11.0",
  1862. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1863. "league/flysystem": "^1.1.4|^2.1.1|^3.0",
  1864. "mpociot/reflection-docblock": "^1.0.1",
  1865. "nikic/php-parser": "^5.0",
  1866. "nunomaduro/collision": "^5.10|^6.0|^7.0|^8.0",
  1867. "php": ">=8.0",
  1868. "ramsey/uuid": "^4.2.2",
  1869. "shalvah/clara": "^3.1.0",
  1870. "shalvah/upgrader": ">=0.6.0",
  1871. "spatie/data-transfer-object": "^2.6|^3.0",
  1872. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  1873. "symfony/yaml": "^5.4|^6.0|^7.0"
  1874. },
  1875. "replace": {
  1876. "mpociot/laravel-apidoc-generator": "*"
  1877. },
  1878. "require-dev": {
  1879. "brianium/paratest": "^6.0",
  1880. "dms/phpunit-arraysubset-asserts": "^0.4",
  1881. "laravel/legacy-factories": "^1.3.0",
  1882. "laravel/lumen-framework": "^8.0|^9.0|^10.0",
  1883. "league/fractal": "^0.20",
  1884. "nikic/fast-route": "^1.3",
  1885. "orchestra/testbench": "^6.0|^7.0|^8.0",
  1886. "pestphp/pest": "^1.21",
  1887. "phpstan/phpstan": "^1.0",
  1888. "phpunit/phpunit": "^9.0|^10.0",
  1889. "symfony/css-selector": "^5.4|^6.0",
  1890. "symfony/dom-crawler": "^5.4|^6.0"
  1891. },
  1892. "type": "library",
  1893. "extra": {
  1894. "laravel": {
  1895. "providers": [
  1896. "Knuckles\\Scribe\\ScribeServiceProvider"
  1897. ]
  1898. }
  1899. },
  1900. "autoload": {
  1901. "psr-4": {
  1902. "Knuckles\\Camel\\": "camel/",
  1903. "Knuckles\\Scribe\\": "src/"
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "MIT"
  1909. ],
  1910. "authors": [
  1911. {
  1912. "name": "Shalvah"
  1913. }
  1914. ],
  1915. "description": "Generate API documentation for humans from your Laravel codebase.✍",
  1916. "homepage": "http://github.com/knuckleswtf/scribe",
  1917. "keywords": [
  1918. "api",
  1919. "dingo",
  1920. "documentation",
  1921. "laravel"
  1922. ],
  1923. "support": {
  1924. "issues": "https://github.com/knuckleswtf/scribe/issues",
  1925. "source": "https://github.com/knuckleswtf/scribe/tree/4.38.0"
  1926. },
  1927. "funding": [
  1928. {
  1929. "url": "https://patreon.com/shalvah",
  1930. "type": "patreon"
  1931. }
  1932. ],
  1933. "time": "2024-10-18T20:16:40+00:00"
  1934. },
  1935. {
  1936. "name": "laravel/framework",
  1937. "version": "v11.30.0",
  1938. "source": {
  1939. "type": "git",
  1940. "url": "https://github.com/laravel/framework.git",
  1941. "reference": "dff716442d9c229d716be82ccc9a7de52eb97193"
  1942. },
  1943. "dist": {
  1944. "type": "zip",
  1945. "url": "https://api.github.com/repos/laravel/framework/zipball/dff716442d9c229d716be82ccc9a7de52eb97193",
  1946. "reference": "dff716442d9c229d716be82ccc9a7de52eb97193",
  1947. "shasum": ""
  1948. },
  1949. "require": {
  1950. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  1951. "composer-runtime-api": "^2.2",
  1952. "doctrine/inflector": "^2.0.5",
  1953. "dragonmantank/cron-expression": "^3.3.2",
  1954. "egulias/email-validator": "^3.2.1|^4.0",
  1955. "ext-ctype": "*",
  1956. "ext-filter": "*",
  1957. "ext-hash": "*",
  1958. "ext-mbstring": "*",
  1959. "ext-openssl": "*",
  1960. "ext-session": "*",
  1961. "ext-tokenizer": "*",
  1962. "fruitcake/php-cors": "^1.3",
  1963. "guzzlehttp/guzzle": "^7.8",
  1964. "guzzlehttp/uri-template": "^1.0",
  1965. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  1966. "laravel/serializable-closure": "^1.3",
  1967. "league/commonmark": "^2.2.1",
  1968. "league/flysystem": "^3.8.0",
  1969. "monolog/monolog": "^3.0",
  1970. "nesbot/carbon": "^2.72.2|^3.0",
  1971. "nunomaduro/termwind": "^2.0",
  1972. "php": "^8.2",
  1973. "psr/container": "^1.1.1|^2.0.1",
  1974. "psr/log": "^1.0|^2.0|^3.0",
  1975. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1976. "ramsey/uuid": "^4.7",
  1977. "symfony/console": "^7.0",
  1978. "symfony/error-handler": "^7.0",
  1979. "symfony/finder": "^7.0",
  1980. "symfony/http-foundation": "^7.0",
  1981. "symfony/http-kernel": "^7.0",
  1982. "symfony/mailer": "^7.0",
  1983. "symfony/mime": "^7.0",
  1984. "symfony/polyfill-php83": "^1.28",
  1985. "symfony/process": "^7.0",
  1986. "symfony/routing": "^7.0",
  1987. "symfony/uid": "^7.0",
  1988. "symfony/var-dumper": "^7.0",
  1989. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1990. "vlucas/phpdotenv": "^5.4.1",
  1991. "voku/portable-ascii": "^2.0"
  1992. },
  1993. "conflict": {
  1994. "mockery/mockery": "1.6.8",
  1995. "tightenco/collect": "<5.5.33"
  1996. },
  1997. "provide": {
  1998. "psr/container-implementation": "1.1|2.0",
  1999. "psr/log-implementation": "1.0|2.0|3.0",
  2000. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2001. },
  2002. "replace": {
  2003. "illuminate/auth": "self.version",
  2004. "illuminate/broadcasting": "self.version",
  2005. "illuminate/bus": "self.version",
  2006. "illuminate/cache": "self.version",
  2007. "illuminate/collections": "self.version",
  2008. "illuminate/concurrency": "self.version",
  2009. "illuminate/conditionable": "self.version",
  2010. "illuminate/config": "self.version",
  2011. "illuminate/console": "self.version",
  2012. "illuminate/container": "self.version",
  2013. "illuminate/contracts": "self.version",
  2014. "illuminate/cookie": "self.version",
  2015. "illuminate/database": "self.version",
  2016. "illuminate/encryption": "self.version",
  2017. "illuminate/events": "self.version",
  2018. "illuminate/filesystem": "self.version",
  2019. "illuminate/hashing": "self.version",
  2020. "illuminate/http": "self.version",
  2021. "illuminate/log": "self.version",
  2022. "illuminate/macroable": "self.version",
  2023. "illuminate/mail": "self.version",
  2024. "illuminate/notifications": "self.version",
  2025. "illuminate/pagination": "self.version",
  2026. "illuminate/pipeline": "self.version",
  2027. "illuminate/process": "self.version",
  2028. "illuminate/queue": "self.version",
  2029. "illuminate/redis": "self.version",
  2030. "illuminate/routing": "self.version",
  2031. "illuminate/session": "self.version",
  2032. "illuminate/support": "self.version",
  2033. "illuminate/testing": "self.version",
  2034. "illuminate/translation": "self.version",
  2035. "illuminate/validation": "self.version",
  2036. "illuminate/view": "self.version",
  2037. "spatie/once": "*"
  2038. },
  2039. "require-dev": {
  2040. "ably/ably-php": "^1.0",
  2041. "aws/aws-sdk-php": "^3.235.5",
  2042. "ext-gmp": "*",
  2043. "fakerphp/faker": "^1.23",
  2044. "league/flysystem-aws-s3-v3": "^3.0",
  2045. "league/flysystem-ftp": "^3.0",
  2046. "league/flysystem-path-prefixing": "^3.3",
  2047. "league/flysystem-read-only": "^3.3",
  2048. "league/flysystem-sftp-v3": "^3.0",
  2049. "mockery/mockery": "^1.6",
  2050. "nyholm/psr7": "^1.2",
  2051. "orchestra/testbench-core": "^9.5",
  2052. "pda/pheanstalk": "^5.0",
  2053. "phpstan/phpstan": "^1.11.5",
  2054. "phpunit/phpunit": "^10.5|^11.0",
  2055. "predis/predis": "^2.0.2",
  2056. "resend/resend-php": "^0.10.0",
  2057. "symfony/cache": "^7.0",
  2058. "symfony/http-client": "^7.0",
  2059. "symfony/psr-http-message-bridge": "^7.0"
  2060. },
  2061. "suggest": {
  2062. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2063. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2064. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  2065. "ext-apcu": "Required to use the APC cache driver.",
  2066. "ext-fileinfo": "Required to use the Filesystem class.",
  2067. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2068. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2069. "ext-memcached": "Required to use the memcache cache driver.",
  2070. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2071. "ext-pdo": "Required to use all database features.",
  2072. "ext-posix": "Required to use all features of the queue worker.",
  2073. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  2074. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2075. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2076. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2077. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2078. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2079. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2080. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2081. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2082. "mockery/mockery": "Required to use mocking (^1.6).",
  2083. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2084. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  2085. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  2086. "predis/predis": "Required to use the predis connector (^2.0.2).",
  2087. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2088. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2089. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  2090. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  2091. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  2092. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  2093. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  2094. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  2095. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  2096. },
  2097. "type": "library",
  2098. "extra": {
  2099. "branch-alias": {
  2100. "dev-master": "11.x-dev"
  2101. }
  2102. },
  2103. "autoload": {
  2104. "files": [
  2105. "src/Illuminate/Collections/helpers.php",
  2106. "src/Illuminate/Events/functions.php",
  2107. "src/Illuminate/Filesystem/functions.php",
  2108. "src/Illuminate/Foundation/helpers.php",
  2109. "src/Illuminate/Log/functions.php",
  2110. "src/Illuminate/Support/functions.php",
  2111. "src/Illuminate/Support/helpers.php"
  2112. ],
  2113. "psr-4": {
  2114. "Illuminate\\": "src/Illuminate/",
  2115. "Illuminate\\Support\\": [
  2116. "src/Illuminate/Macroable/",
  2117. "src/Illuminate/Collections/",
  2118. "src/Illuminate/Conditionable/"
  2119. ]
  2120. }
  2121. },
  2122. "notification-url": "https://packagist.org/downloads/",
  2123. "license": [
  2124. "MIT"
  2125. ],
  2126. "authors": [
  2127. {
  2128. "name": "Taylor Otwell",
  2129. "email": "taylor@laravel.com"
  2130. }
  2131. ],
  2132. "description": "The Laravel Framework.",
  2133. "homepage": "https://laravel.com",
  2134. "keywords": [
  2135. "framework",
  2136. "laravel"
  2137. ],
  2138. "support": {
  2139. "issues": "https://github.com/laravel/framework/issues",
  2140. "source": "https://github.com/laravel/framework"
  2141. },
  2142. "time": "2024-10-30T15:00:34+00:00"
  2143. },
  2144. {
  2145. "name": "laravel/prompts",
  2146. "version": "v0.3.2",
  2147. "source": {
  2148. "type": "git",
  2149. "url": "https://github.com/laravel/prompts.git",
  2150. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f"
  2151. },
  2152. "dist": {
  2153. "type": "zip",
  2154. "url": "https://api.github.com/repos/laravel/prompts/zipball/0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  2155. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  2156. "shasum": ""
  2157. },
  2158. "require": {
  2159. "composer-runtime-api": "^2.2",
  2160. "ext-mbstring": "*",
  2161. "php": "^8.1",
  2162. "symfony/console": "^6.2|^7.0"
  2163. },
  2164. "conflict": {
  2165. "illuminate/console": ">=10.17.0 <10.25.0",
  2166. "laravel/framework": ">=10.17.0 <10.25.0"
  2167. },
  2168. "require-dev": {
  2169. "illuminate/collections": "^10.0|^11.0",
  2170. "mockery/mockery": "^1.5",
  2171. "pestphp/pest": "^2.3|^3.4",
  2172. "phpstan/phpstan": "^1.11",
  2173. "phpstan/phpstan-mockery": "^1.1"
  2174. },
  2175. "suggest": {
  2176. "ext-pcntl": "Required for the spinner to be animated."
  2177. },
  2178. "type": "library",
  2179. "extra": {
  2180. "branch-alias": {
  2181. "dev-main": "0.3.x-dev"
  2182. }
  2183. },
  2184. "autoload": {
  2185. "files": [
  2186. "src/helpers.php"
  2187. ],
  2188. "psr-4": {
  2189. "Laravel\\Prompts\\": "src/"
  2190. }
  2191. },
  2192. "notification-url": "https://packagist.org/downloads/",
  2193. "license": [
  2194. "MIT"
  2195. ],
  2196. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  2197. "support": {
  2198. "issues": "https://github.com/laravel/prompts/issues",
  2199. "source": "https://github.com/laravel/prompts/tree/v0.3.2"
  2200. },
  2201. "time": "2024-11-12T14:59:47+00:00"
  2202. },
  2203. {
  2204. "name": "laravel/sanctum",
  2205. "version": "v4.0.5",
  2206. "source": {
  2207. "type": "git",
  2208. "url": "https://github.com/laravel/sanctum.git",
  2209. "reference": "fe361b9a63407a228f884eb78d7217f680b50140"
  2210. },
  2211. "dist": {
  2212. "type": "zip",
  2213. "url": "https://api.github.com/repos/laravel/sanctum/zipball/fe361b9a63407a228f884eb78d7217f680b50140",
  2214. "reference": "fe361b9a63407a228f884eb78d7217f680b50140",
  2215. "shasum": ""
  2216. },
  2217. "require": {
  2218. "ext-json": "*",
  2219. "illuminate/console": "^11.0",
  2220. "illuminate/contracts": "^11.0",
  2221. "illuminate/database": "^11.0",
  2222. "illuminate/support": "^11.0",
  2223. "php": "^8.2",
  2224. "symfony/console": "^7.0"
  2225. },
  2226. "require-dev": {
  2227. "mockery/mockery": "^1.6",
  2228. "orchestra/testbench": "^9.0",
  2229. "phpstan/phpstan": "^1.10",
  2230. "phpunit/phpunit": "^10.5"
  2231. },
  2232. "type": "library",
  2233. "extra": {
  2234. "laravel": {
  2235. "providers": [
  2236. "Laravel\\Sanctum\\SanctumServiceProvider"
  2237. ]
  2238. }
  2239. },
  2240. "autoload": {
  2241. "psr-4": {
  2242. "Laravel\\Sanctum\\": "src/"
  2243. }
  2244. },
  2245. "notification-url": "https://packagist.org/downloads/",
  2246. "license": [
  2247. "MIT"
  2248. ],
  2249. "authors": [
  2250. {
  2251. "name": "Taylor Otwell",
  2252. "email": "taylor@laravel.com"
  2253. }
  2254. ],
  2255. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2256. "keywords": [
  2257. "auth",
  2258. "laravel",
  2259. "sanctum"
  2260. ],
  2261. "support": {
  2262. "issues": "https://github.com/laravel/sanctum/issues",
  2263. "source": "https://github.com/laravel/sanctum"
  2264. },
  2265. "time": "2024-11-26T14:36:23+00:00"
  2266. },
  2267. {
  2268. "name": "laravel/serializable-closure",
  2269. "version": "v1.3.7",
  2270. "source": {
  2271. "type": "git",
  2272. "url": "https://github.com/laravel/serializable-closure.git",
  2273. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  2274. },
  2275. "dist": {
  2276. "type": "zip",
  2277. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  2278. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  2279. "shasum": ""
  2280. },
  2281. "require": {
  2282. "php": "^7.3|^8.0"
  2283. },
  2284. "require-dev": {
  2285. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  2286. "nesbot/carbon": "^2.61|^3.0",
  2287. "pestphp/pest": "^1.21.3",
  2288. "phpstan/phpstan": "^1.8.2",
  2289. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  2290. },
  2291. "type": "library",
  2292. "extra": {
  2293. "branch-alias": {
  2294. "dev-master": "1.x-dev"
  2295. }
  2296. },
  2297. "autoload": {
  2298. "psr-4": {
  2299. "Laravel\\SerializableClosure\\": "src/"
  2300. }
  2301. },
  2302. "notification-url": "https://packagist.org/downloads/",
  2303. "license": [
  2304. "MIT"
  2305. ],
  2306. "authors": [
  2307. {
  2308. "name": "Taylor Otwell",
  2309. "email": "taylor@laravel.com"
  2310. },
  2311. {
  2312. "name": "Nuno Maduro",
  2313. "email": "nuno@laravel.com"
  2314. }
  2315. ],
  2316. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2317. "keywords": [
  2318. "closure",
  2319. "laravel",
  2320. "serializable"
  2321. ],
  2322. "support": {
  2323. "issues": "https://github.com/laravel/serializable-closure/issues",
  2324. "source": "https://github.com/laravel/serializable-closure"
  2325. },
  2326. "time": "2024-11-14T18:34:49+00:00"
  2327. },
  2328. {
  2329. "name": "laravel/tinker",
  2330. "version": "v2.10.0",
  2331. "source": {
  2332. "type": "git",
  2333. "url": "https://github.com/laravel/tinker.git",
  2334. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  2335. },
  2336. "dist": {
  2337. "type": "zip",
  2338. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2339. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2340. "shasum": ""
  2341. },
  2342. "require": {
  2343. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2344. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2345. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2346. "php": "^7.2.5|^8.0",
  2347. "psy/psysh": "^0.11.1|^0.12.0",
  2348. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2349. },
  2350. "require-dev": {
  2351. "mockery/mockery": "~1.3.3|^1.4.2",
  2352. "phpstan/phpstan": "^1.10",
  2353. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2354. },
  2355. "suggest": {
  2356. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2357. },
  2358. "type": "library",
  2359. "extra": {
  2360. "laravel": {
  2361. "providers": [
  2362. "Laravel\\Tinker\\TinkerServiceProvider"
  2363. ]
  2364. }
  2365. },
  2366. "autoload": {
  2367. "psr-4": {
  2368. "Laravel\\Tinker\\": "src/"
  2369. }
  2370. },
  2371. "notification-url": "https://packagist.org/downloads/",
  2372. "license": [
  2373. "MIT"
  2374. ],
  2375. "authors": [
  2376. {
  2377. "name": "Taylor Otwell",
  2378. "email": "taylor@laravel.com"
  2379. }
  2380. ],
  2381. "description": "Powerful REPL for the Laravel framework.",
  2382. "keywords": [
  2383. "REPL",
  2384. "Tinker",
  2385. "laravel",
  2386. "psysh"
  2387. ],
  2388. "support": {
  2389. "issues": "https://github.com/laravel/tinker/issues",
  2390. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  2391. },
  2392. "time": "2024-09-23T13:32:56+00:00"
  2393. },
  2394. {
  2395. "name": "league/commonmark",
  2396. "version": "2.5.3",
  2397. "source": {
  2398. "type": "git",
  2399. "url": "https://github.com/thephpleague/commonmark.git",
  2400. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  2401. },
  2402. "dist": {
  2403. "type": "zip",
  2404. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  2405. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  2406. "shasum": ""
  2407. },
  2408. "require": {
  2409. "ext-mbstring": "*",
  2410. "league/config": "^1.1.1",
  2411. "php": "^7.4 || ^8.0",
  2412. "psr/event-dispatcher": "^1.0",
  2413. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2414. "symfony/polyfill-php80": "^1.16"
  2415. },
  2416. "require-dev": {
  2417. "cebe/markdown": "^1.0",
  2418. "commonmark/cmark": "0.31.1",
  2419. "commonmark/commonmark.js": "0.31.1",
  2420. "composer/package-versions-deprecated": "^1.8",
  2421. "embed/embed": "^4.4",
  2422. "erusev/parsedown": "^1.0",
  2423. "ext-json": "*",
  2424. "github/gfm": "0.29.0",
  2425. "michelf/php-markdown": "^1.4 || ^2.0",
  2426. "nyholm/psr7": "^1.5",
  2427. "phpstan/phpstan": "^1.8.2",
  2428. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2429. "scrutinizer/ocular": "^1.8.1",
  2430. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  2431. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  2432. "unleashedtech/php-coding-standard": "^3.1.1",
  2433. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2434. },
  2435. "suggest": {
  2436. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2437. },
  2438. "type": "library",
  2439. "extra": {
  2440. "branch-alias": {
  2441. "dev-main": "2.6-dev"
  2442. }
  2443. },
  2444. "autoload": {
  2445. "psr-4": {
  2446. "League\\CommonMark\\": "src"
  2447. }
  2448. },
  2449. "notification-url": "https://packagist.org/downloads/",
  2450. "license": [
  2451. "BSD-3-Clause"
  2452. ],
  2453. "authors": [
  2454. {
  2455. "name": "Colin O'Dell",
  2456. "email": "colinodell@gmail.com",
  2457. "homepage": "https://www.colinodell.com",
  2458. "role": "Lead Developer"
  2459. }
  2460. ],
  2461. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2462. "homepage": "https://commonmark.thephpleague.com",
  2463. "keywords": [
  2464. "commonmark",
  2465. "flavored",
  2466. "gfm",
  2467. "github",
  2468. "github-flavored",
  2469. "markdown",
  2470. "md",
  2471. "parser"
  2472. ],
  2473. "support": {
  2474. "docs": "https://commonmark.thephpleague.com/",
  2475. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2476. "issues": "https://github.com/thephpleague/commonmark/issues",
  2477. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2478. "source": "https://github.com/thephpleague/commonmark"
  2479. },
  2480. "funding": [
  2481. {
  2482. "url": "https://www.colinodell.com/sponsor",
  2483. "type": "custom"
  2484. },
  2485. {
  2486. "url": "https://www.paypal.me/colinpodell/10.00",
  2487. "type": "custom"
  2488. },
  2489. {
  2490. "url": "https://github.com/colinodell",
  2491. "type": "github"
  2492. },
  2493. {
  2494. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2495. "type": "tidelift"
  2496. }
  2497. ],
  2498. "time": "2024-08-16T11:46:16+00:00"
  2499. },
  2500. {
  2501. "name": "league/config",
  2502. "version": "v1.2.0",
  2503. "source": {
  2504. "type": "git",
  2505. "url": "https://github.com/thephpleague/config.git",
  2506. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2507. },
  2508. "dist": {
  2509. "type": "zip",
  2510. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2511. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2512. "shasum": ""
  2513. },
  2514. "require": {
  2515. "dflydev/dot-access-data": "^3.0.1",
  2516. "nette/schema": "^1.2",
  2517. "php": "^7.4 || ^8.0"
  2518. },
  2519. "require-dev": {
  2520. "phpstan/phpstan": "^1.8.2",
  2521. "phpunit/phpunit": "^9.5.5",
  2522. "scrutinizer/ocular": "^1.8.1",
  2523. "unleashedtech/php-coding-standard": "^3.1",
  2524. "vimeo/psalm": "^4.7.3"
  2525. },
  2526. "type": "library",
  2527. "extra": {
  2528. "branch-alias": {
  2529. "dev-main": "1.2-dev"
  2530. }
  2531. },
  2532. "autoload": {
  2533. "psr-4": {
  2534. "League\\Config\\": "src"
  2535. }
  2536. },
  2537. "notification-url": "https://packagist.org/downloads/",
  2538. "license": [
  2539. "BSD-3-Clause"
  2540. ],
  2541. "authors": [
  2542. {
  2543. "name": "Colin O'Dell",
  2544. "email": "colinodell@gmail.com",
  2545. "homepage": "https://www.colinodell.com",
  2546. "role": "Lead Developer"
  2547. }
  2548. ],
  2549. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2550. "homepage": "https://config.thephpleague.com",
  2551. "keywords": [
  2552. "array",
  2553. "config",
  2554. "configuration",
  2555. "dot",
  2556. "dot-access",
  2557. "nested",
  2558. "schema"
  2559. ],
  2560. "support": {
  2561. "docs": "https://config.thephpleague.com/",
  2562. "issues": "https://github.com/thephpleague/config/issues",
  2563. "rss": "https://github.com/thephpleague/config/releases.atom",
  2564. "source": "https://github.com/thephpleague/config"
  2565. },
  2566. "funding": [
  2567. {
  2568. "url": "https://www.colinodell.com/sponsor",
  2569. "type": "custom"
  2570. },
  2571. {
  2572. "url": "https://www.paypal.me/colinpodell/10.00",
  2573. "type": "custom"
  2574. },
  2575. {
  2576. "url": "https://github.com/colinodell",
  2577. "type": "github"
  2578. }
  2579. ],
  2580. "time": "2022-12-11T20:36:23+00:00"
  2581. },
  2582. {
  2583. "name": "league/flysystem",
  2584. "version": "3.29.1",
  2585. "source": {
  2586. "type": "git",
  2587. "url": "https://github.com/thephpleague/flysystem.git",
  2588. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  2589. },
  2590. "dist": {
  2591. "type": "zip",
  2592. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2593. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2594. "shasum": ""
  2595. },
  2596. "require": {
  2597. "league/flysystem-local": "^3.0.0",
  2598. "league/mime-type-detection": "^1.0.0",
  2599. "php": "^8.0.2"
  2600. },
  2601. "conflict": {
  2602. "async-aws/core": "<1.19.0",
  2603. "async-aws/s3": "<1.14.0",
  2604. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2605. "guzzlehttp/guzzle": "<7.0",
  2606. "guzzlehttp/ringphp": "<1.1.1",
  2607. "phpseclib/phpseclib": "3.0.15",
  2608. "symfony/http-client": "<5.2"
  2609. },
  2610. "require-dev": {
  2611. "async-aws/s3": "^1.5 || ^2.0",
  2612. "async-aws/simple-s3": "^1.1 || ^2.0",
  2613. "aws/aws-sdk-php": "^3.295.10",
  2614. "composer/semver": "^3.0",
  2615. "ext-fileinfo": "*",
  2616. "ext-ftp": "*",
  2617. "ext-mongodb": "^1.3",
  2618. "ext-zip": "*",
  2619. "friendsofphp/php-cs-fixer": "^3.5",
  2620. "google/cloud-storage": "^1.23",
  2621. "guzzlehttp/psr7": "^2.6",
  2622. "microsoft/azure-storage-blob": "^1.1",
  2623. "mongodb/mongodb": "^1.2",
  2624. "phpseclib/phpseclib": "^3.0.36",
  2625. "phpstan/phpstan": "^1.10",
  2626. "phpunit/phpunit": "^9.5.11|^10.0",
  2627. "sabre/dav": "^4.6.0"
  2628. },
  2629. "type": "library",
  2630. "autoload": {
  2631. "psr-4": {
  2632. "League\\Flysystem\\": "src"
  2633. }
  2634. },
  2635. "notification-url": "https://packagist.org/downloads/",
  2636. "license": [
  2637. "MIT"
  2638. ],
  2639. "authors": [
  2640. {
  2641. "name": "Frank de Jonge",
  2642. "email": "info@frankdejonge.nl"
  2643. }
  2644. ],
  2645. "description": "File storage abstraction for PHP",
  2646. "keywords": [
  2647. "WebDAV",
  2648. "aws",
  2649. "cloud",
  2650. "file",
  2651. "files",
  2652. "filesystem",
  2653. "filesystems",
  2654. "ftp",
  2655. "s3",
  2656. "sftp",
  2657. "storage"
  2658. ],
  2659. "support": {
  2660. "issues": "https://github.com/thephpleague/flysystem/issues",
  2661. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  2662. },
  2663. "time": "2024-10-08T08:58:34+00:00"
  2664. },
  2665. {
  2666. "name": "league/flysystem-aws-s3-v3",
  2667. "version": "3.29.0",
  2668. "source": {
  2669. "type": "git",
  2670. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  2671. "reference": "c6ff6d4606e48249b63f269eba7fabdb584e76a9"
  2672. },
  2673. "dist": {
  2674. "type": "zip",
  2675. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/c6ff6d4606e48249b63f269eba7fabdb584e76a9",
  2676. "reference": "c6ff6d4606e48249b63f269eba7fabdb584e76a9",
  2677. "shasum": ""
  2678. },
  2679. "require": {
  2680. "aws/aws-sdk-php": "^3.295.10",
  2681. "league/flysystem": "^3.10.0",
  2682. "league/mime-type-detection": "^1.0.0",
  2683. "php": "^8.0.2"
  2684. },
  2685. "conflict": {
  2686. "guzzlehttp/guzzle": "<7.0",
  2687. "guzzlehttp/ringphp": "<1.1.1"
  2688. },
  2689. "type": "library",
  2690. "autoload": {
  2691. "psr-4": {
  2692. "League\\Flysystem\\AwsS3V3\\": ""
  2693. }
  2694. },
  2695. "notification-url": "https://packagist.org/downloads/",
  2696. "license": [
  2697. "MIT"
  2698. ],
  2699. "authors": [
  2700. {
  2701. "name": "Frank de Jonge",
  2702. "email": "info@frankdejonge.nl"
  2703. }
  2704. ],
  2705. "description": "AWS S3 filesystem adapter for Flysystem.",
  2706. "keywords": [
  2707. "Flysystem",
  2708. "aws",
  2709. "file",
  2710. "files",
  2711. "filesystem",
  2712. "s3",
  2713. "storage"
  2714. ],
  2715. "support": {
  2716. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.29.0"
  2717. },
  2718. "time": "2024-08-17T13:10:48+00:00"
  2719. },
  2720. {
  2721. "name": "league/flysystem-local",
  2722. "version": "3.29.0",
  2723. "source": {
  2724. "type": "git",
  2725. "url": "https://github.com/thephpleague/flysystem-local.git",
  2726. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  2727. },
  2728. "dist": {
  2729. "type": "zip",
  2730. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2731. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2732. "shasum": ""
  2733. },
  2734. "require": {
  2735. "ext-fileinfo": "*",
  2736. "league/flysystem": "^3.0.0",
  2737. "league/mime-type-detection": "^1.0.0",
  2738. "php": "^8.0.2"
  2739. },
  2740. "type": "library",
  2741. "autoload": {
  2742. "psr-4": {
  2743. "League\\Flysystem\\Local\\": ""
  2744. }
  2745. },
  2746. "notification-url": "https://packagist.org/downloads/",
  2747. "license": [
  2748. "MIT"
  2749. ],
  2750. "authors": [
  2751. {
  2752. "name": "Frank de Jonge",
  2753. "email": "info@frankdejonge.nl"
  2754. }
  2755. ],
  2756. "description": "Local filesystem adapter for Flysystem.",
  2757. "keywords": [
  2758. "Flysystem",
  2759. "file",
  2760. "files",
  2761. "filesystem",
  2762. "local"
  2763. ],
  2764. "support": {
  2765. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  2766. },
  2767. "time": "2024-08-09T21:24:39+00:00"
  2768. },
  2769. {
  2770. "name": "league/mime-type-detection",
  2771. "version": "1.16.0",
  2772. "source": {
  2773. "type": "git",
  2774. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2775. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  2776. },
  2777. "dist": {
  2778. "type": "zip",
  2779. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  2780. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  2781. "shasum": ""
  2782. },
  2783. "require": {
  2784. "ext-fileinfo": "*",
  2785. "php": "^7.4 || ^8.0"
  2786. },
  2787. "require-dev": {
  2788. "friendsofphp/php-cs-fixer": "^3.2",
  2789. "phpstan/phpstan": "^0.12.68",
  2790. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2791. },
  2792. "type": "library",
  2793. "autoload": {
  2794. "psr-4": {
  2795. "League\\MimeTypeDetection\\": "src"
  2796. }
  2797. },
  2798. "notification-url": "https://packagist.org/downloads/",
  2799. "license": [
  2800. "MIT"
  2801. ],
  2802. "authors": [
  2803. {
  2804. "name": "Frank de Jonge",
  2805. "email": "info@frankdejonge.nl"
  2806. }
  2807. ],
  2808. "description": "Mime-type detection for Flysystem",
  2809. "support": {
  2810. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2811. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  2812. },
  2813. "funding": [
  2814. {
  2815. "url": "https://github.com/frankdejonge",
  2816. "type": "github"
  2817. },
  2818. {
  2819. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2820. "type": "tidelift"
  2821. }
  2822. ],
  2823. "time": "2024-09-21T08:32:55+00:00"
  2824. },
  2825. {
  2826. "name": "monolog/monolog",
  2827. "version": "3.8.0",
  2828. "source": {
  2829. "type": "git",
  2830. "url": "https://github.com/Seldaek/monolog.git",
  2831. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67"
  2832. },
  2833. "dist": {
  2834. "type": "zip",
  2835. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67",
  2836. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67",
  2837. "shasum": ""
  2838. },
  2839. "require": {
  2840. "php": ">=8.1",
  2841. "psr/log": "^2.0 || ^3.0"
  2842. },
  2843. "provide": {
  2844. "psr/log-implementation": "3.0.0"
  2845. },
  2846. "require-dev": {
  2847. "aws/aws-sdk-php": "^3.0",
  2848. "doctrine/couchdb": "~1.0@dev",
  2849. "elasticsearch/elasticsearch": "^7 || ^8",
  2850. "ext-json": "*",
  2851. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2852. "guzzlehttp/guzzle": "^7.4.5",
  2853. "guzzlehttp/psr7": "^2.2",
  2854. "mongodb/mongodb": "^1.8",
  2855. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2856. "php-console/php-console": "^3.1.8",
  2857. "phpstan/phpstan": "^2",
  2858. "phpstan/phpstan-deprecation-rules": "^2",
  2859. "phpstan/phpstan-strict-rules": "^2",
  2860. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  2861. "predis/predis": "^1.1 || ^2",
  2862. "rollbar/rollbar": "^4.0",
  2863. "ruflin/elastica": "^7 || ^8",
  2864. "symfony/mailer": "^5.4 || ^6",
  2865. "symfony/mime": "^5.4 || ^6"
  2866. },
  2867. "suggest": {
  2868. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2869. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2870. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2871. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2872. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2873. "ext-mbstring": "Allow to work properly with unicode symbols",
  2874. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2875. "ext-openssl": "Required to send log messages using SSL",
  2876. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2877. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2878. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2879. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2880. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2881. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2882. },
  2883. "type": "library",
  2884. "extra": {
  2885. "branch-alias": {
  2886. "dev-main": "3.x-dev"
  2887. }
  2888. },
  2889. "autoload": {
  2890. "psr-4": {
  2891. "Monolog\\": "src/Monolog"
  2892. }
  2893. },
  2894. "notification-url": "https://packagist.org/downloads/",
  2895. "license": [
  2896. "MIT"
  2897. ],
  2898. "authors": [
  2899. {
  2900. "name": "Jordi Boggiano",
  2901. "email": "j.boggiano@seld.be",
  2902. "homepage": "https://seld.be"
  2903. }
  2904. ],
  2905. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2906. "homepage": "https://github.com/Seldaek/monolog",
  2907. "keywords": [
  2908. "log",
  2909. "logging",
  2910. "psr-3"
  2911. ],
  2912. "support": {
  2913. "issues": "https://github.com/Seldaek/monolog/issues",
  2914. "source": "https://github.com/Seldaek/monolog/tree/3.8.0"
  2915. },
  2916. "funding": [
  2917. {
  2918. "url": "https://github.com/Seldaek",
  2919. "type": "github"
  2920. },
  2921. {
  2922. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2923. "type": "tidelift"
  2924. }
  2925. ],
  2926. "time": "2024-11-12T13:57:08+00:00"
  2927. },
  2928. {
  2929. "name": "mpociot/reflection-docblock",
  2930. "version": "1.0.1",
  2931. "source": {
  2932. "type": "git",
  2933. "url": "https://github.com/mpociot/reflection-docblock.git",
  2934. "reference": "c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587"
  2935. },
  2936. "dist": {
  2937. "type": "zip",
  2938. "url": "https://api.github.com/repos/mpociot/reflection-docblock/zipball/c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587",
  2939. "reference": "c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587",
  2940. "shasum": ""
  2941. },
  2942. "require": {
  2943. "php": ">=5.3.3"
  2944. },
  2945. "require-dev": {
  2946. "phpunit/phpunit": "~4.0"
  2947. },
  2948. "suggest": {
  2949. "dflydev/markdown": "~1.0",
  2950. "erusev/parsedown": "~1.0"
  2951. },
  2952. "type": "library",
  2953. "extra": {
  2954. "branch-alias": {
  2955. "dev-master": "2.0.x-dev"
  2956. }
  2957. },
  2958. "autoload": {
  2959. "psr-0": {
  2960. "Mpociot": [
  2961. "src/"
  2962. ]
  2963. }
  2964. },
  2965. "notification-url": "https://packagist.org/downloads/",
  2966. "license": [
  2967. "MIT"
  2968. ],
  2969. "authors": [
  2970. {
  2971. "name": "Mike van Riel",
  2972. "email": "mike.vanriel@naenius.com"
  2973. }
  2974. ],
  2975. "support": {
  2976. "issues": "https://github.com/mpociot/reflection-docblock/issues",
  2977. "source": "https://github.com/mpociot/reflection-docblock/tree/master"
  2978. },
  2979. "time": "2016-06-20T20:53:12+00:00"
  2980. },
  2981. {
  2982. "name": "mtdowling/jmespath.php",
  2983. "version": "2.8.0",
  2984. "source": {
  2985. "type": "git",
  2986. "url": "https://github.com/jmespath/jmespath.php.git",
  2987. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  2988. },
  2989. "dist": {
  2990. "type": "zip",
  2991. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  2992. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  2993. "shasum": ""
  2994. },
  2995. "require": {
  2996. "php": "^7.2.5 || ^8.0",
  2997. "symfony/polyfill-mbstring": "^1.17"
  2998. },
  2999. "require-dev": {
  3000. "composer/xdebug-handler": "^3.0.3",
  3001. "phpunit/phpunit": "^8.5.33"
  3002. },
  3003. "bin": [
  3004. "bin/jp.php"
  3005. ],
  3006. "type": "library",
  3007. "extra": {
  3008. "branch-alias": {
  3009. "dev-master": "2.8-dev"
  3010. }
  3011. },
  3012. "autoload": {
  3013. "files": [
  3014. "src/JmesPath.php"
  3015. ],
  3016. "psr-4": {
  3017. "JmesPath\\": "src/"
  3018. }
  3019. },
  3020. "notification-url": "https://packagist.org/downloads/",
  3021. "license": [
  3022. "MIT"
  3023. ],
  3024. "authors": [
  3025. {
  3026. "name": "Graham Campbell",
  3027. "email": "hello@gjcampbell.co.uk",
  3028. "homepage": "https://github.com/GrahamCampbell"
  3029. },
  3030. {
  3031. "name": "Michael Dowling",
  3032. "email": "mtdowling@gmail.com",
  3033. "homepage": "https://github.com/mtdowling"
  3034. }
  3035. ],
  3036. "description": "Declaratively specify how to extract elements from a JSON document",
  3037. "keywords": [
  3038. "json",
  3039. "jsonpath"
  3040. ],
  3041. "support": {
  3042. "issues": "https://github.com/jmespath/jmespath.php/issues",
  3043. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  3044. },
  3045. "time": "2024-09-04T18:46:31+00:00"
  3046. },
  3047. {
  3048. "name": "nesbot/carbon",
  3049. "version": "3.8.2",
  3050. "source": {
  3051. "type": "git",
  3052. "url": "https://github.com/briannesbitt/Carbon.git",
  3053. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947"
  3054. },
  3055. "dist": {
  3056. "type": "zip",
  3057. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  3058. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  3059. "shasum": ""
  3060. },
  3061. "require": {
  3062. "carbonphp/carbon-doctrine-types": "<100.0",
  3063. "ext-json": "*",
  3064. "php": "^8.1",
  3065. "psr/clock": "^1.0",
  3066. "symfony/clock": "^6.3 || ^7.0",
  3067. "symfony/polyfill-mbstring": "^1.0",
  3068. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  3069. },
  3070. "provide": {
  3071. "psr/clock-implementation": "1.0"
  3072. },
  3073. "require-dev": {
  3074. "doctrine/dbal": "^3.6.3 || ^4.0",
  3075. "doctrine/orm": "^2.15.2 || ^3.0",
  3076. "friendsofphp/php-cs-fixer": "^3.57.2",
  3077. "kylekatarnls/multi-tester": "^2.5.3",
  3078. "ondrejmirtes/better-reflection": "^6.25.0.4",
  3079. "phpmd/phpmd": "^2.15.0",
  3080. "phpstan/extension-installer": "^1.3.1",
  3081. "phpstan/phpstan": "^1.11.2",
  3082. "phpunit/phpunit": "^10.5.20",
  3083. "squizlabs/php_codesniffer": "^3.9.0"
  3084. },
  3085. "bin": [
  3086. "bin/carbon"
  3087. ],
  3088. "type": "library",
  3089. "extra": {
  3090. "branch-alias": {
  3091. "dev-master": "3.x-dev",
  3092. "dev-2.x": "2.x-dev"
  3093. },
  3094. "laravel": {
  3095. "providers": [
  3096. "Carbon\\Laravel\\ServiceProvider"
  3097. ]
  3098. },
  3099. "phpstan": {
  3100. "includes": [
  3101. "extension.neon"
  3102. ]
  3103. }
  3104. },
  3105. "autoload": {
  3106. "psr-4": {
  3107. "Carbon\\": "src/Carbon/"
  3108. }
  3109. },
  3110. "notification-url": "https://packagist.org/downloads/",
  3111. "license": [
  3112. "MIT"
  3113. ],
  3114. "authors": [
  3115. {
  3116. "name": "Brian Nesbitt",
  3117. "email": "brian@nesbot.com",
  3118. "homepage": "https://markido.com"
  3119. },
  3120. {
  3121. "name": "kylekatarnls",
  3122. "homepage": "https://github.com/kylekatarnls"
  3123. }
  3124. ],
  3125. "description": "An API extension for DateTime that supports 281 different languages.",
  3126. "homepage": "https://carbon.nesbot.com",
  3127. "keywords": [
  3128. "date",
  3129. "datetime",
  3130. "time"
  3131. ],
  3132. "support": {
  3133. "docs": "https://carbon.nesbot.com/docs",
  3134. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3135. "source": "https://github.com/briannesbitt/Carbon"
  3136. },
  3137. "funding": [
  3138. {
  3139. "url": "https://github.com/sponsors/kylekatarnls",
  3140. "type": "github"
  3141. },
  3142. {
  3143. "url": "https://opencollective.com/Carbon#sponsor",
  3144. "type": "opencollective"
  3145. },
  3146. {
  3147. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3148. "type": "tidelift"
  3149. }
  3150. ],
  3151. "time": "2024-11-07T17:46:48+00:00"
  3152. },
  3153. {
  3154. "name": "nette/schema",
  3155. "version": "v1.3.2",
  3156. "source": {
  3157. "type": "git",
  3158. "url": "https://github.com/nette/schema.git",
  3159. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  3160. },
  3161. "dist": {
  3162. "type": "zip",
  3163. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  3164. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  3165. "shasum": ""
  3166. },
  3167. "require": {
  3168. "nette/utils": "^4.0",
  3169. "php": "8.1 - 8.4"
  3170. },
  3171. "require-dev": {
  3172. "nette/tester": "^2.5.2",
  3173. "phpstan/phpstan-nette": "^1.0",
  3174. "tracy/tracy": "^2.8"
  3175. },
  3176. "type": "library",
  3177. "extra": {
  3178. "branch-alias": {
  3179. "dev-master": "1.3-dev"
  3180. }
  3181. },
  3182. "autoload": {
  3183. "classmap": [
  3184. "src/"
  3185. ]
  3186. },
  3187. "notification-url": "https://packagist.org/downloads/",
  3188. "license": [
  3189. "BSD-3-Clause",
  3190. "GPL-2.0-only",
  3191. "GPL-3.0-only"
  3192. ],
  3193. "authors": [
  3194. {
  3195. "name": "David Grudl",
  3196. "homepage": "https://davidgrudl.com"
  3197. },
  3198. {
  3199. "name": "Nette Community",
  3200. "homepage": "https://nette.org/contributors"
  3201. }
  3202. ],
  3203. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3204. "homepage": "https://nette.org",
  3205. "keywords": [
  3206. "config",
  3207. "nette"
  3208. ],
  3209. "support": {
  3210. "issues": "https://github.com/nette/schema/issues",
  3211. "source": "https://github.com/nette/schema/tree/v1.3.2"
  3212. },
  3213. "time": "2024-10-06T23:10:23+00:00"
  3214. },
  3215. {
  3216. "name": "nette/utils",
  3217. "version": "v4.0.5",
  3218. "source": {
  3219. "type": "git",
  3220. "url": "https://github.com/nette/utils.git",
  3221. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  3222. },
  3223. "dist": {
  3224. "type": "zip",
  3225. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  3226. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  3227. "shasum": ""
  3228. },
  3229. "require": {
  3230. "php": "8.0 - 8.4"
  3231. },
  3232. "conflict": {
  3233. "nette/finder": "<3",
  3234. "nette/schema": "<1.2.2"
  3235. },
  3236. "require-dev": {
  3237. "jetbrains/phpstorm-attributes": "dev-master",
  3238. "nette/tester": "^2.5",
  3239. "phpstan/phpstan": "^1.0",
  3240. "tracy/tracy": "^2.9"
  3241. },
  3242. "suggest": {
  3243. "ext-gd": "to use Image",
  3244. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3245. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3246. "ext-json": "to use Nette\\Utils\\Json",
  3247. "ext-mbstring": "to use Strings::lower() etc...",
  3248. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3249. },
  3250. "type": "library",
  3251. "extra": {
  3252. "branch-alias": {
  3253. "dev-master": "4.0-dev"
  3254. }
  3255. },
  3256. "autoload": {
  3257. "classmap": [
  3258. "src/"
  3259. ]
  3260. },
  3261. "notification-url": "https://packagist.org/downloads/",
  3262. "license": [
  3263. "BSD-3-Clause",
  3264. "GPL-2.0-only",
  3265. "GPL-3.0-only"
  3266. ],
  3267. "authors": [
  3268. {
  3269. "name": "David Grudl",
  3270. "homepage": "https://davidgrudl.com"
  3271. },
  3272. {
  3273. "name": "Nette Community",
  3274. "homepage": "https://nette.org/contributors"
  3275. }
  3276. ],
  3277. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3278. "homepage": "https://nette.org",
  3279. "keywords": [
  3280. "array",
  3281. "core",
  3282. "datetime",
  3283. "images",
  3284. "json",
  3285. "nette",
  3286. "paginator",
  3287. "password",
  3288. "slugify",
  3289. "string",
  3290. "unicode",
  3291. "utf-8",
  3292. "utility",
  3293. "validation"
  3294. ],
  3295. "support": {
  3296. "issues": "https://github.com/nette/utils/issues",
  3297. "source": "https://github.com/nette/utils/tree/v4.0.5"
  3298. },
  3299. "time": "2024-08-07T15:39:19+00:00"
  3300. },
  3301. {
  3302. "name": "nikic/php-parser",
  3303. "version": "v5.3.1",
  3304. "source": {
  3305. "type": "git",
  3306. "url": "https://github.com/nikic/PHP-Parser.git",
  3307. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  3308. },
  3309. "dist": {
  3310. "type": "zip",
  3311. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  3312. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  3313. "shasum": ""
  3314. },
  3315. "require": {
  3316. "ext-ctype": "*",
  3317. "ext-json": "*",
  3318. "ext-tokenizer": "*",
  3319. "php": ">=7.4"
  3320. },
  3321. "require-dev": {
  3322. "ircmaxell/php-yacc": "^0.0.7",
  3323. "phpunit/phpunit": "^9.0"
  3324. },
  3325. "bin": [
  3326. "bin/php-parse"
  3327. ],
  3328. "type": "library",
  3329. "extra": {
  3330. "branch-alias": {
  3331. "dev-master": "5.0-dev"
  3332. }
  3333. },
  3334. "autoload": {
  3335. "psr-4": {
  3336. "PhpParser\\": "lib/PhpParser"
  3337. }
  3338. },
  3339. "notification-url": "https://packagist.org/downloads/",
  3340. "license": [
  3341. "BSD-3-Clause"
  3342. ],
  3343. "authors": [
  3344. {
  3345. "name": "Nikita Popov"
  3346. }
  3347. ],
  3348. "description": "A PHP parser written in PHP",
  3349. "keywords": [
  3350. "parser",
  3351. "php"
  3352. ],
  3353. "support": {
  3354. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3355. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  3356. },
  3357. "time": "2024-10-08T18:51:32+00:00"
  3358. },
  3359. {
  3360. "name": "nunomaduro/collision",
  3361. "version": "v8.5.0",
  3362. "source": {
  3363. "type": "git",
  3364. "url": "https://github.com/nunomaduro/collision.git",
  3365. "reference": "f5c101b929c958e849a633283adff296ed5f38f5"
  3366. },
  3367. "dist": {
  3368. "type": "zip",
  3369. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f5c101b929c958e849a633283adff296ed5f38f5",
  3370. "reference": "f5c101b929c958e849a633283adff296ed5f38f5",
  3371. "shasum": ""
  3372. },
  3373. "require": {
  3374. "filp/whoops": "^2.16.0",
  3375. "nunomaduro/termwind": "^2.1.0",
  3376. "php": "^8.2.0",
  3377. "symfony/console": "^7.1.5"
  3378. },
  3379. "conflict": {
  3380. "laravel/framework": "<11.0.0 || >=12.0.0",
  3381. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  3382. },
  3383. "require-dev": {
  3384. "larastan/larastan": "^2.9.8",
  3385. "laravel/framework": "^11.28.0",
  3386. "laravel/pint": "^1.18.1",
  3387. "laravel/sail": "^1.36.0",
  3388. "laravel/sanctum": "^4.0.3",
  3389. "laravel/tinker": "^2.10.0",
  3390. "orchestra/testbench-core": "^9.5.3",
  3391. "pestphp/pest": "^2.36.0 || ^3.4.0",
  3392. "sebastian/environment": "^6.1.0 || ^7.2.0"
  3393. },
  3394. "type": "library",
  3395. "extra": {
  3396. "laravel": {
  3397. "providers": [
  3398. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  3399. ]
  3400. },
  3401. "branch-alias": {
  3402. "dev-8.x": "8.x-dev"
  3403. }
  3404. },
  3405. "autoload": {
  3406. "files": [
  3407. "./src/Adapters/Phpunit/Autoload.php"
  3408. ],
  3409. "psr-4": {
  3410. "NunoMaduro\\Collision\\": "src/"
  3411. }
  3412. },
  3413. "notification-url": "https://packagist.org/downloads/",
  3414. "license": [
  3415. "MIT"
  3416. ],
  3417. "authors": [
  3418. {
  3419. "name": "Nuno Maduro",
  3420. "email": "enunomaduro@gmail.com"
  3421. }
  3422. ],
  3423. "description": "Cli error handling for console/command-line PHP applications.",
  3424. "keywords": [
  3425. "artisan",
  3426. "cli",
  3427. "command-line",
  3428. "console",
  3429. "error",
  3430. "handling",
  3431. "laravel",
  3432. "laravel-zero",
  3433. "php",
  3434. "symfony"
  3435. ],
  3436. "support": {
  3437. "issues": "https://github.com/nunomaduro/collision/issues",
  3438. "source": "https://github.com/nunomaduro/collision"
  3439. },
  3440. "funding": [
  3441. {
  3442. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3443. "type": "custom"
  3444. },
  3445. {
  3446. "url": "https://github.com/nunomaduro",
  3447. "type": "github"
  3448. },
  3449. {
  3450. "url": "https://www.patreon.com/nunomaduro",
  3451. "type": "patreon"
  3452. }
  3453. ],
  3454. "time": "2024-10-15T16:06:32+00:00"
  3455. },
  3456. {
  3457. "name": "nunomaduro/termwind",
  3458. "version": "v2.3.0",
  3459. "source": {
  3460. "type": "git",
  3461. "url": "https://github.com/nunomaduro/termwind.git",
  3462. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  3463. },
  3464. "dist": {
  3465. "type": "zip",
  3466. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  3467. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  3468. "shasum": ""
  3469. },
  3470. "require": {
  3471. "ext-mbstring": "*",
  3472. "php": "^8.2",
  3473. "symfony/console": "^7.1.8"
  3474. },
  3475. "require-dev": {
  3476. "illuminate/console": "^11.33.2",
  3477. "laravel/pint": "^1.18.2",
  3478. "mockery/mockery": "^1.6.12",
  3479. "pestphp/pest": "^2.36.0",
  3480. "phpstan/phpstan": "^1.12.11",
  3481. "phpstan/phpstan-strict-rules": "^1.6.1",
  3482. "symfony/var-dumper": "^7.1.8",
  3483. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3484. },
  3485. "type": "library",
  3486. "extra": {
  3487. "laravel": {
  3488. "providers": [
  3489. "Termwind\\Laravel\\TermwindServiceProvider"
  3490. ]
  3491. },
  3492. "branch-alias": {
  3493. "dev-2.x": "2.x-dev"
  3494. }
  3495. },
  3496. "autoload": {
  3497. "files": [
  3498. "src/Functions.php"
  3499. ],
  3500. "psr-4": {
  3501. "Termwind\\": "src/"
  3502. }
  3503. },
  3504. "notification-url": "https://packagist.org/downloads/",
  3505. "license": [
  3506. "MIT"
  3507. ],
  3508. "authors": [
  3509. {
  3510. "name": "Nuno Maduro",
  3511. "email": "enunomaduro@gmail.com"
  3512. }
  3513. ],
  3514. "description": "Its like Tailwind CSS, but for the console.",
  3515. "keywords": [
  3516. "cli",
  3517. "console",
  3518. "css",
  3519. "package",
  3520. "php",
  3521. "style"
  3522. ],
  3523. "support": {
  3524. "issues": "https://github.com/nunomaduro/termwind/issues",
  3525. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
  3526. },
  3527. "funding": [
  3528. {
  3529. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3530. "type": "custom"
  3531. },
  3532. {
  3533. "url": "https://github.com/nunomaduro",
  3534. "type": "github"
  3535. },
  3536. {
  3537. "url": "https://github.com/xiCO2k",
  3538. "type": "github"
  3539. }
  3540. ],
  3541. "time": "2024-11-21T10:39:51+00:00"
  3542. },
  3543. {
  3544. "name": "nyholm/psr7",
  3545. "version": "1.8.2",
  3546. "source": {
  3547. "type": "git",
  3548. "url": "https://github.com/Nyholm/psr7.git",
  3549. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3"
  3550. },
  3551. "dist": {
  3552. "type": "zip",
  3553. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  3554. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  3555. "shasum": ""
  3556. },
  3557. "require": {
  3558. "php": ">=7.2",
  3559. "psr/http-factory": "^1.0",
  3560. "psr/http-message": "^1.1 || ^2.0"
  3561. },
  3562. "provide": {
  3563. "php-http/message-factory-implementation": "1.0",
  3564. "psr/http-factory-implementation": "1.0",
  3565. "psr/http-message-implementation": "1.0"
  3566. },
  3567. "require-dev": {
  3568. "http-interop/http-factory-tests": "^0.9",
  3569. "php-http/message-factory": "^1.0",
  3570. "php-http/psr7-integration-tests": "^1.0",
  3571. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  3572. "symfony/error-handler": "^4.4"
  3573. },
  3574. "type": "library",
  3575. "extra": {
  3576. "branch-alias": {
  3577. "dev-master": "1.8-dev"
  3578. }
  3579. },
  3580. "autoload": {
  3581. "psr-4": {
  3582. "Nyholm\\Psr7\\": "src/"
  3583. }
  3584. },
  3585. "notification-url": "https://packagist.org/downloads/",
  3586. "license": [
  3587. "MIT"
  3588. ],
  3589. "authors": [
  3590. {
  3591. "name": "Tobias Nyholm",
  3592. "email": "tobias.nyholm@gmail.com"
  3593. },
  3594. {
  3595. "name": "Martijn van der Ven",
  3596. "email": "martijn@vanderven.se"
  3597. }
  3598. ],
  3599. "description": "A fast PHP7 implementation of PSR-7",
  3600. "homepage": "https://tnyholm.se",
  3601. "keywords": [
  3602. "psr-17",
  3603. "psr-7"
  3604. ],
  3605. "support": {
  3606. "issues": "https://github.com/Nyholm/psr7/issues",
  3607. "source": "https://github.com/Nyholm/psr7/tree/1.8.2"
  3608. },
  3609. "funding": [
  3610. {
  3611. "url": "https://github.com/Zegnat",
  3612. "type": "github"
  3613. },
  3614. {
  3615. "url": "https://github.com/nyholm",
  3616. "type": "github"
  3617. }
  3618. ],
  3619. "time": "2024-09-09T07:06:30+00:00"
  3620. },
  3621. {
  3622. "name": "nyholm/psr7-server",
  3623. "version": "1.1.0",
  3624. "source": {
  3625. "type": "git",
  3626. "url": "https://github.com/Nyholm/psr7-server.git",
  3627. "reference": "4335801d851f554ca43fa6e7d2602141538854dc"
  3628. },
  3629. "dist": {
  3630. "type": "zip",
  3631. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/4335801d851f554ca43fa6e7d2602141538854dc",
  3632. "reference": "4335801d851f554ca43fa6e7d2602141538854dc",
  3633. "shasum": ""
  3634. },
  3635. "require": {
  3636. "php": "^7.1 || ^8.0",
  3637. "psr/http-factory": "^1.0",
  3638. "psr/http-message": "^1.0 || ^2.0"
  3639. },
  3640. "require-dev": {
  3641. "nyholm/nsa": "^1.1",
  3642. "nyholm/psr7": "^1.3",
  3643. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  3644. },
  3645. "type": "library",
  3646. "autoload": {
  3647. "psr-4": {
  3648. "Nyholm\\Psr7Server\\": "src/"
  3649. }
  3650. },
  3651. "notification-url": "https://packagist.org/downloads/",
  3652. "license": [
  3653. "MIT"
  3654. ],
  3655. "authors": [
  3656. {
  3657. "name": "Tobias Nyholm",
  3658. "email": "tobias.nyholm@gmail.com"
  3659. },
  3660. {
  3661. "name": "Martijn van der Ven",
  3662. "email": "martijn@vanderven.se"
  3663. }
  3664. ],
  3665. "description": "Helper classes to handle PSR-7 server requests",
  3666. "homepage": "http://tnyholm.se",
  3667. "keywords": [
  3668. "psr-17",
  3669. "psr-7"
  3670. ],
  3671. "support": {
  3672. "issues": "https://github.com/Nyholm/psr7-server/issues",
  3673. "source": "https://github.com/Nyholm/psr7-server/tree/1.1.0"
  3674. },
  3675. "funding": [
  3676. {
  3677. "url": "https://github.com/Zegnat",
  3678. "type": "github"
  3679. },
  3680. {
  3681. "url": "https://github.com/nyholm",
  3682. "type": "github"
  3683. }
  3684. ],
  3685. "time": "2023-11-08T09:30:43+00:00"
  3686. },
  3687. {
  3688. "name": "overtrue/easy-sms",
  3689. "version": "3.0.1",
  3690. "source": {
  3691. "type": "git",
  3692. "url": "https://github.com/overtrue/easy-sms.git",
  3693. "reference": "b97d8b785ae07fe8c181de8d9d1f7f146a5977f7"
  3694. },
  3695. "dist": {
  3696. "type": "zip",
  3697. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/b97d8b785ae07fe8c181de8d9d1f7f146a5977f7",
  3698. "reference": "b97d8b785ae07fe8c181de8d9d1f7f146a5977f7",
  3699. "shasum": ""
  3700. },
  3701. "require": {
  3702. "ext-json": "*",
  3703. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3704. "php": ">=8.0"
  3705. },
  3706. "require-dev": {
  3707. "friendsofphp/php-cs-fixer": "^3.54",
  3708. "jetbrains/phpstorm-attributes": "^1.0",
  3709. "mockery/mockery": "^1.4.2",
  3710. "phpunit/phpunit": "^9.5.8"
  3711. },
  3712. "type": "library",
  3713. "autoload": {
  3714. "psr-4": {
  3715. "Overtrue\\EasySms\\": "src"
  3716. }
  3717. },
  3718. "notification-url": "https://packagist.org/downloads/",
  3719. "license": [
  3720. "MIT"
  3721. ],
  3722. "authors": [
  3723. {
  3724. "name": "overtrue",
  3725. "email": "i@overtrue.me"
  3726. }
  3727. ],
  3728. "description": "The easiest way to send short message.",
  3729. "support": {
  3730. "issues": "https://github.com/overtrue/easy-sms/issues",
  3731. "source": "https://github.com/overtrue/easy-sms/tree/3.0.1"
  3732. },
  3733. "funding": [
  3734. {
  3735. "url": "https://github.com/overtrue",
  3736. "type": "github"
  3737. }
  3738. ],
  3739. "time": "2024-07-16T06:07:02+00:00"
  3740. },
  3741. {
  3742. "name": "overtrue/laravel-wechat",
  3743. "version": "7.3.0",
  3744. "source": {
  3745. "type": "git",
  3746. "url": "https://github.com/overtrue/laravel-wechat.git",
  3747. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579"
  3748. },
  3749. "dist": {
  3750. "type": "zip",
  3751. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3752. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3753. "shasum": ""
  3754. },
  3755. "require": {
  3756. "illuminate/container": "^9.0|^10.0|^11.0",
  3757. "w7corp/easywechat": "^6.0.0"
  3758. },
  3759. "require-dev": {
  3760. "brainmaestro/composer-git-hooks": "dev-master",
  3761. "jetbrains/phpstorm-attributes": "^1.0",
  3762. "laravel/framework": "^10.0",
  3763. "laravel/pint": "^1.5"
  3764. },
  3765. "type": "library",
  3766. "extra": {
  3767. "laravel": {
  3768. "providers": [
  3769. "Overtrue\\LaravelWeChat\\ServiceProvider"
  3770. ]
  3771. },
  3772. "hooks": {
  3773. "pre-commit": [
  3774. "composer check-style"
  3775. ],
  3776. "pre-push": [
  3777. "composer check-style"
  3778. ]
  3779. }
  3780. },
  3781. "autoload": {
  3782. "psr-4": {
  3783. "Overtrue\\LaravelWeChat\\": "src/"
  3784. }
  3785. },
  3786. "notification-url": "https://packagist.org/downloads/",
  3787. "license": [
  3788. "MIT"
  3789. ],
  3790. "authors": [
  3791. {
  3792. "name": "overtrue",
  3793. "email": "anzhengchao@gmail.com"
  3794. }
  3795. ],
  3796. "description": "微信 SDK for Laravel",
  3797. "keywords": [
  3798. "laravel",
  3799. "sdk",
  3800. "wechat",
  3801. "weixin"
  3802. ],
  3803. "support": {
  3804. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  3805. "source": "https://github.com/overtrue/laravel-wechat/tree/7.3.0"
  3806. },
  3807. "funding": [
  3808. {
  3809. "url": "https://github.com/overtrue",
  3810. "type": "github"
  3811. }
  3812. ],
  3813. "time": "2024-03-13T02:06:36+00:00"
  3814. },
  3815. {
  3816. "name": "overtrue/socialite",
  3817. "version": "4.11.2",
  3818. "source": {
  3819. "type": "git",
  3820. "url": "https://github.com/overtrue/socialite.git",
  3821. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66"
  3822. },
  3823. "dist": {
  3824. "type": "zip",
  3825. "url": "https://api.github.com/repos/overtrue/socialite/zipball/83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3826. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3827. "shasum": ""
  3828. },
  3829. "require": {
  3830. "ext-json": "*",
  3831. "ext-openssl": "*",
  3832. "guzzlehttp/guzzle": "^7.0",
  3833. "php": ">=8.0.2"
  3834. },
  3835. "require-dev": {
  3836. "jetbrains/phpstorm-attributes": "^1.0",
  3837. "laravel/pint": "^1.2",
  3838. "mockery/mockery": "^1.3",
  3839. "phpstan/phpstan": "^1.7",
  3840. "phpunit/phpunit": "^11.3"
  3841. },
  3842. "type": "library",
  3843. "autoload": {
  3844. "files": [
  3845. "src/Contracts/FactoryInterface.php",
  3846. "src/Contracts/UserInterface.php",
  3847. "src/Contracts/ProviderInterface.php"
  3848. ],
  3849. "psr-4": {
  3850. "Overtrue\\Socialite\\": "src/"
  3851. }
  3852. },
  3853. "notification-url": "https://packagist.org/downloads/",
  3854. "license": [
  3855. "MIT"
  3856. ],
  3857. "authors": [
  3858. {
  3859. "name": "overtrue",
  3860. "email": "anzhengchao@gmail.com"
  3861. }
  3862. ],
  3863. "description": "A collection of OAuth 2 packages.",
  3864. "keywords": [
  3865. "Feishu",
  3866. "login",
  3867. "oauth",
  3868. "qcloud",
  3869. "qq",
  3870. "social",
  3871. "wechat",
  3872. "weibo"
  3873. ],
  3874. "support": {
  3875. "issues": "https://github.com/overtrue/socialite/issues",
  3876. "source": "https://github.com/overtrue/socialite/tree/4.11.2"
  3877. },
  3878. "funding": [
  3879. {
  3880. "url": "https://github.com/overtrue",
  3881. "type": "github"
  3882. }
  3883. ],
  3884. "time": "2024-10-08T16:23:14+00:00"
  3885. },
  3886. {
  3887. "name": "phpoption/phpoption",
  3888. "version": "1.9.3",
  3889. "source": {
  3890. "type": "git",
  3891. "url": "https://github.com/schmittjoh/php-option.git",
  3892. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3893. },
  3894. "dist": {
  3895. "type": "zip",
  3896. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3897. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3898. "shasum": ""
  3899. },
  3900. "require": {
  3901. "php": "^7.2.5 || ^8.0"
  3902. },
  3903. "require-dev": {
  3904. "bamarni/composer-bin-plugin": "^1.8.2",
  3905. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3906. },
  3907. "type": "library",
  3908. "extra": {
  3909. "bamarni-bin": {
  3910. "bin-links": true,
  3911. "forward-command": false
  3912. },
  3913. "branch-alias": {
  3914. "dev-master": "1.9-dev"
  3915. }
  3916. },
  3917. "autoload": {
  3918. "psr-4": {
  3919. "PhpOption\\": "src/PhpOption/"
  3920. }
  3921. },
  3922. "notification-url": "https://packagist.org/downloads/",
  3923. "license": [
  3924. "Apache-2.0"
  3925. ],
  3926. "authors": [
  3927. {
  3928. "name": "Johannes M. Schmitt",
  3929. "email": "schmittjoh@gmail.com",
  3930. "homepage": "https://github.com/schmittjoh"
  3931. },
  3932. {
  3933. "name": "Graham Campbell",
  3934. "email": "hello@gjcampbell.co.uk",
  3935. "homepage": "https://github.com/GrahamCampbell"
  3936. }
  3937. ],
  3938. "description": "Option Type for PHP",
  3939. "keywords": [
  3940. "language",
  3941. "option",
  3942. "php",
  3943. "type"
  3944. ],
  3945. "support": {
  3946. "issues": "https://github.com/schmittjoh/php-option/issues",
  3947. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3948. },
  3949. "funding": [
  3950. {
  3951. "url": "https://github.com/GrahamCampbell",
  3952. "type": "github"
  3953. },
  3954. {
  3955. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3956. "type": "tidelift"
  3957. }
  3958. ],
  3959. "time": "2024-07-20T21:41:07+00:00"
  3960. },
  3961. {
  3962. "name": "psr/cache",
  3963. "version": "3.0.0",
  3964. "source": {
  3965. "type": "git",
  3966. "url": "https://github.com/php-fig/cache.git",
  3967. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3968. },
  3969. "dist": {
  3970. "type": "zip",
  3971. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3972. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3973. "shasum": ""
  3974. },
  3975. "require": {
  3976. "php": ">=8.0.0"
  3977. },
  3978. "type": "library",
  3979. "extra": {
  3980. "branch-alias": {
  3981. "dev-master": "1.0.x-dev"
  3982. }
  3983. },
  3984. "autoload": {
  3985. "psr-4": {
  3986. "Psr\\Cache\\": "src/"
  3987. }
  3988. },
  3989. "notification-url": "https://packagist.org/downloads/",
  3990. "license": [
  3991. "MIT"
  3992. ],
  3993. "authors": [
  3994. {
  3995. "name": "PHP-FIG",
  3996. "homepage": "https://www.php-fig.org/"
  3997. }
  3998. ],
  3999. "description": "Common interface for caching libraries",
  4000. "keywords": [
  4001. "cache",
  4002. "psr",
  4003. "psr-6"
  4004. ],
  4005. "support": {
  4006. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4007. },
  4008. "time": "2021-02-03T23:26:27+00:00"
  4009. },
  4010. {
  4011. "name": "psr/clock",
  4012. "version": "1.0.0",
  4013. "source": {
  4014. "type": "git",
  4015. "url": "https://github.com/php-fig/clock.git",
  4016. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4017. },
  4018. "dist": {
  4019. "type": "zip",
  4020. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4021. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4022. "shasum": ""
  4023. },
  4024. "require": {
  4025. "php": "^7.0 || ^8.0"
  4026. },
  4027. "type": "library",
  4028. "autoload": {
  4029. "psr-4": {
  4030. "Psr\\Clock\\": "src/"
  4031. }
  4032. },
  4033. "notification-url": "https://packagist.org/downloads/",
  4034. "license": [
  4035. "MIT"
  4036. ],
  4037. "authors": [
  4038. {
  4039. "name": "PHP-FIG",
  4040. "homepage": "https://www.php-fig.org/"
  4041. }
  4042. ],
  4043. "description": "Common interface for reading the clock.",
  4044. "homepage": "https://github.com/php-fig/clock",
  4045. "keywords": [
  4046. "clock",
  4047. "now",
  4048. "psr",
  4049. "psr-20",
  4050. "time"
  4051. ],
  4052. "support": {
  4053. "issues": "https://github.com/php-fig/clock/issues",
  4054. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4055. },
  4056. "time": "2022-11-25T14:36:26+00:00"
  4057. },
  4058. {
  4059. "name": "psr/container",
  4060. "version": "2.0.2",
  4061. "source": {
  4062. "type": "git",
  4063. "url": "https://github.com/php-fig/container.git",
  4064. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4065. },
  4066. "dist": {
  4067. "type": "zip",
  4068. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4069. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4070. "shasum": ""
  4071. },
  4072. "require": {
  4073. "php": ">=7.4.0"
  4074. },
  4075. "type": "library",
  4076. "extra": {
  4077. "branch-alias": {
  4078. "dev-master": "2.0.x-dev"
  4079. }
  4080. },
  4081. "autoload": {
  4082. "psr-4": {
  4083. "Psr\\Container\\": "src/"
  4084. }
  4085. },
  4086. "notification-url": "https://packagist.org/downloads/",
  4087. "license": [
  4088. "MIT"
  4089. ],
  4090. "authors": [
  4091. {
  4092. "name": "PHP-FIG",
  4093. "homepage": "https://www.php-fig.org/"
  4094. }
  4095. ],
  4096. "description": "Common Container Interface (PHP FIG PSR-11)",
  4097. "homepage": "https://github.com/php-fig/container",
  4098. "keywords": [
  4099. "PSR-11",
  4100. "container",
  4101. "container-interface",
  4102. "container-interop",
  4103. "psr"
  4104. ],
  4105. "support": {
  4106. "issues": "https://github.com/php-fig/container/issues",
  4107. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4108. },
  4109. "time": "2021-11-05T16:47:00+00:00"
  4110. },
  4111. {
  4112. "name": "psr/event-dispatcher",
  4113. "version": "1.0.0",
  4114. "source": {
  4115. "type": "git",
  4116. "url": "https://github.com/php-fig/event-dispatcher.git",
  4117. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4118. },
  4119. "dist": {
  4120. "type": "zip",
  4121. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4122. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4123. "shasum": ""
  4124. },
  4125. "require": {
  4126. "php": ">=7.2.0"
  4127. },
  4128. "type": "library",
  4129. "extra": {
  4130. "branch-alias": {
  4131. "dev-master": "1.0.x-dev"
  4132. }
  4133. },
  4134. "autoload": {
  4135. "psr-4": {
  4136. "Psr\\EventDispatcher\\": "src/"
  4137. }
  4138. },
  4139. "notification-url": "https://packagist.org/downloads/",
  4140. "license": [
  4141. "MIT"
  4142. ],
  4143. "authors": [
  4144. {
  4145. "name": "PHP-FIG",
  4146. "homepage": "http://www.php-fig.org/"
  4147. }
  4148. ],
  4149. "description": "Standard interfaces for event handling.",
  4150. "keywords": [
  4151. "events",
  4152. "psr",
  4153. "psr-14"
  4154. ],
  4155. "support": {
  4156. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4157. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4158. },
  4159. "time": "2019-01-08T18:20:26+00:00"
  4160. },
  4161. {
  4162. "name": "psr/http-client",
  4163. "version": "1.0.3",
  4164. "source": {
  4165. "type": "git",
  4166. "url": "https://github.com/php-fig/http-client.git",
  4167. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4168. },
  4169. "dist": {
  4170. "type": "zip",
  4171. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4172. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4173. "shasum": ""
  4174. },
  4175. "require": {
  4176. "php": "^7.0 || ^8.0",
  4177. "psr/http-message": "^1.0 || ^2.0"
  4178. },
  4179. "type": "library",
  4180. "extra": {
  4181. "branch-alias": {
  4182. "dev-master": "1.0.x-dev"
  4183. }
  4184. },
  4185. "autoload": {
  4186. "psr-4": {
  4187. "Psr\\Http\\Client\\": "src/"
  4188. }
  4189. },
  4190. "notification-url": "https://packagist.org/downloads/",
  4191. "license": [
  4192. "MIT"
  4193. ],
  4194. "authors": [
  4195. {
  4196. "name": "PHP-FIG",
  4197. "homepage": "https://www.php-fig.org/"
  4198. }
  4199. ],
  4200. "description": "Common interface for HTTP clients",
  4201. "homepage": "https://github.com/php-fig/http-client",
  4202. "keywords": [
  4203. "http",
  4204. "http-client",
  4205. "psr",
  4206. "psr-18"
  4207. ],
  4208. "support": {
  4209. "source": "https://github.com/php-fig/http-client"
  4210. },
  4211. "time": "2023-09-23T14:17:50+00:00"
  4212. },
  4213. {
  4214. "name": "psr/http-factory",
  4215. "version": "1.1.0",
  4216. "source": {
  4217. "type": "git",
  4218. "url": "https://github.com/php-fig/http-factory.git",
  4219. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  4220. },
  4221. "dist": {
  4222. "type": "zip",
  4223. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4224. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4225. "shasum": ""
  4226. },
  4227. "require": {
  4228. "php": ">=7.1",
  4229. "psr/http-message": "^1.0 || ^2.0"
  4230. },
  4231. "type": "library",
  4232. "extra": {
  4233. "branch-alias": {
  4234. "dev-master": "1.0.x-dev"
  4235. }
  4236. },
  4237. "autoload": {
  4238. "psr-4": {
  4239. "Psr\\Http\\Message\\": "src/"
  4240. }
  4241. },
  4242. "notification-url": "https://packagist.org/downloads/",
  4243. "license": [
  4244. "MIT"
  4245. ],
  4246. "authors": [
  4247. {
  4248. "name": "PHP-FIG",
  4249. "homepage": "https://www.php-fig.org/"
  4250. }
  4251. ],
  4252. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  4253. "keywords": [
  4254. "factory",
  4255. "http",
  4256. "message",
  4257. "psr",
  4258. "psr-17",
  4259. "psr-7",
  4260. "request",
  4261. "response"
  4262. ],
  4263. "support": {
  4264. "source": "https://github.com/php-fig/http-factory"
  4265. },
  4266. "time": "2024-04-15T12:06:14+00:00"
  4267. },
  4268. {
  4269. "name": "psr/http-message",
  4270. "version": "2.0",
  4271. "source": {
  4272. "type": "git",
  4273. "url": "https://github.com/php-fig/http-message.git",
  4274. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4275. },
  4276. "dist": {
  4277. "type": "zip",
  4278. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4279. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4280. "shasum": ""
  4281. },
  4282. "require": {
  4283. "php": "^7.2 || ^8.0"
  4284. },
  4285. "type": "library",
  4286. "extra": {
  4287. "branch-alias": {
  4288. "dev-master": "2.0.x-dev"
  4289. }
  4290. },
  4291. "autoload": {
  4292. "psr-4": {
  4293. "Psr\\Http\\Message\\": "src/"
  4294. }
  4295. },
  4296. "notification-url": "https://packagist.org/downloads/",
  4297. "license": [
  4298. "MIT"
  4299. ],
  4300. "authors": [
  4301. {
  4302. "name": "PHP-FIG",
  4303. "homepage": "https://www.php-fig.org/"
  4304. }
  4305. ],
  4306. "description": "Common interface for HTTP messages",
  4307. "homepage": "https://github.com/php-fig/http-message",
  4308. "keywords": [
  4309. "http",
  4310. "http-message",
  4311. "psr",
  4312. "psr-7",
  4313. "request",
  4314. "response"
  4315. ],
  4316. "support": {
  4317. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4318. },
  4319. "time": "2023-04-04T09:54:51+00:00"
  4320. },
  4321. {
  4322. "name": "psr/log",
  4323. "version": "3.0.2",
  4324. "source": {
  4325. "type": "git",
  4326. "url": "https://github.com/php-fig/log.git",
  4327. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  4328. },
  4329. "dist": {
  4330. "type": "zip",
  4331. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4332. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4333. "shasum": ""
  4334. },
  4335. "require": {
  4336. "php": ">=8.0.0"
  4337. },
  4338. "type": "library",
  4339. "extra": {
  4340. "branch-alias": {
  4341. "dev-master": "3.x-dev"
  4342. }
  4343. },
  4344. "autoload": {
  4345. "psr-4": {
  4346. "Psr\\Log\\": "src"
  4347. }
  4348. },
  4349. "notification-url": "https://packagist.org/downloads/",
  4350. "license": [
  4351. "MIT"
  4352. ],
  4353. "authors": [
  4354. {
  4355. "name": "PHP-FIG",
  4356. "homepage": "https://www.php-fig.org/"
  4357. }
  4358. ],
  4359. "description": "Common interface for logging libraries",
  4360. "homepage": "https://github.com/php-fig/log",
  4361. "keywords": [
  4362. "log",
  4363. "psr",
  4364. "psr-3"
  4365. ],
  4366. "support": {
  4367. "source": "https://github.com/php-fig/log/tree/3.0.2"
  4368. },
  4369. "time": "2024-09-11T13:17:53+00:00"
  4370. },
  4371. {
  4372. "name": "psr/simple-cache",
  4373. "version": "3.0.0",
  4374. "source": {
  4375. "type": "git",
  4376. "url": "https://github.com/php-fig/simple-cache.git",
  4377. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4378. },
  4379. "dist": {
  4380. "type": "zip",
  4381. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4382. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4383. "shasum": ""
  4384. },
  4385. "require": {
  4386. "php": ">=8.0.0"
  4387. },
  4388. "type": "library",
  4389. "extra": {
  4390. "branch-alias": {
  4391. "dev-master": "3.0.x-dev"
  4392. }
  4393. },
  4394. "autoload": {
  4395. "psr-4": {
  4396. "Psr\\SimpleCache\\": "src/"
  4397. }
  4398. },
  4399. "notification-url": "https://packagist.org/downloads/",
  4400. "license": [
  4401. "MIT"
  4402. ],
  4403. "authors": [
  4404. {
  4405. "name": "PHP-FIG",
  4406. "homepage": "https://www.php-fig.org/"
  4407. }
  4408. ],
  4409. "description": "Common interfaces for simple caching",
  4410. "keywords": [
  4411. "cache",
  4412. "caching",
  4413. "psr",
  4414. "psr-16",
  4415. "simple-cache"
  4416. ],
  4417. "support": {
  4418. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4419. },
  4420. "time": "2021-10-29T13:26:27+00:00"
  4421. },
  4422. {
  4423. "name": "psy/psysh",
  4424. "version": "v0.12.4",
  4425. "source": {
  4426. "type": "git",
  4427. "url": "https://github.com/bobthecow/psysh.git",
  4428. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  4429. },
  4430. "dist": {
  4431. "type": "zip",
  4432. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  4433. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  4434. "shasum": ""
  4435. },
  4436. "require": {
  4437. "ext-json": "*",
  4438. "ext-tokenizer": "*",
  4439. "nikic/php-parser": "^5.0 || ^4.0",
  4440. "php": "^8.0 || ^7.4",
  4441. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4442. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4443. },
  4444. "conflict": {
  4445. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4446. },
  4447. "require-dev": {
  4448. "bamarni/composer-bin-plugin": "^1.2"
  4449. },
  4450. "suggest": {
  4451. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4452. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4453. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4454. },
  4455. "bin": [
  4456. "bin/psysh"
  4457. ],
  4458. "type": "library",
  4459. "extra": {
  4460. "branch-alias": {
  4461. "dev-main": "0.12.x-dev"
  4462. },
  4463. "bamarni-bin": {
  4464. "bin-links": false,
  4465. "forward-command": false
  4466. }
  4467. },
  4468. "autoload": {
  4469. "files": [
  4470. "src/functions.php"
  4471. ],
  4472. "psr-4": {
  4473. "Psy\\": "src/"
  4474. }
  4475. },
  4476. "notification-url": "https://packagist.org/downloads/",
  4477. "license": [
  4478. "MIT"
  4479. ],
  4480. "authors": [
  4481. {
  4482. "name": "Justin Hileman",
  4483. "email": "justin@justinhileman.info",
  4484. "homepage": "http://justinhileman.com"
  4485. }
  4486. ],
  4487. "description": "An interactive shell for modern PHP.",
  4488. "homepage": "http://psysh.org",
  4489. "keywords": [
  4490. "REPL",
  4491. "console",
  4492. "interactive",
  4493. "shell"
  4494. ],
  4495. "support": {
  4496. "issues": "https://github.com/bobthecow/psysh/issues",
  4497. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  4498. },
  4499. "time": "2024-06-10T01:18:23+00:00"
  4500. },
  4501. {
  4502. "name": "ralouphie/getallheaders",
  4503. "version": "3.0.3",
  4504. "source": {
  4505. "type": "git",
  4506. "url": "https://github.com/ralouphie/getallheaders.git",
  4507. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4508. },
  4509. "dist": {
  4510. "type": "zip",
  4511. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4512. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4513. "shasum": ""
  4514. },
  4515. "require": {
  4516. "php": ">=5.6"
  4517. },
  4518. "require-dev": {
  4519. "php-coveralls/php-coveralls": "^2.1",
  4520. "phpunit/phpunit": "^5 || ^6.5"
  4521. },
  4522. "type": "library",
  4523. "autoload": {
  4524. "files": [
  4525. "src/getallheaders.php"
  4526. ]
  4527. },
  4528. "notification-url": "https://packagist.org/downloads/",
  4529. "license": [
  4530. "MIT"
  4531. ],
  4532. "authors": [
  4533. {
  4534. "name": "Ralph Khattar",
  4535. "email": "ralph.khattar@gmail.com"
  4536. }
  4537. ],
  4538. "description": "A polyfill for getallheaders.",
  4539. "support": {
  4540. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4541. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4542. },
  4543. "time": "2019-03-08T08:55:37+00:00"
  4544. },
  4545. {
  4546. "name": "ramsey/collection",
  4547. "version": "2.0.0",
  4548. "source": {
  4549. "type": "git",
  4550. "url": "https://github.com/ramsey/collection.git",
  4551. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4552. },
  4553. "dist": {
  4554. "type": "zip",
  4555. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4556. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4557. "shasum": ""
  4558. },
  4559. "require": {
  4560. "php": "^8.1"
  4561. },
  4562. "require-dev": {
  4563. "captainhook/plugin-composer": "^5.3",
  4564. "ergebnis/composer-normalize": "^2.28.3",
  4565. "fakerphp/faker": "^1.21",
  4566. "hamcrest/hamcrest-php": "^2.0",
  4567. "jangregor/phpstan-prophecy": "^1.0",
  4568. "mockery/mockery": "^1.5",
  4569. "php-parallel-lint/php-console-highlighter": "^1.0",
  4570. "php-parallel-lint/php-parallel-lint": "^1.3",
  4571. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4572. "phpspec/prophecy-phpunit": "^2.0",
  4573. "phpstan/extension-installer": "^1.2",
  4574. "phpstan/phpstan": "^1.9",
  4575. "phpstan/phpstan-mockery": "^1.1",
  4576. "phpstan/phpstan-phpunit": "^1.3",
  4577. "phpunit/phpunit": "^9.5",
  4578. "psalm/plugin-mockery": "^1.1",
  4579. "psalm/plugin-phpunit": "^0.18.4",
  4580. "ramsey/coding-standard": "^2.0.3",
  4581. "ramsey/conventional-commits": "^1.3",
  4582. "vimeo/psalm": "^5.4"
  4583. },
  4584. "type": "library",
  4585. "extra": {
  4586. "captainhook": {
  4587. "force-install": true
  4588. },
  4589. "ramsey/conventional-commits": {
  4590. "configFile": "conventional-commits.json"
  4591. }
  4592. },
  4593. "autoload": {
  4594. "psr-4": {
  4595. "Ramsey\\Collection\\": "src/"
  4596. }
  4597. },
  4598. "notification-url": "https://packagist.org/downloads/",
  4599. "license": [
  4600. "MIT"
  4601. ],
  4602. "authors": [
  4603. {
  4604. "name": "Ben Ramsey",
  4605. "email": "ben@benramsey.com",
  4606. "homepage": "https://benramsey.com"
  4607. }
  4608. ],
  4609. "description": "A PHP library for representing and manipulating collections.",
  4610. "keywords": [
  4611. "array",
  4612. "collection",
  4613. "hash",
  4614. "map",
  4615. "queue",
  4616. "set"
  4617. ],
  4618. "support": {
  4619. "issues": "https://github.com/ramsey/collection/issues",
  4620. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4621. },
  4622. "funding": [
  4623. {
  4624. "url": "https://github.com/ramsey",
  4625. "type": "github"
  4626. },
  4627. {
  4628. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4629. "type": "tidelift"
  4630. }
  4631. ],
  4632. "time": "2022-12-31T21:50:55+00:00"
  4633. },
  4634. {
  4635. "name": "ramsey/uuid",
  4636. "version": "4.7.6",
  4637. "source": {
  4638. "type": "git",
  4639. "url": "https://github.com/ramsey/uuid.git",
  4640. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  4641. },
  4642. "dist": {
  4643. "type": "zip",
  4644. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  4645. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  4646. "shasum": ""
  4647. },
  4648. "require": {
  4649. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  4650. "ext-json": "*",
  4651. "php": "^8.0",
  4652. "ramsey/collection": "^1.2 || ^2.0"
  4653. },
  4654. "replace": {
  4655. "rhumsaa/uuid": "self.version"
  4656. },
  4657. "require-dev": {
  4658. "captainhook/captainhook": "^5.10",
  4659. "captainhook/plugin-composer": "^5.3",
  4660. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4661. "doctrine/annotations": "^1.8",
  4662. "ergebnis/composer-normalize": "^2.15",
  4663. "mockery/mockery": "^1.3",
  4664. "paragonie/random-lib": "^2",
  4665. "php-mock/php-mock": "^2.2",
  4666. "php-mock/php-mock-mockery": "^1.3",
  4667. "php-parallel-lint/php-parallel-lint": "^1.1",
  4668. "phpbench/phpbench": "^1.0",
  4669. "phpstan/extension-installer": "^1.1",
  4670. "phpstan/phpstan": "^1.8",
  4671. "phpstan/phpstan-mockery": "^1.1",
  4672. "phpstan/phpstan-phpunit": "^1.1",
  4673. "phpunit/phpunit": "^8.5 || ^9",
  4674. "ramsey/composer-repl": "^1.4",
  4675. "slevomat/coding-standard": "^8.4",
  4676. "squizlabs/php_codesniffer": "^3.5",
  4677. "vimeo/psalm": "^4.9"
  4678. },
  4679. "suggest": {
  4680. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4681. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4682. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4683. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4684. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4685. },
  4686. "type": "library",
  4687. "extra": {
  4688. "captainhook": {
  4689. "force-install": true
  4690. }
  4691. },
  4692. "autoload": {
  4693. "files": [
  4694. "src/functions.php"
  4695. ],
  4696. "psr-4": {
  4697. "Ramsey\\Uuid\\": "src/"
  4698. }
  4699. },
  4700. "notification-url": "https://packagist.org/downloads/",
  4701. "license": [
  4702. "MIT"
  4703. ],
  4704. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4705. "keywords": [
  4706. "guid",
  4707. "identifier",
  4708. "uuid"
  4709. ],
  4710. "support": {
  4711. "issues": "https://github.com/ramsey/uuid/issues",
  4712. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  4713. },
  4714. "funding": [
  4715. {
  4716. "url": "https://github.com/ramsey",
  4717. "type": "github"
  4718. },
  4719. {
  4720. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4721. "type": "tidelift"
  4722. }
  4723. ],
  4724. "time": "2024-04-27T21:32:50+00:00"
  4725. },
  4726. {
  4727. "name": "rap2hpoutre/laravel-log-viewer",
  4728. "version": "v2.4.0",
  4729. "source": {
  4730. "type": "git",
  4731. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4732. "reference": "49c52ae197b3d4f7f9e43d328628edc4bc529afa"
  4733. },
  4734. "dist": {
  4735. "type": "zip",
  4736. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/49c52ae197b3d4f7f9e43d328628edc4bc529afa",
  4737. "reference": "49c52ae197b3d4f7f9e43d328628edc4bc529afa",
  4738. "shasum": ""
  4739. },
  4740. "require": {
  4741. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  4742. "php": "^7.2|^8.0"
  4743. },
  4744. "require-dev": {
  4745. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  4746. "phpunit/phpunit": "^7||^8.4|^9.3.3|^10.1"
  4747. },
  4748. "type": "laravel-package",
  4749. "extra": {
  4750. "laravel": {
  4751. "providers": [
  4752. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4753. ]
  4754. }
  4755. },
  4756. "autoload": {
  4757. "psr-0": {
  4758. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4759. },
  4760. "classmap": [
  4761. "src/controllers"
  4762. ]
  4763. },
  4764. "notification-url": "https://packagist.org/downloads/",
  4765. "license": [
  4766. "MIT"
  4767. ],
  4768. "authors": [
  4769. {
  4770. "name": "rap2hpoutre",
  4771. "email": "raphaelht@gmail.com"
  4772. }
  4773. ],
  4774. "description": "A Laravel log reader",
  4775. "keywords": [
  4776. "laravel",
  4777. "log",
  4778. "log-reader",
  4779. "log-viewer",
  4780. "logging",
  4781. "lumen"
  4782. ],
  4783. "support": {
  4784. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4785. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/v2.4.0"
  4786. },
  4787. "time": "2024-03-20T08:49:53+00:00"
  4788. },
  4789. {
  4790. "name": "shalvah/clara",
  4791. "version": "3.2.0",
  4792. "source": {
  4793. "type": "git",
  4794. "url": "https://github.com/shalvah/clara.git",
  4795. "reference": "cdbb5737cbdd101756d97dd2279a979a1af7710b"
  4796. },
  4797. "dist": {
  4798. "type": "zip",
  4799. "url": "https://api.github.com/repos/shalvah/clara/zipball/cdbb5737cbdd101756d97dd2279a979a1af7710b",
  4800. "reference": "cdbb5737cbdd101756d97dd2279a979a1af7710b",
  4801. "shasum": ""
  4802. },
  4803. "require": {
  4804. "php": ">=7.4",
  4805. "symfony/console": "^4.0|^5.0|^6.0|^7.0"
  4806. },
  4807. "require-dev": {
  4808. "eloquent/phony-phpunit": "^7.0",
  4809. "phpunit/phpunit": "^9.1"
  4810. },
  4811. "type": "library",
  4812. "autoload": {
  4813. "files": [
  4814. "helpers.php"
  4815. ],
  4816. "psr-4": {
  4817. "Shalvah\\Clara\\": "src/"
  4818. }
  4819. },
  4820. "notification-url": "https://packagist.org/downloads/",
  4821. "license": [
  4822. "MIT"
  4823. ],
  4824. "description": "🔊 Simple, pretty, testable console output for CLI apps.",
  4825. "keywords": [
  4826. "cli",
  4827. "log",
  4828. "logging"
  4829. ],
  4830. "support": {
  4831. "issues": "https://github.com/shalvah/clara/issues",
  4832. "source": "https://github.com/shalvah/clara/tree/3.2.0"
  4833. },
  4834. "time": "2024-02-27T20:30:59+00:00"
  4835. },
  4836. {
  4837. "name": "shalvah/upgrader",
  4838. "version": "0.6.0",
  4839. "source": {
  4840. "type": "git",
  4841. "url": "https://github.com/shalvah/upgrader.git",
  4842. "reference": "d95ed17fe9f5e1ee7d47ad835595f1af080a867f"
  4843. },
  4844. "dist": {
  4845. "type": "zip",
  4846. "url": "https://api.github.com/repos/shalvah/upgrader/zipball/d95ed17fe9f5e1ee7d47ad835595f1af080a867f",
  4847. "reference": "d95ed17fe9f5e1ee7d47ad835595f1af080a867f",
  4848. "shasum": ""
  4849. },
  4850. "require": {
  4851. "illuminate/support": ">=8.0",
  4852. "nikic/php-parser": "^5.0",
  4853. "php": ">=8.0"
  4854. },
  4855. "require-dev": {
  4856. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  4857. "pestphp/pest": "^1.21",
  4858. "phpstan/phpstan": "^1.0",
  4859. "spatie/ray": "^1.33"
  4860. },
  4861. "type": "library",
  4862. "autoload": {
  4863. "psr-4": {
  4864. "Shalvah\\Upgrader\\": "src/"
  4865. }
  4866. },
  4867. "notification-url": "https://packagist.org/downloads/",
  4868. "license": [
  4869. "MIT"
  4870. ],
  4871. "authors": [
  4872. {
  4873. "name": "Shalvah",
  4874. "email": "hello@shalvah.me"
  4875. }
  4876. ],
  4877. "description": "Create automatic upgrades for your package.",
  4878. "homepage": "http://github.com/shalvah/upgrader",
  4879. "keywords": [
  4880. "upgrade"
  4881. ],
  4882. "support": {
  4883. "issues": "https://github.com/shalvah/upgrader/issues",
  4884. "source": "https://github.com/shalvah/upgrader/tree/0.6.0"
  4885. },
  4886. "funding": [
  4887. {
  4888. "url": "https://patreon.com/shalvah",
  4889. "type": "patreon"
  4890. }
  4891. ],
  4892. "time": "2024-02-20T11:51:46+00:00"
  4893. },
  4894. {
  4895. "name": "simplesoftwareio/simple-qrcode",
  4896. "version": "4.2.0",
  4897. "source": {
  4898. "type": "git",
  4899. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  4900. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537"
  4901. },
  4902. "dist": {
  4903. "type": "zip",
  4904. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/916db7948ca6772d54bb617259c768c9cdc8d537",
  4905. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537",
  4906. "shasum": ""
  4907. },
  4908. "require": {
  4909. "bacon/bacon-qr-code": "^2.0",
  4910. "ext-gd": "*",
  4911. "php": ">=7.2|^8.0"
  4912. },
  4913. "require-dev": {
  4914. "mockery/mockery": "~1",
  4915. "phpunit/phpunit": "~9"
  4916. },
  4917. "suggest": {
  4918. "ext-imagick": "Allows the generation of PNG QrCodes.",
  4919. "illuminate/support": "Allows for use within Laravel."
  4920. },
  4921. "type": "library",
  4922. "extra": {
  4923. "laravel": {
  4924. "providers": [
  4925. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  4926. ],
  4927. "aliases": {
  4928. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  4929. }
  4930. }
  4931. },
  4932. "autoload": {
  4933. "psr-4": {
  4934. "SimpleSoftwareIO\\QrCode\\": "src"
  4935. }
  4936. },
  4937. "notification-url": "https://packagist.org/downloads/",
  4938. "license": [
  4939. "MIT"
  4940. ],
  4941. "authors": [
  4942. {
  4943. "name": "Simple Software LLC",
  4944. "email": "support@simplesoftware.io"
  4945. }
  4946. ],
  4947. "description": "Simple QrCode is a QR code generator made for Laravel.",
  4948. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  4949. "keywords": [
  4950. "Simple",
  4951. "generator",
  4952. "laravel",
  4953. "qrcode",
  4954. "wrapper"
  4955. ],
  4956. "support": {
  4957. "issues": "https://github.com/SimpleSoftwareIO/simple-qrcode/issues",
  4958. "source": "https://github.com/SimpleSoftwareIO/simple-qrcode/tree/4.2.0"
  4959. },
  4960. "time": "2021-02-08T20:43:55+00:00"
  4961. },
  4962. {
  4963. "name": "slowlyo/laravel-support",
  4964. "version": "v0.0.6",
  4965. "source": {
  4966. "type": "git",
  4967. "url": "https://github.com/slowlyo/laravel-support.git",
  4968. "reference": "71cd69f7ffd6eec829afb970733b54c8d860b29f"
  4969. },
  4970. "dist": {
  4971. "type": "zip",
  4972. "url": "https://api.github.com/repos/slowlyo/laravel-support/zipball/71cd69f7ffd6eec829afb970733b54c8d860b29f",
  4973. "reference": "71cd69f7ffd6eec829afb970733b54c8d860b29f",
  4974. "shasum": ""
  4975. },
  4976. "require": {
  4977. "ext-bcmath": "*",
  4978. "ext-json": "*",
  4979. "laravel/framework": ">=8",
  4980. "php": ">=7.4.0"
  4981. },
  4982. "type": "library",
  4983. "extra": {
  4984. "laravel": {
  4985. "providers": [
  4986. "Slowlyo\\Support\\SupportServiceProvider"
  4987. ]
  4988. }
  4989. },
  4990. "autoload": {
  4991. "files": [
  4992. "./src/functions.php"
  4993. ],
  4994. "psr-4": {
  4995. "Slowlyo\\Support\\": "src/"
  4996. }
  4997. },
  4998. "notification-url": "https://packagist.org/downloads/",
  4999. "license": [
  5000. "MIT"
  5001. ],
  5002. "authors": [
  5003. {
  5004. "name": "Slowlyo",
  5005. "email": "slowlyo_email@qq.com"
  5006. }
  5007. ],
  5008. "description": "php/laravel部分代码封装",
  5009. "support": {
  5010. "issues": "https://github.com/slowlyo/laravel-support/issues",
  5011. "source": "https://github.com/slowlyo/laravel-support/tree/v0.0.6"
  5012. },
  5013. "time": "2024-11-21T07:33:06+00:00"
  5014. },
  5015. {
  5016. "name": "slowlyo/owl-admin",
  5017. "version": "v4.0.6",
  5018. "source": {
  5019. "type": "git",
  5020. "url": "https://github.com/slowlyo/owl-admin.git",
  5021. "reference": "f9e20279301ac9255b54e6398397662ecb379460"
  5022. },
  5023. "dist": {
  5024. "type": "zip",
  5025. "url": "https://api.github.com/repos/slowlyo/owl-admin/zipball/f9e20279301ac9255b54e6398397662ecb379460",
  5026. "reference": "f9e20279301ac9255b54e6398397662ecb379460",
  5027. "shasum": ""
  5028. },
  5029. "require": {
  5030. "ext-gd": "*",
  5031. "ext-zip": "*",
  5032. "illuminate/support": ">=11",
  5033. "php": ">=8.2",
  5034. "slowlyo/laravel-support": "*"
  5035. },
  5036. "type": "library",
  5037. "extra": {
  5038. "laravel": {
  5039. "providers": [
  5040. "Slowlyo\\OwlAdmin\\AdminServiceProvider"
  5041. ],
  5042. "aliases": {
  5043. "OwlAdmin": "Slowlyo\\OwlAdmin\\Facades\\OwlAdmin"
  5044. }
  5045. }
  5046. },
  5047. "autoload": {
  5048. "files": [
  5049. "src/Support/helpers.php"
  5050. ],
  5051. "psr-4": {
  5052. "Slowlyo\\OwlAdmin\\": "src/"
  5053. }
  5054. },
  5055. "notification-url": "https://packagist.org/downloads/",
  5056. "license": [
  5057. "MIT"
  5058. ],
  5059. "authors": [
  5060. {
  5061. "name": "slowlyo",
  5062. "email": "slowlyo_email@qq.com",
  5063. "homepage": "https://github.com/slowlyo"
  5064. }
  5065. ],
  5066. "description": "基于 laravel、amis 开发的后台框架~",
  5067. "homepage": "https://github.com/slowlyo/owl-admin",
  5068. "keywords": [
  5069. "admin",
  5070. "amis",
  5071. "laravel",
  5072. "owl-admin"
  5073. ],
  5074. "support": {
  5075. "email": "slowlyo_email@qq.com",
  5076. "forum": "https://github.com/orgs/owl-admin/discussions",
  5077. "issues": "https://github.com/Slowlyo/owl-admin/issues",
  5078. "source": "https://github.com/slowlyo/owl-admin/tree/v4.0.6",
  5079. "wiki": "https://doc.owladmin.com/"
  5080. },
  5081. "time": "2024-11-16T05:34:20+00:00"
  5082. },
  5083. {
  5084. "name": "slowlyo/owl-amis-json-parse",
  5085. "version": "v1.1.4",
  5086. "source": {
  5087. "type": "git",
  5088. "url": "https://github.com/Slowlyo/owl-amis-json-parse.git",
  5089. "reference": "14d1ba8b1abca2e1b716ce4ef21b0f2bb8eba2b5"
  5090. },
  5091. "dist": {
  5092. "type": "zip",
  5093. "url": "https://api.github.com/repos/Slowlyo/owl-amis-json-parse/zipball/14d1ba8b1abca2e1b716ce4ef21b0f2bb8eba2b5",
  5094. "reference": "14d1ba8b1abca2e1b716ce4ef21b0f2bb8eba2b5",
  5095. "shasum": "",
  5096. "mirrors": [
  5097. {
  5098. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5099. "preferred": true
  5100. }
  5101. ]
  5102. },
  5103. "require": {
  5104. "php": ">=8.0",
  5105. "slowlyo/owl-admin": "*"
  5106. },
  5107. "type": "library",
  5108. "extra": {
  5109. "owl-admin": "Slowlyo\\OwlAmisJsonParse\\OwlAmisJsonParseServiceProvider",
  5110. "laravel": {
  5111. "providers": [
  5112. "Slowlyo\\OwlAmisJsonParse\\OwlAmisJsonParseServiceProvider"
  5113. ]
  5114. }
  5115. },
  5116. "autoload": {
  5117. "psr-4": {
  5118. "Slowlyo\\OwlAmisJsonParse\\": "src/"
  5119. }
  5120. },
  5121. "notification-url": "https://packagist.org/downloads/",
  5122. "license": [
  5123. "MIT"
  5124. ],
  5125. "authors": [
  5126. {
  5127. "name": "slowlyo",
  5128. "email": "slowlyo_email@qq.com"
  5129. }
  5130. ],
  5131. "description": "将 amis 的 json 结构转换为 OwlAdmin 代码",
  5132. "homepage": "https://gitee.com/slowlyo/slow-amis-json-parse",
  5133. "keywords": [
  5134. "amis",
  5135. "extension",
  5136. "json-parse",
  5137. "owl-admin"
  5138. ],
  5139. "support": {
  5140. "issues": "https://github.com/Slowlyo/owl-amis-json-parse/issues",
  5141. "source": "https://github.com/Slowlyo/owl-amis-json-parse/tree/v1.1.4"
  5142. },
  5143. "time": "2023-04-27T01:57:14+00:00"
  5144. },
  5145. {
  5146. "name": "slowlyo/owl-dict",
  5147. "version": "v1.3.2",
  5148. "source": {
  5149. "type": "git",
  5150. "url": "https://github.com/owl-admin/dict.git",
  5151. "reference": "8754d9258a11175ec17f30e698b6489abade11ef"
  5152. },
  5153. "dist": {
  5154. "type": "zip",
  5155. "url": "https://api.github.com/repos/owl-admin/dict/zipball/8754d9258a11175ec17f30e698b6489abade11ef",
  5156. "reference": "8754d9258a11175ec17f30e698b6489abade11ef",
  5157. "shasum": ""
  5158. },
  5159. "require": {
  5160. "php": ">=8.0",
  5161. "slowlyo/owl-admin": "*"
  5162. },
  5163. "type": "library",
  5164. "extra": {
  5165. "owl-admin": "Slowlyo\\OwlDict\\OwlDictServiceProvider",
  5166. "laravel": {
  5167. "providers": [
  5168. "Slowlyo\\OwlDict\\OwlDictServiceProvider"
  5169. ]
  5170. }
  5171. },
  5172. "autoload": {
  5173. "files": [
  5174. "src/helpers.php"
  5175. ],
  5176. "psr-4": {
  5177. "Slowlyo\\OwlDict\\": "src/"
  5178. }
  5179. },
  5180. "notification-url": "https://packagist.org/downloads/",
  5181. "license": [
  5182. "MIT"
  5183. ],
  5184. "authors": [
  5185. {
  5186. "name": "slowlyo",
  5187. "email": "slowlyo_email@qq.com"
  5188. }
  5189. ],
  5190. "description": "OwlAdmin 数据字典扩展",
  5191. "homepage": "https://gitee.com/slowlyo/owl-dict",
  5192. "keywords": [
  5193. "Dict",
  5194. "extension",
  5195. "owl-admin"
  5196. ],
  5197. "support": {
  5198. "issues": "https://github.com/owl-admin/dict/issues",
  5199. "source": "https://github.com/owl-admin/dict/tree/v1.3.2"
  5200. },
  5201. "time": "2024-07-08T03:05:14+00:00"
  5202. },
  5203. {
  5204. "name": "slowlyo/owl-icon-cache",
  5205. "version": "v0.1.0",
  5206. "source": {
  5207. "type": "git",
  5208. "url": "https://github.com/slowlyo/owl-icon-cache.git",
  5209. "reference": "696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28"
  5210. },
  5211. "dist": {
  5212. "type": "zip",
  5213. "url": "https://api.github.com/repos/slowlyo/owl-icon-cache/zipball/696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28",
  5214. "reference": "696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28",
  5215. "shasum": ""
  5216. },
  5217. "require": {
  5218. "iconify/json": "*",
  5219. "php": ">=8.0",
  5220. "slowlyo/owl-admin": "*"
  5221. },
  5222. "type": "library",
  5223. "extra": {
  5224. "owl-admin": "Slowlyo\\OwlIconCache\\OwlIconCacheServiceProvider",
  5225. "laravel": {
  5226. "providers": [
  5227. "Slowlyo\\OwlIconCache\\OwlIconCacheServiceProvider"
  5228. ]
  5229. }
  5230. },
  5231. "autoload": {
  5232. "psr-4": {
  5233. "Slowlyo\\OwlIconCache\\": "src/"
  5234. }
  5235. },
  5236. "notification-url": "https://packagist.org/downloads/",
  5237. "license": [
  5238. "MIT"
  5239. ],
  5240. "authors": [
  5241. {
  5242. "name": "slowlyo",
  5243. "email": "slowlyo_email@qq.com"
  5244. }
  5245. ],
  5246. "description": "让 iconify 图标可以离线使用",
  5247. "homepage": "https://github.com/slowlyo/owl-icon-cache",
  5248. "keywords": [
  5249. "extension",
  5250. "icon",
  5251. "owl-admin"
  5252. ],
  5253. "support": {
  5254. "issues": "https://github.com/slowlyo/owl-icon-cache/issues",
  5255. "source": "https://github.com/slowlyo/owl-icon-cache/tree/v0.1.0"
  5256. },
  5257. "time": "2024-05-01T08:30:19+00:00"
  5258. },
  5259. {
  5260. "name": "slowlyo/owl-log-viewer",
  5261. "version": "1.0.0",
  5262. "source": {
  5263. "type": "git",
  5264. "url": "https://github.com/owl-admin/log-viewer.git",
  5265. "reference": "d249c011dd7febe2f7be5bf800b42ed325b02d40"
  5266. },
  5267. "dist": {
  5268. "type": "zip",
  5269. "url": "https://api.github.com/repos/owl-admin/log-viewer/zipball/d249c011dd7febe2f7be5bf800b42ed325b02d40",
  5270. "reference": "d249c011dd7febe2f7be5bf800b42ed325b02d40",
  5271. "shasum": ""
  5272. },
  5273. "require": {
  5274. "php": ">=8.0",
  5275. "slowlyo/owl-admin": "*"
  5276. },
  5277. "type": "library",
  5278. "extra": {
  5279. "owl-admin": "Slowlyo\\OwlLogViewer\\OwlLogViewerServiceProvider",
  5280. "laravel": {
  5281. "providers": [
  5282. "Slowlyo\\OwlLogViewer\\OwlLogViewerServiceProvider"
  5283. ]
  5284. }
  5285. },
  5286. "autoload": {
  5287. "psr-4": {
  5288. "Slowlyo\\OwlLogViewer\\": "src/"
  5289. }
  5290. },
  5291. "notification-url": "https://packagist.org/downloads/",
  5292. "license": [
  5293. "MIT"
  5294. ],
  5295. "authors": [
  5296. {
  5297. "name": "slowlyo",
  5298. "email": "slowlyo_email@qq.com"
  5299. }
  5300. ],
  5301. "description": "更方便的查看laravel日志",
  5302. "homepage": "https://github.com/slowlyo/owl-log-viewer",
  5303. "keywords": [
  5304. "extension",
  5305. "owl-admin"
  5306. ],
  5307. "support": {
  5308. "issues": "https://github.com/owl-admin/log-viewer/issues",
  5309. "source": "https://github.com/owl-admin/log-viewer/tree/v1.0.0"
  5310. },
  5311. "time": "2024-03-10T13:57:59+00:00"
  5312. },
  5313. {
  5314. "name": "slowlyo/owl-module-notice",
  5315. "version": "v1.1.3",
  5316. "source": {
  5317. "type": "git",
  5318. "url": "https://gitee.com/slowlyo/owl-module-notice",
  5319. "reference": "8410e77a08cee435055f8d8cf6f57cfac5b86e3f"
  5320. },
  5321. "require": {
  5322. "php": ">=8.0",
  5323. "slowlyo/owl-admin": "*"
  5324. },
  5325. "type": "library",
  5326. "extra": {
  5327. "owl-admin": "Slowlyo\\Notice\\NoticeServiceProvider",
  5328. "laravel": {
  5329. "providers": [
  5330. "Slowlyo\\Notice\\NoticeServiceProvider"
  5331. ]
  5332. }
  5333. },
  5334. "autoload": {
  5335. "psr-4": {
  5336. "Slowlyo\\Notice\\": "src/"
  5337. }
  5338. },
  5339. "notification-url": "https://packagist.org/downloads/",
  5340. "license": [
  5341. "MIT"
  5342. ],
  5343. "authors": [
  5344. {
  5345. "name": "slowlyo",
  5346. "email": "slowlyo_email@qq.com"
  5347. }
  5348. ],
  5349. "description": "OwlAdmin 扩展: 后台功能-通知公告管理",
  5350. "homepage": "https://gitee.com/slowlyo/notice",
  5351. "keywords": [
  5352. "extension",
  5353. "notice",
  5354. "owl-admin"
  5355. ],
  5356. "time": "2023-04-10T06:25:51+00:00"
  5357. },
  5358. {
  5359. "name": "slowlyo/owl-operation-log",
  5360. "version": "v0.2.3",
  5361. "source": {
  5362. "type": "git",
  5363. "url": "https://github.com/slowlyo/owl-operation-log.git",
  5364. "reference": "fe03f85e940e069ebc024f8c257da2c44939c78d"
  5365. },
  5366. "dist": {
  5367. "type": "zip",
  5368. "url": "https://api.github.com/repos/slowlyo/owl-operation-log/zipball/fe03f85e940e069ebc024f8c257da2c44939c78d",
  5369. "reference": "fe03f85e940e069ebc024f8c257da2c44939c78d",
  5370. "shasum": ""
  5371. },
  5372. "require": {
  5373. "php": ">=8.0",
  5374. "slowlyo/owl-admin": "*"
  5375. },
  5376. "type": "library",
  5377. "extra": {
  5378. "owl-admin": "Slowlyo\\OwlOperationLog\\OwlOperationLogServiceProvider",
  5379. "laravel": {
  5380. "providers": [
  5381. "Slowlyo\\OwlOperationLog\\OwlOperationLogServiceProvider"
  5382. ]
  5383. }
  5384. },
  5385. "autoload": {
  5386. "psr-4": {
  5387. "Slowlyo\\OwlOperationLog\\": "src/"
  5388. }
  5389. },
  5390. "notification-url": "https://packagist.org/downloads/",
  5391. "license": [
  5392. "MIT"
  5393. ],
  5394. "authors": [
  5395. {
  5396. "name": "slowlyo",
  5397. "email": "slowlyo_email@qq.com"
  5398. }
  5399. ],
  5400. "description": "OwlAdmin 扩展包,用于记录用户操作日志",
  5401. "homepage": "https://github.com/slowlyo/owl-operation-log",
  5402. "keywords": [
  5403. "extension",
  5404. "owl-admin"
  5405. ],
  5406. "support": {
  5407. "issues": "https://github.com/slowlyo/owl-operation-log/issues",
  5408. "source": "https://github.com/slowlyo/owl-operation-log/tree/v0.2.3"
  5409. },
  5410. "time": "2024-03-28T06:49:24+00:00"
  5411. },
  5412. {
  5413. "name": "slowlyo/owl-system-backup",
  5414. "version": "v0.3.1",
  5415. "source": {
  5416. "type": "git",
  5417. "url": "https://github.com/owl-admin/system-backup.git",
  5418. "reference": "3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3"
  5419. },
  5420. "dist": {
  5421. "type": "zip",
  5422. "url": "https://api.github.com/repos/owl-admin/system-backup/zipball/3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3",
  5423. "reference": "3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3",
  5424. "shasum": ""
  5425. },
  5426. "require": {
  5427. "php": ">=8.0",
  5428. "slowlyo/owl-admin": "*"
  5429. },
  5430. "type": "library",
  5431. "extra": {
  5432. "owl-admin": "Slowlyo\\OwlSystemBackup\\OwlSystemBackupServiceProvider",
  5433. "laravel": {
  5434. "providers": [
  5435. "Slowlyo\\OwlSystemBackup\\OwlSystemBackupServiceProvider"
  5436. ]
  5437. }
  5438. },
  5439. "autoload": {
  5440. "psr-4": {
  5441. "Slowlyo\\OwlSystemBackup\\": "src/"
  5442. }
  5443. },
  5444. "notification-url": "https://packagist.org/downloads/",
  5445. "license": [
  5446. "MIT"
  5447. ],
  5448. "authors": [
  5449. {
  5450. "name": "slowlyo",
  5451. "email": "slowlyo_email@qq.com"
  5452. }
  5453. ],
  5454. "description": "Owl Admin 系统备份扩展",
  5455. "homepage": "https://github.com/slowlyo/owl-system-backup",
  5456. "keywords": [
  5457. "extension",
  5458. "owl-admin"
  5459. ],
  5460. "support": {
  5461. "issues": "https://github.com/owl-admin/system-backup/issues",
  5462. "source": "https://github.com/owl-admin/system-backup/tree/v0.3.1"
  5463. },
  5464. "time": "2024-05-22T02:58:47+00:00"
  5465. },
  5466. {
  5467. "name": "spatie/data-transfer-object",
  5468. "version": "3.9.1",
  5469. "source": {
  5470. "type": "git",
  5471. "url": "https://github.com/spatie/data-transfer-object.git",
  5472. "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8"
  5473. },
  5474. "dist": {
  5475. "type": "zip",
  5476. "url": "https://api.github.com/repos/spatie/data-transfer-object/zipball/1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8",
  5477. "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8",
  5478. "shasum": ""
  5479. },
  5480. "require": {
  5481. "php": "^8.0"
  5482. },
  5483. "require-dev": {
  5484. "illuminate/collections": "^8.36",
  5485. "jetbrains/phpstorm-attributes": "^1.0",
  5486. "larapack/dd": "^1.1",
  5487. "phpunit/phpunit": "^9.5.5"
  5488. },
  5489. "type": "library",
  5490. "autoload": {
  5491. "psr-4": {
  5492. "Spatie\\DataTransferObject\\": "src"
  5493. }
  5494. },
  5495. "notification-url": "https://packagist.org/downloads/",
  5496. "license": [
  5497. "MIT"
  5498. ],
  5499. "authors": [
  5500. {
  5501. "name": "Brent Roose",
  5502. "email": "brent@spatie.be",
  5503. "homepage": "https://spatie.be",
  5504. "role": "Developer"
  5505. }
  5506. ],
  5507. "description": "Data transfer objects with batteries included",
  5508. "homepage": "https://github.com/spatie/data-transfer-object",
  5509. "keywords": [
  5510. "data-transfer-object",
  5511. "spatie"
  5512. ],
  5513. "support": {
  5514. "issues": "https://github.com/spatie/data-transfer-object/issues",
  5515. "source": "https://github.com/spatie/data-transfer-object/tree/3.9.1"
  5516. },
  5517. "funding": [
  5518. {
  5519. "url": "https://spatie.be/open-source/support-us",
  5520. "type": "custom"
  5521. },
  5522. {
  5523. "url": "https://github.com/spatie",
  5524. "type": "github"
  5525. }
  5526. ],
  5527. "abandoned": "spatie/laravel-data",
  5528. "time": "2022-09-16T13:34:38+00:00"
  5529. },
  5530. {
  5531. "name": "symfony/cache",
  5532. "version": "v7.1.7",
  5533. "source": {
  5534. "type": "git",
  5535. "url": "https://github.com/symfony/cache.git",
  5536. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928"
  5537. },
  5538. "dist": {
  5539. "type": "zip",
  5540. "url": "https://api.github.com/repos/symfony/cache/zipball/23b61c9592ee72233c31625f0ae805dd1571e928",
  5541. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928",
  5542. "shasum": ""
  5543. },
  5544. "require": {
  5545. "php": ">=8.2",
  5546. "psr/cache": "^2.0|^3.0",
  5547. "psr/log": "^1.1|^2|^3",
  5548. "symfony/cache-contracts": "^2.5|^3",
  5549. "symfony/deprecation-contracts": "^2.5|^3.0",
  5550. "symfony/service-contracts": "^2.5|^3",
  5551. "symfony/var-exporter": "^6.4|^7.0"
  5552. },
  5553. "conflict": {
  5554. "doctrine/dbal": "<3.6",
  5555. "symfony/dependency-injection": "<6.4",
  5556. "symfony/http-kernel": "<6.4",
  5557. "symfony/var-dumper": "<6.4"
  5558. },
  5559. "provide": {
  5560. "psr/cache-implementation": "2.0|3.0",
  5561. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  5562. "symfony/cache-implementation": "1.1|2.0|3.0"
  5563. },
  5564. "require-dev": {
  5565. "cache/integration-tests": "dev-master",
  5566. "doctrine/dbal": "^3.6|^4",
  5567. "predis/predis": "^1.1|^2.0",
  5568. "psr/simple-cache": "^1.0|^2.0|^3.0",
  5569. "symfony/config": "^6.4|^7.0",
  5570. "symfony/dependency-injection": "^6.4|^7.0",
  5571. "symfony/filesystem": "^6.4|^7.0",
  5572. "symfony/http-kernel": "^6.4|^7.0",
  5573. "symfony/messenger": "^6.4|^7.0",
  5574. "symfony/var-dumper": "^6.4|^7.0"
  5575. },
  5576. "type": "library",
  5577. "autoload": {
  5578. "psr-4": {
  5579. "Symfony\\Component\\Cache\\": ""
  5580. },
  5581. "classmap": [
  5582. "Traits/ValueWrapper.php"
  5583. ],
  5584. "exclude-from-classmap": [
  5585. "/Tests/"
  5586. ]
  5587. },
  5588. "notification-url": "https://packagist.org/downloads/",
  5589. "license": [
  5590. "MIT"
  5591. ],
  5592. "authors": [
  5593. {
  5594. "name": "Nicolas Grekas",
  5595. "email": "p@tchwork.com"
  5596. },
  5597. {
  5598. "name": "Symfony Community",
  5599. "homepage": "https://symfony.com/contributors"
  5600. }
  5601. ],
  5602. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5603. "homepage": "https://symfony.com",
  5604. "keywords": [
  5605. "caching",
  5606. "psr6"
  5607. ],
  5608. "support": {
  5609. "source": "https://github.com/symfony/cache/tree/v7.1.7"
  5610. },
  5611. "funding": [
  5612. {
  5613. "url": "https://symfony.com/sponsor",
  5614. "type": "custom"
  5615. },
  5616. {
  5617. "url": "https://github.com/fabpot",
  5618. "type": "github"
  5619. },
  5620. {
  5621. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5622. "type": "tidelift"
  5623. }
  5624. ],
  5625. "time": "2024-11-05T15:34:55+00:00"
  5626. },
  5627. {
  5628. "name": "symfony/cache-contracts",
  5629. "version": "v3.5.0",
  5630. "source": {
  5631. "type": "git",
  5632. "url": "https://github.com/symfony/cache-contracts.git",
  5633. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  5634. },
  5635. "dist": {
  5636. "type": "zip",
  5637. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  5638. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  5639. "shasum": ""
  5640. },
  5641. "require": {
  5642. "php": ">=8.1",
  5643. "psr/cache": "^3.0"
  5644. },
  5645. "type": "library",
  5646. "extra": {
  5647. "branch-alias": {
  5648. "dev-main": "3.5-dev"
  5649. },
  5650. "thanks": {
  5651. "name": "symfony/contracts",
  5652. "url": "https://github.com/symfony/contracts"
  5653. }
  5654. },
  5655. "autoload": {
  5656. "psr-4": {
  5657. "Symfony\\Contracts\\Cache\\": ""
  5658. }
  5659. },
  5660. "notification-url": "https://packagist.org/downloads/",
  5661. "license": [
  5662. "MIT"
  5663. ],
  5664. "authors": [
  5665. {
  5666. "name": "Nicolas Grekas",
  5667. "email": "p@tchwork.com"
  5668. },
  5669. {
  5670. "name": "Symfony Community",
  5671. "homepage": "https://symfony.com/contributors"
  5672. }
  5673. ],
  5674. "description": "Generic abstractions related to caching",
  5675. "homepage": "https://symfony.com",
  5676. "keywords": [
  5677. "abstractions",
  5678. "contracts",
  5679. "decoupling",
  5680. "interfaces",
  5681. "interoperability",
  5682. "standards"
  5683. ],
  5684. "support": {
  5685. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  5686. },
  5687. "funding": [
  5688. {
  5689. "url": "https://symfony.com/sponsor",
  5690. "type": "custom"
  5691. },
  5692. {
  5693. "url": "https://github.com/fabpot",
  5694. "type": "github"
  5695. },
  5696. {
  5697. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5698. "type": "tidelift"
  5699. }
  5700. ],
  5701. "time": "2024-04-18T09:32:20+00:00"
  5702. },
  5703. {
  5704. "name": "symfony/clock",
  5705. "version": "v7.1.6",
  5706. "source": {
  5707. "type": "git",
  5708. "url": "https://github.com/symfony/clock.git",
  5709. "reference": "97bebc53548684c17ed696bc8af016880f0f098d"
  5710. },
  5711. "dist": {
  5712. "type": "zip",
  5713. "url": "https://api.github.com/repos/symfony/clock/zipball/97bebc53548684c17ed696bc8af016880f0f098d",
  5714. "reference": "97bebc53548684c17ed696bc8af016880f0f098d",
  5715. "shasum": ""
  5716. },
  5717. "require": {
  5718. "php": ">=8.2",
  5719. "psr/clock": "^1.0",
  5720. "symfony/polyfill-php83": "^1.28"
  5721. },
  5722. "provide": {
  5723. "psr/clock-implementation": "1.0"
  5724. },
  5725. "type": "library",
  5726. "autoload": {
  5727. "files": [
  5728. "Resources/now.php"
  5729. ],
  5730. "psr-4": {
  5731. "Symfony\\Component\\Clock\\": ""
  5732. },
  5733. "exclude-from-classmap": [
  5734. "/Tests/"
  5735. ]
  5736. },
  5737. "notification-url": "https://packagist.org/downloads/",
  5738. "license": [
  5739. "MIT"
  5740. ],
  5741. "authors": [
  5742. {
  5743. "name": "Nicolas Grekas",
  5744. "email": "p@tchwork.com"
  5745. },
  5746. {
  5747. "name": "Symfony Community",
  5748. "homepage": "https://symfony.com/contributors"
  5749. }
  5750. ],
  5751. "description": "Decouples applications from the system clock",
  5752. "homepage": "https://symfony.com",
  5753. "keywords": [
  5754. "clock",
  5755. "psr20",
  5756. "time"
  5757. ],
  5758. "support": {
  5759. "source": "https://github.com/symfony/clock/tree/v7.1.6"
  5760. },
  5761. "funding": [
  5762. {
  5763. "url": "https://symfony.com/sponsor",
  5764. "type": "custom"
  5765. },
  5766. {
  5767. "url": "https://github.com/fabpot",
  5768. "type": "github"
  5769. },
  5770. {
  5771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5772. "type": "tidelift"
  5773. }
  5774. ],
  5775. "time": "2024-09-25T14:20:29+00:00"
  5776. },
  5777. {
  5778. "name": "symfony/console",
  5779. "version": "v7.1.8",
  5780. "source": {
  5781. "type": "git",
  5782. "url": "https://github.com/symfony/console.git",
  5783. "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5"
  5784. },
  5785. "dist": {
  5786. "type": "zip",
  5787. "url": "https://api.github.com/repos/symfony/console/zipball/ff04e5b5ba043d2badfb308197b9e6b42883fcd5",
  5788. "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5",
  5789. "shasum": ""
  5790. },
  5791. "require": {
  5792. "php": ">=8.2",
  5793. "symfony/polyfill-mbstring": "~1.0",
  5794. "symfony/service-contracts": "^2.5|^3",
  5795. "symfony/string": "^6.4|^7.0"
  5796. },
  5797. "conflict": {
  5798. "symfony/dependency-injection": "<6.4",
  5799. "symfony/dotenv": "<6.4",
  5800. "symfony/event-dispatcher": "<6.4",
  5801. "symfony/lock": "<6.4",
  5802. "symfony/process": "<6.4"
  5803. },
  5804. "provide": {
  5805. "psr/log-implementation": "1.0|2.0|3.0"
  5806. },
  5807. "require-dev": {
  5808. "psr/log": "^1|^2|^3",
  5809. "symfony/config": "^6.4|^7.0",
  5810. "symfony/dependency-injection": "^6.4|^7.0",
  5811. "symfony/event-dispatcher": "^6.4|^7.0",
  5812. "symfony/http-foundation": "^6.4|^7.0",
  5813. "symfony/http-kernel": "^6.4|^7.0",
  5814. "symfony/lock": "^6.4|^7.0",
  5815. "symfony/messenger": "^6.4|^7.0",
  5816. "symfony/process": "^6.4|^7.0",
  5817. "symfony/stopwatch": "^6.4|^7.0",
  5818. "symfony/var-dumper": "^6.4|^7.0"
  5819. },
  5820. "type": "library",
  5821. "autoload": {
  5822. "psr-4": {
  5823. "Symfony\\Component\\Console\\": ""
  5824. },
  5825. "exclude-from-classmap": [
  5826. "/Tests/"
  5827. ]
  5828. },
  5829. "notification-url": "https://packagist.org/downloads/",
  5830. "license": [
  5831. "MIT"
  5832. ],
  5833. "authors": [
  5834. {
  5835. "name": "Fabien Potencier",
  5836. "email": "fabien@symfony.com"
  5837. },
  5838. {
  5839. "name": "Symfony Community",
  5840. "homepage": "https://symfony.com/contributors"
  5841. }
  5842. ],
  5843. "description": "Eases the creation of beautiful and testable command line interfaces",
  5844. "homepage": "https://symfony.com",
  5845. "keywords": [
  5846. "cli",
  5847. "command-line",
  5848. "console",
  5849. "terminal"
  5850. ],
  5851. "support": {
  5852. "source": "https://github.com/symfony/console/tree/v7.1.8"
  5853. },
  5854. "funding": [
  5855. {
  5856. "url": "https://symfony.com/sponsor",
  5857. "type": "custom"
  5858. },
  5859. {
  5860. "url": "https://github.com/fabpot",
  5861. "type": "github"
  5862. },
  5863. {
  5864. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5865. "type": "tidelift"
  5866. }
  5867. ],
  5868. "time": "2024-11-06T14:23:19+00:00"
  5869. },
  5870. {
  5871. "name": "symfony/css-selector",
  5872. "version": "v7.1.6",
  5873. "source": {
  5874. "type": "git",
  5875. "url": "https://github.com/symfony/css-selector.git",
  5876. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66"
  5877. },
  5878. "dist": {
  5879. "type": "zip",
  5880. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  5881. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  5882. "shasum": ""
  5883. },
  5884. "require": {
  5885. "php": ">=8.2"
  5886. },
  5887. "type": "library",
  5888. "autoload": {
  5889. "psr-4": {
  5890. "Symfony\\Component\\CssSelector\\": ""
  5891. },
  5892. "exclude-from-classmap": [
  5893. "/Tests/"
  5894. ]
  5895. },
  5896. "notification-url": "https://packagist.org/downloads/",
  5897. "license": [
  5898. "MIT"
  5899. ],
  5900. "authors": [
  5901. {
  5902. "name": "Fabien Potencier",
  5903. "email": "fabien@symfony.com"
  5904. },
  5905. {
  5906. "name": "Jean-François Simon",
  5907. "email": "jeanfrancois.simon@sensiolabs.com"
  5908. },
  5909. {
  5910. "name": "Symfony Community",
  5911. "homepage": "https://symfony.com/contributors"
  5912. }
  5913. ],
  5914. "description": "Converts CSS selectors to XPath expressions",
  5915. "homepage": "https://symfony.com",
  5916. "support": {
  5917. "source": "https://github.com/symfony/css-selector/tree/v7.1.6"
  5918. },
  5919. "funding": [
  5920. {
  5921. "url": "https://symfony.com/sponsor",
  5922. "type": "custom"
  5923. },
  5924. {
  5925. "url": "https://github.com/fabpot",
  5926. "type": "github"
  5927. },
  5928. {
  5929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5930. "type": "tidelift"
  5931. }
  5932. ],
  5933. "time": "2024-09-25T14:20:29+00:00"
  5934. },
  5935. {
  5936. "name": "symfony/deprecation-contracts",
  5937. "version": "v3.5.0",
  5938. "source": {
  5939. "type": "git",
  5940. "url": "https://github.com/symfony/deprecation-contracts.git",
  5941. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5942. },
  5943. "dist": {
  5944. "type": "zip",
  5945. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5946. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5947. "shasum": ""
  5948. },
  5949. "require": {
  5950. "php": ">=8.1"
  5951. },
  5952. "type": "library",
  5953. "extra": {
  5954. "branch-alias": {
  5955. "dev-main": "3.5-dev"
  5956. },
  5957. "thanks": {
  5958. "name": "symfony/contracts",
  5959. "url": "https://github.com/symfony/contracts"
  5960. }
  5961. },
  5962. "autoload": {
  5963. "files": [
  5964. "function.php"
  5965. ]
  5966. },
  5967. "notification-url": "https://packagist.org/downloads/",
  5968. "license": [
  5969. "MIT"
  5970. ],
  5971. "authors": [
  5972. {
  5973. "name": "Nicolas Grekas",
  5974. "email": "p@tchwork.com"
  5975. },
  5976. {
  5977. "name": "Symfony Community",
  5978. "homepage": "https://symfony.com/contributors"
  5979. }
  5980. ],
  5981. "description": "A generic function and convention to trigger deprecation notices",
  5982. "homepage": "https://symfony.com",
  5983. "support": {
  5984. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  5985. },
  5986. "funding": [
  5987. {
  5988. "url": "https://symfony.com/sponsor",
  5989. "type": "custom"
  5990. },
  5991. {
  5992. "url": "https://github.com/fabpot",
  5993. "type": "github"
  5994. },
  5995. {
  5996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5997. "type": "tidelift"
  5998. }
  5999. ],
  6000. "time": "2024-04-18T09:32:20+00:00"
  6001. },
  6002. {
  6003. "name": "symfony/error-handler",
  6004. "version": "v7.1.7",
  6005. "source": {
  6006. "type": "git",
  6007. "url": "https://github.com/symfony/error-handler.git",
  6008. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342"
  6009. },
  6010. "dist": {
  6011. "type": "zip",
  6012. "url": "https://api.github.com/repos/symfony/error-handler/zipball/010e44661f4c6babaf8c4862fe68c24a53903342",
  6013. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342",
  6014. "shasum": ""
  6015. },
  6016. "require": {
  6017. "php": ">=8.2",
  6018. "psr/log": "^1|^2|^3",
  6019. "symfony/var-dumper": "^6.4|^7.0"
  6020. },
  6021. "conflict": {
  6022. "symfony/deprecation-contracts": "<2.5",
  6023. "symfony/http-kernel": "<6.4"
  6024. },
  6025. "require-dev": {
  6026. "symfony/deprecation-contracts": "^2.5|^3",
  6027. "symfony/http-kernel": "^6.4|^7.0",
  6028. "symfony/serializer": "^6.4|^7.0"
  6029. },
  6030. "bin": [
  6031. "Resources/bin/patch-type-declarations"
  6032. ],
  6033. "type": "library",
  6034. "autoload": {
  6035. "psr-4": {
  6036. "Symfony\\Component\\ErrorHandler\\": ""
  6037. },
  6038. "exclude-from-classmap": [
  6039. "/Tests/"
  6040. ]
  6041. },
  6042. "notification-url": "https://packagist.org/downloads/",
  6043. "license": [
  6044. "MIT"
  6045. ],
  6046. "authors": [
  6047. {
  6048. "name": "Fabien Potencier",
  6049. "email": "fabien@symfony.com"
  6050. },
  6051. {
  6052. "name": "Symfony Community",
  6053. "homepage": "https://symfony.com/contributors"
  6054. }
  6055. ],
  6056. "description": "Provides tools to manage errors and ease debugging PHP code",
  6057. "homepage": "https://symfony.com",
  6058. "support": {
  6059. "source": "https://github.com/symfony/error-handler/tree/v7.1.7"
  6060. },
  6061. "funding": [
  6062. {
  6063. "url": "https://symfony.com/sponsor",
  6064. "type": "custom"
  6065. },
  6066. {
  6067. "url": "https://github.com/fabpot",
  6068. "type": "github"
  6069. },
  6070. {
  6071. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6072. "type": "tidelift"
  6073. }
  6074. ],
  6075. "time": "2024-11-05T15:34:55+00:00"
  6076. },
  6077. {
  6078. "name": "symfony/event-dispatcher",
  6079. "version": "v7.1.6",
  6080. "source": {
  6081. "type": "git",
  6082. "url": "https://github.com/symfony/event-dispatcher.git",
  6083. "reference": "87254c78dd50721cfd015b62277a8281c5589702"
  6084. },
  6085. "dist": {
  6086. "type": "zip",
  6087. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87254c78dd50721cfd015b62277a8281c5589702",
  6088. "reference": "87254c78dd50721cfd015b62277a8281c5589702",
  6089. "shasum": ""
  6090. },
  6091. "require": {
  6092. "php": ">=8.2",
  6093. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6094. },
  6095. "conflict": {
  6096. "symfony/dependency-injection": "<6.4",
  6097. "symfony/service-contracts": "<2.5"
  6098. },
  6099. "provide": {
  6100. "psr/event-dispatcher-implementation": "1.0",
  6101. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6102. },
  6103. "require-dev": {
  6104. "psr/log": "^1|^2|^3",
  6105. "symfony/config": "^6.4|^7.0",
  6106. "symfony/dependency-injection": "^6.4|^7.0",
  6107. "symfony/error-handler": "^6.4|^7.0",
  6108. "symfony/expression-language": "^6.4|^7.0",
  6109. "symfony/http-foundation": "^6.4|^7.0",
  6110. "symfony/service-contracts": "^2.5|^3",
  6111. "symfony/stopwatch": "^6.4|^7.0"
  6112. },
  6113. "type": "library",
  6114. "autoload": {
  6115. "psr-4": {
  6116. "Symfony\\Component\\EventDispatcher\\": ""
  6117. },
  6118. "exclude-from-classmap": [
  6119. "/Tests/"
  6120. ]
  6121. },
  6122. "notification-url": "https://packagist.org/downloads/",
  6123. "license": [
  6124. "MIT"
  6125. ],
  6126. "authors": [
  6127. {
  6128. "name": "Fabien Potencier",
  6129. "email": "fabien@symfony.com"
  6130. },
  6131. {
  6132. "name": "Symfony Community",
  6133. "homepage": "https://symfony.com/contributors"
  6134. }
  6135. ],
  6136. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6137. "homepage": "https://symfony.com",
  6138. "support": {
  6139. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.6"
  6140. },
  6141. "funding": [
  6142. {
  6143. "url": "https://symfony.com/sponsor",
  6144. "type": "custom"
  6145. },
  6146. {
  6147. "url": "https://github.com/fabpot",
  6148. "type": "github"
  6149. },
  6150. {
  6151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6152. "type": "tidelift"
  6153. }
  6154. ],
  6155. "time": "2024-09-25T14:20:29+00:00"
  6156. },
  6157. {
  6158. "name": "symfony/event-dispatcher-contracts",
  6159. "version": "v3.5.0",
  6160. "source": {
  6161. "type": "git",
  6162. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6163. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  6164. },
  6165. "dist": {
  6166. "type": "zip",
  6167. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  6168. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  6169. "shasum": ""
  6170. },
  6171. "require": {
  6172. "php": ">=8.1",
  6173. "psr/event-dispatcher": "^1"
  6174. },
  6175. "type": "library",
  6176. "extra": {
  6177. "branch-alias": {
  6178. "dev-main": "3.5-dev"
  6179. },
  6180. "thanks": {
  6181. "name": "symfony/contracts",
  6182. "url": "https://github.com/symfony/contracts"
  6183. }
  6184. },
  6185. "autoload": {
  6186. "psr-4": {
  6187. "Symfony\\Contracts\\EventDispatcher\\": ""
  6188. }
  6189. },
  6190. "notification-url": "https://packagist.org/downloads/",
  6191. "license": [
  6192. "MIT"
  6193. ],
  6194. "authors": [
  6195. {
  6196. "name": "Nicolas Grekas",
  6197. "email": "p@tchwork.com"
  6198. },
  6199. {
  6200. "name": "Symfony Community",
  6201. "homepage": "https://symfony.com/contributors"
  6202. }
  6203. ],
  6204. "description": "Generic abstractions related to dispatching event",
  6205. "homepage": "https://symfony.com",
  6206. "keywords": [
  6207. "abstractions",
  6208. "contracts",
  6209. "decoupling",
  6210. "interfaces",
  6211. "interoperability",
  6212. "standards"
  6213. ],
  6214. "support": {
  6215. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  6216. },
  6217. "funding": [
  6218. {
  6219. "url": "https://symfony.com/sponsor",
  6220. "type": "custom"
  6221. },
  6222. {
  6223. "url": "https://github.com/fabpot",
  6224. "type": "github"
  6225. },
  6226. {
  6227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6228. "type": "tidelift"
  6229. }
  6230. ],
  6231. "time": "2024-04-18T09:32:20+00:00"
  6232. },
  6233. {
  6234. "name": "symfony/finder",
  6235. "version": "v7.1.6",
  6236. "source": {
  6237. "type": "git",
  6238. "url": "https://github.com/symfony/finder.git",
  6239. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8"
  6240. },
  6241. "dist": {
  6242. "type": "zip",
  6243. "url": "https://api.github.com/repos/symfony/finder/zipball/2cb89664897be33f78c65d3d2845954c8d7a43b8",
  6244. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8",
  6245. "shasum": ""
  6246. },
  6247. "require": {
  6248. "php": ">=8.2"
  6249. },
  6250. "require-dev": {
  6251. "symfony/filesystem": "^6.4|^7.0"
  6252. },
  6253. "type": "library",
  6254. "autoload": {
  6255. "psr-4": {
  6256. "Symfony\\Component\\Finder\\": ""
  6257. },
  6258. "exclude-from-classmap": [
  6259. "/Tests/"
  6260. ]
  6261. },
  6262. "notification-url": "https://packagist.org/downloads/",
  6263. "license": [
  6264. "MIT"
  6265. ],
  6266. "authors": [
  6267. {
  6268. "name": "Fabien Potencier",
  6269. "email": "fabien@symfony.com"
  6270. },
  6271. {
  6272. "name": "Symfony Community",
  6273. "homepage": "https://symfony.com/contributors"
  6274. }
  6275. ],
  6276. "description": "Finds files and directories via an intuitive fluent interface",
  6277. "homepage": "https://symfony.com",
  6278. "support": {
  6279. "source": "https://github.com/symfony/finder/tree/v7.1.6"
  6280. },
  6281. "funding": [
  6282. {
  6283. "url": "https://symfony.com/sponsor",
  6284. "type": "custom"
  6285. },
  6286. {
  6287. "url": "https://github.com/fabpot",
  6288. "type": "github"
  6289. },
  6290. {
  6291. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6292. "type": "tidelift"
  6293. }
  6294. ],
  6295. "time": "2024-10-01T08:31:23+00:00"
  6296. },
  6297. {
  6298. "name": "symfony/http-client",
  6299. "version": "v7.1.8",
  6300. "source": {
  6301. "type": "git",
  6302. "url": "https://github.com/symfony/http-client.git",
  6303. "reference": "c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a"
  6304. },
  6305. "dist": {
  6306. "type": "zip",
  6307. "url": "https://api.github.com/repos/symfony/http-client/zipball/c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a",
  6308. "reference": "c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a",
  6309. "shasum": ""
  6310. },
  6311. "require": {
  6312. "php": ">=8.2",
  6313. "psr/log": "^1|^2|^3",
  6314. "symfony/deprecation-contracts": "^2.5|^3",
  6315. "symfony/http-client-contracts": "^3.4.1",
  6316. "symfony/service-contracts": "^2.5|^3"
  6317. },
  6318. "conflict": {
  6319. "php-http/discovery": "<1.15",
  6320. "symfony/http-foundation": "<6.4"
  6321. },
  6322. "provide": {
  6323. "php-http/async-client-implementation": "*",
  6324. "php-http/client-implementation": "*",
  6325. "psr/http-client-implementation": "1.0",
  6326. "symfony/http-client-implementation": "3.0"
  6327. },
  6328. "require-dev": {
  6329. "amphp/amp": "^2.5",
  6330. "amphp/http-client": "^4.2.1",
  6331. "amphp/http-tunnel": "^1.0",
  6332. "amphp/socket": "^1.1",
  6333. "guzzlehttp/promises": "^1.4|^2.0",
  6334. "nyholm/psr7": "^1.0",
  6335. "php-http/httplug": "^1.0|^2.0",
  6336. "psr/http-client": "^1.0",
  6337. "symfony/dependency-injection": "^6.4|^7.0",
  6338. "symfony/http-kernel": "^6.4|^7.0",
  6339. "symfony/messenger": "^6.4|^7.0",
  6340. "symfony/process": "^6.4|^7.0",
  6341. "symfony/rate-limiter": "^6.4|^7.0",
  6342. "symfony/stopwatch": "^6.4|^7.0"
  6343. },
  6344. "type": "library",
  6345. "autoload": {
  6346. "psr-4": {
  6347. "Symfony\\Component\\HttpClient\\": ""
  6348. },
  6349. "exclude-from-classmap": [
  6350. "/Tests/"
  6351. ]
  6352. },
  6353. "notification-url": "https://packagist.org/downloads/",
  6354. "license": [
  6355. "MIT"
  6356. ],
  6357. "authors": [
  6358. {
  6359. "name": "Nicolas Grekas",
  6360. "email": "p@tchwork.com"
  6361. },
  6362. {
  6363. "name": "Symfony Community",
  6364. "homepage": "https://symfony.com/contributors"
  6365. }
  6366. ],
  6367. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  6368. "homepage": "https://symfony.com",
  6369. "keywords": [
  6370. "http"
  6371. ],
  6372. "support": {
  6373. "source": "https://github.com/symfony/http-client/tree/v7.1.8"
  6374. },
  6375. "funding": [
  6376. {
  6377. "url": "https://symfony.com/sponsor",
  6378. "type": "custom"
  6379. },
  6380. {
  6381. "url": "https://github.com/fabpot",
  6382. "type": "github"
  6383. },
  6384. {
  6385. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6386. "type": "tidelift"
  6387. }
  6388. ],
  6389. "time": "2024-11-13T13:40:27+00:00"
  6390. },
  6391. {
  6392. "name": "symfony/http-client-contracts",
  6393. "version": "v3.5.0",
  6394. "source": {
  6395. "type": "git",
  6396. "url": "https://github.com/symfony/http-client-contracts.git",
  6397. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  6398. },
  6399. "dist": {
  6400. "type": "zip",
  6401. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  6402. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  6403. "shasum": ""
  6404. },
  6405. "require": {
  6406. "php": ">=8.1"
  6407. },
  6408. "type": "library",
  6409. "extra": {
  6410. "branch-alias": {
  6411. "dev-main": "3.5-dev"
  6412. },
  6413. "thanks": {
  6414. "name": "symfony/contracts",
  6415. "url": "https://github.com/symfony/contracts"
  6416. }
  6417. },
  6418. "autoload": {
  6419. "psr-4": {
  6420. "Symfony\\Contracts\\HttpClient\\": ""
  6421. },
  6422. "exclude-from-classmap": [
  6423. "/Test/"
  6424. ]
  6425. },
  6426. "notification-url": "https://packagist.org/downloads/",
  6427. "license": [
  6428. "MIT"
  6429. ],
  6430. "authors": [
  6431. {
  6432. "name": "Nicolas Grekas",
  6433. "email": "p@tchwork.com"
  6434. },
  6435. {
  6436. "name": "Symfony Community",
  6437. "homepage": "https://symfony.com/contributors"
  6438. }
  6439. ],
  6440. "description": "Generic abstractions related to HTTP clients",
  6441. "homepage": "https://symfony.com",
  6442. "keywords": [
  6443. "abstractions",
  6444. "contracts",
  6445. "decoupling",
  6446. "interfaces",
  6447. "interoperability",
  6448. "standards"
  6449. ],
  6450. "support": {
  6451. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  6452. },
  6453. "funding": [
  6454. {
  6455. "url": "https://symfony.com/sponsor",
  6456. "type": "custom"
  6457. },
  6458. {
  6459. "url": "https://github.com/fabpot",
  6460. "type": "github"
  6461. },
  6462. {
  6463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6464. "type": "tidelift"
  6465. }
  6466. ],
  6467. "time": "2024-04-18T09:32:20+00:00"
  6468. },
  6469. {
  6470. "name": "symfony/http-foundation",
  6471. "version": "v7.1.8",
  6472. "source": {
  6473. "type": "git",
  6474. "url": "https://github.com/symfony/http-foundation.git",
  6475. "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112"
  6476. },
  6477. "dist": {
  6478. "type": "zip",
  6479. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f4419ec69ccfc3f725a4de7c20e4e57626d10112",
  6480. "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112",
  6481. "shasum": ""
  6482. },
  6483. "require": {
  6484. "php": ">=8.2",
  6485. "symfony/polyfill-mbstring": "~1.1",
  6486. "symfony/polyfill-php83": "^1.27"
  6487. },
  6488. "conflict": {
  6489. "doctrine/dbal": "<3.6",
  6490. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  6491. },
  6492. "require-dev": {
  6493. "doctrine/dbal": "^3.6|^4",
  6494. "predis/predis": "^1.1|^2.0",
  6495. "symfony/cache": "^6.4.12|^7.1.5",
  6496. "symfony/dependency-injection": "^6.4|^7.0",
  6497. "symfony/expression-language": "^6.4|^7.0",
  6498. "symfony/http-kernel": "^6.4|^7.0",
  6499. "symfony/mime": "^6.4|^7.0",
  6500. "symfony/rate-limiter": "^6.4|^7.0"
  6501. },
  6502. "type": "library",
  6503. "autoload": {
  6504. "psr-4": {
  6505. "Symfony\\Component\\HttpFoundation\\": ""
  6506. },
  6507. "exclude-from-classmap": [
  6508. "/Tests/"
  6509. ]
  6510. },
  6511. "notification-url": "https://packagist.org/downloads/",
  6512. "license": [
  6513. "MIT"
  6514. ],
  6515. "authors": [
  6516. {
  6517. "name": "Fabien Potencier",
  6518. "email": "fabien@symfony.com"
  6519. },
  6520. {
  6521. "name": "Symfony Community",
  6522. "homepage": "https://symfony.com/contributors"
  6523. }
  6524. ],
  6525. "description": "Defines an object-oriented layer for the HTTP specification",
  6526. "homepage": "https://symfony.com",
  6527. "support": {
  6528. "source": "https://github.com/symfony/http-foundation/tree/v7.1.8"
  6529. },
  6530. "funding": [
  6531. {
  6532. "url": "https://symfony.com/sponsor",
  6533. "type": "custom"
  6534. },
  6535. {
  6536. "url": "https://github.com/fabpot",
  6537. "type": "github"
  6538. },
  6539. {
  6540. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6541. "type": "tidelift"
  6542. }
  6543. ],
  6544. "time": "2024-11-09T09:16:45+00:00"
  6545. },
  6546. {
  6547. "name": "symfony/http-kernel",
  6548. "version": "v7.1.8",
  6549. "source": {
  6550. "type": "git",
  6551. "url": "https://github.com/symfony/http-kernel.git",
  6552. "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e"
  6553. },
  6554. "dist": {
  6555. "type": "zip",
  6556. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/33fef24e3dc79d6d30bf4936531f2f4bd2ca189e",
  6557. "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e",
  6558. "shasum": ""
  6559. },
  6560. "require": {
  6561. "php": ">=8.2",
  6562. "psr/log": "^1|^2|^3",
  6563. "symfony/deprecation-contracts": "^2.5|^3",
  6564. "symfony/error-handler": "^6.4|^7.0",
  6565. "symfony/event-dispatcher": "^6.4|^7.0",
  6566. "symfony/http-foundation": "^6.4|^7.0",
  6567. "symfony/polyfill-ctype": "^1.8"
  6568. },
  6569. "conflict": {
  6570. "symfony/browser-kit": "<6.4",
  6571. "symfony/cache": "<6.4",
  6572. "symfony/config": "<6.4",
  6573. "symfony/console": "<6.4",
  6574. "symfony/dependency-injection": "<6.4",
  6575. "symfony/doctrine-bridge": "<6.4",
  6576. "symfony/form": "<6.4",
  6577. "symfony/http-client": "<6.4",
  6578. "symfony/http-client-contracts": "<2.5",
  6579. "symfony/mailer": "<6.4",
  6580. "symfony/messenger": "<6.4",
  6581. "symfony/translation": "<6.4",
  6582. "symfony/translation-contracts": "<2.5",
  6583. "symfony/twig-bridge": "<6.4",
  6584. "symfony/validator": "<6.4",
  6585. "symfony/var-dumper": "<6.4",
  6586. "twig/twig": "<3.0.4"
  6587. },
  6588. "provide": {
  6589. "psr/log-implementation": "1.0|2.0|3.0"
  6590. },
  6591. "require-dev": {
  6592. "psr/cache": "^1.0|^2.0|^3.0",
  6593. "symfony/browser-kit": "^6.4|^7.0",
  6594. "symfony/clock": "^6.4|^7.0",
  6595. "symfony/config": "^6.4|^7.0",
  6596. "symfony/console": "^6.4|^7.0",
  6597. "symfony/css-selector": "^6.4|^7.0",
  6598. "symfony/dependency-injection": "^6.4|^7.0",
  6599. "symfony/dom-crawler": "^6.4|^7.0",
  6600. "symfony/expression-language": "^6.4|^7.0",
  6601. "symfony/finder": "^6.4|^7.0",
  6602. "symfony/http-client-contracts": "^2.5|^3",
  6603. "symfony/process": "^6.4|^7.0",
  6604. "symfony/property-access": "^7.1",
  6605. "symfony/routing": "^6.4|^7.0",
  6606. "symfony/serializer": "^7.1",
  6607. "symfony/stopwatch": "^6.4|^7.0",
  6608. "symfony/translation": "^6.4|^7.0",
  6609. "symfony/translation-contracts": "^2.5|^3",
  6610. "symfony/uid": "^6.4|^7.0",
  6611. "symfony/validator": "^6.4|^7.0",
  6612. "symfony/var-dumper": "^6.4|^7.0",
  6613. "symfony/var-exporter": "^6.4|^7.0",
  6614. "twig/twig": "^3.0.4"
  6615. },
  6616. "type": "library",
  6617. "autoload": {
  6618. "psr-4": {
  6619. "Symfony\\Component\\HttpKernel\\": ""
  6620. },
  6621. "exclude-from-classmap": [
  6622. "/Tests/"
  6623. ]
  6624. },
  6625. "notification-url": "https://packagist.org/downloads/",
  6626. "license": [
  6627. "MIT"
  6628. ],
  6629. "authors": [
  6630. {
  6631. "name": "Fabien Potencier",
  6632. "email": "fabien@symfony.com"
  6633. },
  6634. {
  6635. "name": "Symfony Community",
  6636. "homepage": "https://symfony.com/contributors"
  6637. }
  6638. ],
  6639. "description": "Provides a structured process for converting a Request into a Response",
  6640. "homepage": "https://symfony.com",
  6641. "support": {
  6642. "source": "https://github.com/symfony/http-kernel/tree/v7.1.8"
  6643. },
  6644. "funding": [
  6645. {
  6646. "url": "https://symfony.com/sponsor",
  6647. "type": "custom"
  6648. },
  6649. {
  6650. "url": "https://github.com/fabpot",
  6651. "type": "github"
  6652. },
  6653. {
  6654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6655. "type": "tidelift"
  6656. }
  6657. ],
  6658. "time": "2024-11-13T14:25:32+00:00"
  6659. },
  6660. {
  6661. "name": "symfony/mailer",
  6662. "version": "v7.1.6",
  6663. "source": {
  6664. "type": "git",
  6665. "url": "https://github.com/symfony/mailer.git",
  6666. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd"
  6667. },
  6668. "dist": {
  6669. "type": "zip",
  6670. "url": "https://api.github.com/repos/symfony/mailer/zipball/69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  6671. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  6672. "shasum": ""
  6673. },
  6674. "require": {
  6675. "egulias/email-validator": "^2.1.10|^3|^4",
  6676. "php": ">=8.2",
  6677. "psr/event-dispatcher": "^1",
  6678. "psr/log": "^1|^2|^3",
  6679. "symfony/event-dispatcher": "^6.4|^7.0",
  6680. "symfony/mime": "^6.4|^7.0",
  6681. "symfony/service-contracts": "^2.5|^3"
  6682. },
  6683. "conflict": {
  6684. "symfony/http-client-contracts": "<2.5",
  6685. "symfony/http-kernel": "<6.4",
  6686. "symfony/messenger": "<6.4",
  6687. "symfony/mime": "<6.4",
  6688. "symfony/twig-bridge": "<6.4"
  6689. },
  6690. "require-dev": {
  6691. "symfony/console": "^6.4|^7.0",
  6692. "symfony/http-client": "^6.4|^7.0",
  6693. "symfony/messenger": "^6.4|^7.0",
  6694. "symfony/twig-bridge": "^6.4|^7.0"
  6695. },
  6696. "type": "library",
  6697. "autoload": {
  6698. "psr-4": {
  6699. "Symfony\\Component\\Mailer\\": ""
  6700. },
  6701. "exclude-from-classmap": [
  6702. "/Tests/"
  6703. ]
  6704. },
  6705. "notification-url": "https://packagist.org/downloads/",
  6706. "license": [
  6707. "MIT"
  6708. ],
  6709. "authors": [
  6710. {
  6711. "name": "Fabien Potencier",
  6712. "email": "fabien@symfony.com"
  6713. },
  6714. {
  6715. "name": "Symfony Community",
  6716. "homepage": "https://symfony.com/contributors"
  6717. }
  6718. ],
  6719. "description": "Helps sending emails",
  6720. "homepage": "https://symfony.com",
  6721. "support": {
  6722. "source": "https://github.com/symfony/mailer/tree/v7.1.6"
  6723. },
  6724. "funding": [
  6725. {
  6726. "url": "https://symfony.com/sponsor",
  6727. "type": "custom"
  6728. },
  6729. {
  6730. "url": "https://github.com/fabpot",
  6731. "type": "github"
  6732. },
  6733. {
  6734. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6735. "type": "tidelift"
  6736. }
  6737. ],
  6738. "time": "2024-09-25T14:20:29+00:00"
  6739. },
  6740. {
  6741. "name": "symfony/mime",
  6742. "version": "v7.1.6",
  6743. "source": {
  6744. "type": "git",
  6745. "url": "https://github.com/symfony/mime.git",
  6746. "reference": "caa1e521edb2650b8470918dfe51708c237f0598"
  6747. },
  6748. "dist": {
  6749. "type": "zip",
  6750. "url": "https://api.github.com/repos/symfony/mime/zipball/caa1e521edb2650b8470918dfe51708c237f0598",
  6751. "reference": "caa1e521edb2650b8470918dfe51708c237f0598",
  6752. "shasum": ""
  6753. },
  6754. "require": {
  6755. "php": ">=8.2",
  6756. "symfony/polyfill-intl-idn": "^1.10",
  6757. "symfony/polyfill-mbstring": "^1.0"
  6758. },
  6759. "conflict": {
  6760. "egulias/email-validator": "~3.0.0",
  6761. "phpdocumentor/reflection-docblock": "<3.2.2",
  6762. "phpdocumentor/type-resolver": "<1.4.0",
  6763. "symfony/mailer": "<6.4",
  6764. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  6765. },
  6766. "require-dev": {
  6767. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6768. "league/html-to-markdown": "^5.0",
  6769. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6770. "symfony/dependency-injection": "^6.4|^7.0",
  6771. "symfony/process": "^6.4|^7.0",
  6772. "symfony/property-access": "^6.4|^7.0",
  6773. "symfony/property-info": "^6.4|^7.0",
  6774. "symfony/serializer": "^6.4.3|^7.0.3"
  6775. },
  6776. "type": "library",
  6777. "autoload": {
  6778. "psr-4": {
  6779. "Symfony\\Component\\Mime\\": ""
  6780. },
  6781. "exclude-from-classmap": [
  6782. "/Tests/"
  6783. ]
  6784. },
  6785. "notification-url": "https://packagist.org/downloads/",
  6786. "license": [
  6787. "MIT"
  6788. ],
  6789. "authors": [
  6790. {
  6791. "name": "Fabien Potencier",
  6792. "email": "fabien@symfony.com"
  6793. },
  6794. {
  6795. "name": "Symfony Community",
  6796. "homepage": "https://symfony.com/contributors"
  6797. }
  6798. ],
  6799. "description": "Allows manipulating MIME messages",
  6800. "homepage": "https://symfony.com",
  6801. "keywords": [
  6802. "mime",
  6803. "mime-type"
  6804. ],
  6805. "support": {
  6806. "source": "https://github.com/symfony/mime/tree/v7.1.6"
  6807. },
  6808. "funding": [
  6809. {
  6810. "url": "https://symfony.com/sponsor",
  6811. "type": "custom"
  6812. },
  6813. {
  6814. "url": "https://github.com/fabpot",
  6815. "type": "github"
  6816. },
  6817. {
  6818. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6819. "type": "tidelift"
  6820. }
  6821. ],
  6822. "time": "2024-10-25T15:11:02+00:00"
  6823. },
  6824. {
  6825. "name": "symfony/polyfill-ctype",
  6826. "version": "v1.31.0",
  6827. "source": {
  6828. "type": "git",
  6829. "url": "https://github.com/symfony/polyfill-ctype.git",
  6830. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6831. },
  6832. "dist": {
  6833. "type": "zip",
  6834. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6835. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6836. "shasum": ""
  6837. },
  6838. "require": {
  6839. "php": ">=7.2"
  6840. },
  6841. "provide": {
  6842. "ext-ctype": "*"
  6843. },
  6844. "suggest": {
  6845. "ext-ctype": "For best performance"
  6846. },
  6847. "type": "library",
  6848. "extra": {
  6849. "thanks": {
  6850. "name": "symfony/polyfill",
  6851. "url": "https://github.com/symfony/polyfill"
  6852. }
  6853. },
  6854. "autoload": {
  6855. "files": [
  6856. "bootstrap.php"
  6857. ],
  6858. "psr-4": {
  6859. "Symfony\\Polyfill\\Ctype\\": ""
  6860. }
  6861. },
  6862. "notification-url": "https://packagist.org/downloads/",
  6863. "license": [
  6864. "MIT"
  6865. ],
  6866. "authors": [
  6867. {
  6868. "name": "Gert de Pagter",
  6869. "email": "BackEndTea@gmail.com"
  6870. },
  6871. {
  6872. "name": "Symfony Community",
  6873. "homepage": "https://symfony.com/contributors"
  6874. }
  6875. ],
  6876. "description": "Symfony polyfill for ctype functions",
  6877. "homepage": "https://symfony.com",
  6878. "keywords": [
  6879. "compatibility",
  6880. "ctype",
  6881. "polyfill",
  6882. "portable"
  6883. ],
  6884. "support": {
  6885. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6886. },
  6887. "funding": [
  6888. {
  6889. "url": "https://symfony.com/sponsor",
  6890. "type": "custom"
  6891. },
  6892. {
  6893. "url": "https://github.com/fabpot",
  6894. "type": "github"
  6895. },
  6896. {
  6897. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6898. "type": "tidelift"
  6899. }
  6900. ],
  6901. "time": "2024-09-09T11:45:10+00:00"
  6902. },
  6903. {
  6904. "name": "symfony/polyfill-intl-grapheme",
  6905. "version": "v1.31.0",
  6906. "source": {
  6907. "type": "git",
  6908. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6909. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6910. },
  6911. "dist": {
  6912. "type": "zip",
  6913. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6914. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6915. "shasum": ""
  6916. },
  6917. "require": {
  6918. "php": ">=7.2"
  6919. },
  6920. "suggest": {
  6921. "ext-intl": "For best performance"
  6922. },
  6923. "type": "library",
  6924. "extra": {
  6925. "thanks": {
  6926. "name": "symfony/polyfill",
  6927. "url": "https://github.com/symfony/polyfill"
  6928. }
  6929. },
  6930. "autoload": {
  6931. "files": [
  6932. "bootstrap.php"
  6933. ],
  6934. "psr-4": {
  6935. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6936. }
  6937. },
  6938. "notification-url": "https://packagist.org/downloads/",
  6939. "license": [
  6940. "MIT"
  6941. ],
  6942. "authors": [
  6943. {
  6944. "name": "Nicolas Grekas",
  6945. "email": "p@tchwork.com"
  6946. },
  6947. {
  6948. "name": "Symfony Community",
  6949. "homepage": "https://symfony.com/contributors"
  6950. }
  6951. ],
  6952. "description": "Symfony polyfill for intl's grapheme_* functions",
  6953. "homepage": "https://symfony.com",
  6954. "keywords": [
  6955. "compatibility",
  6956. "grapheme",
  6957. "intl",
  6958. "polyfill",
  6959. "portable",
  6960. "shim"
  6961. ],
  6962. "support": {
  6963. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6964. },
  6965. "funding": [
  6966. {
  6967. "url": "https://symfony.com/sponsor",
  6968. "type": "custom"
  6969. },
  6970. {
  6971. "url": "https://github.com/fabpot",
  6972. "type": "github"
  6973. },
  6974. {
  6975. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6976. "type": "tidelift"
  6977. }
  6978. ],
  6979. "time": "2024-09-09T11:45:10+00:00"
  6980. },
  6981. {
  6982. "name": "symfony/polyfill-intl-idn",
  6983. "version": "v1.31.0",
  6984. "source": {
  6985. "type": "git",
  6986. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6987. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  6988. },
  6989. "dist": {
  6990. "type": "zip",
  6991. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  6992. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  6993. "shasum": ""
  6994. },
  6995. "require": {
  6996. "php": ">=7.2",
  6997. "symfony/polyfill-intl-normalizer": "^1.10"
  6998. },
  6999. "suggest": {
  7000. "ext-intl": "For best performance"
  7001. },
  7002. "type": "library",
  7003. "extra": {
  7004. "thanks": {
  7005. "name": "symfony/polyfill",
  7006. "url": "https://github.com/symfony/polyfill"
  7007. }
  7008. },
  7009. "autoload": {
  7010. "files": [
  7011. "bootstrap.php"
  7012. ],
  7013. "psr-4": {
  7014. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7015. }
  7016. },
  7017. "notification-url": "https://packagist.org/downloads/",
  7018. "license": [
  7019. "MIT"
  7020. ],
  7021. "authors": [
  7022. {
  7023. "name": "Laurent Bassin",
  7024. "email": "laurent@bassin.info"
  7025. },
  7026. {
  7027. "name": "Trevor Rowbotham",
  7028. "email": "trevor.rowbotham@pm.me"
  7029. },
  7030. {
  7031. "name": "Symfony Community",
  7032. "homepage": "https://symfony.com/contributors"
  7033. }
  7034. ],
  7035. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7036. "homepage": "https://symfony.com",
  7037. "keywords": [
  7038. "compatibility",
  7039. "idn",
  7040. "intl",
  7041. "polyfill",
  7042. "portable",
  7043. "shim"
  7044. ],
  7045. "support": {
  7046. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7047. },
  7048. "funding": [
  7049. {
  7050. "url": "https://symfony.com/sponsor",
  7051. "type": "custom"
  7052. },
  7053. {
  7054. "url": "https://github.com/fabpot",
  7055. "type": "github"
  7056. },
  7057. {
  7058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7059. "type": "tidelift"
  7060. }
  7061. ],
  7062. "time": "2024-09-09T11:45:10+00:00"
  7063. },
  7064. {
  7065. "name": "symfony/polyfill-intl-normalizer",
  7066. "version": "v1.31.0",
  7067. "source": {
  7068. "type": "git",
  7069. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7070. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7071. },
  7072. "dist": {
  7073. "type": "zip",
  7074. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7075. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7076. "shasum": ""
  7077. },
  7078. "require": {
  7079. "php": ">=7.2"
  7080. },
  7081. "suggest": {
  7082. "ext-intl": "For best performance"
  7083. },
  7084. "type": "library",
  7085. "extra": {
  7086. "thanks": {
  7087. "name": "symfony/polyfill",
  7088. "url": "https://github.com/symfony/polyfill"
  7089. }
  7090. },
  7091. "autoload": {
  7092. "files": [
  7093. "bootstrap.php"
  7094. ],
  7095. "psr-4": {
  7096. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7097. },
  7098. "classmap": [
  7099. "Resources/stubs"
  7100. ]
  7101. },
  7102. "notification-url": "https://packagist.org/downloads/",
  7103. "license": [
  7104. "MIT"
  7105. ],
  7106. "authors": [
  7107. {
  7108. "name": "Nicolas Grekas",
  7109. "email": "p@tchwork.com"
  7110. },
  7111. {
  7112. "name": "Symfony Community",
  7113. "homepage": "https://symfony.com/contributors"
  7114. }
  7115. ],
  7116. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7117. "homepage": "https://symfony.com",
  7118. "keywords": [
  7119. "compatibility",
  7120. "intl",
  7121. "normalizer",
  7122. "polyfill",
  7123. "portable",
  7124. "shim"
  7125. ],
  7126. "support": {
  7127. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7128. },
  7129. "funding": [
  7130. {
  7131. "url": "https://symfony.com/sponsor",
  7132. "type": "custom"
  7133. },
  7134. {
  7135. "url": "https://github.com/fabpot",
  7136. "type": "github"
  7137. },
  7138. {
  7139. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7140. "type": "tidelift"
  7141. }
  7142. ],
  7143. "time": "2024-09-09T11:45:10+00:00"
  7144. },
  7145. {
  7146. "name": "symfony/polyfill-mbstring",
  7147. "version": "v1.31.0",
  7148. "source": {
  7149. "type": "git",
  7150. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7151. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7152. },
  7153. "dist": {
  7154. "type": "zip",
  7155. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7156. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7157. "shasum": ""
  7158. },
  7159. "require": {
  7160. "php": ">=7.2"
  7161. },
  7162. "provide": {
  7163. "ext-mbstring": "*"
  7164. },
  7165. "suggest": {
  7166. "ext-mbstring": "For best performance"
  7167. },
  7168. "type": "library",
  7169. "extra": {
  7170. "thanks": {
  7171. "name": "symfony/polyfill",
  7172. "url": "https://github.com/symfony/polyfill"
  7173. }
  7174. },
  7175. "autoload": {
  7176. "files": [
  7177. "bootstrap.php"
  7178. ],
  7179. "psr-4": {
  7180. "Symfony\\Polyfill\\Mbstring\\": ""
  7181. }
  7182. },
  7183. "notification-url": "https://packagist.org/downloads/",
  7184. "license": [
  7185. "MIT"
  7186. ],
  7187. "authors": [
  7188. {
  7189. "name": "Nicolas Grekas",
  7190. "email": "p@tchwork.com"
  7191. },
  7192. {
  7193. "name": "Symfony Community",
  7194. "homepage": "https://symfony.com/contributors"
  7195. }
  7196. ],
  7197. "description": "Symfony polyfill for the Mbstring extension",
  7198. "homepage": "https://symfony.com",
  7199. "keywords": [
  7200. "compatibility",
  7201. "mbstring",
  7202. "polyfill",
  7203. "portable",
  7204. "shim"
  7205. ],
  7206. "support": {
  7207. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7208. },
  7209. "funding": [
  7210. {
  7211. "url": "https://symfony.com/sponsor",
  7212. "type": "custom"
  7213. },
  7214. {
  7215. "url": "https://github.com/fabpot",
  7216. "type": "github"
  7217. },
  7218. {
  7219. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7220. "type": "tidelift"
  7221. }
  7222. ],
  7223. "time": "2024-09-09T11:45:10+00:00"
  7224. },
  7225. {
  7226. "name": "symfony/polyfill-php80",
  7227. "version": "v1.31.0",
  7228. "source": {
  7229. "type": "git",
  7230. "url": "https://github.com/symfony/polyfill-php80.git",
  7231. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7232. },
  7233. "dist": {
  7234. "type": "zip",
  7235. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7236. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7237. "shasum": ""
  7238. },
  7239. "require": {
  7240. "php": ">=7.2"
  7241. },
  7242. "type": "library",
  7243. "extra": {
  7244. "thanks": {
  7245. "name": "symfony/polyfill",
  7246. "url": "https://github.com/symfony/polyfill"
  7247. }
  7248. },
  7249. "autoload": {
  7250. "files": [
  7251. "bootstrap.php"
  7252. ],
  7253. "psr-4": {
  7254. "Symfony\\Polyfill\\Php80\\": ""
  7255. },
  7256. "classmap": [
  7257. "Resources/stubs"
  7258. ]
  7259. },
  7260. "notification-url": "https://packagist.org/downloads/",
  7261. "license": [
  7262. "MIT"
  7263. ],
  7264. "authors": [
  7265. {
  7266. "name": "Ion Bazan",
  7267. "email": "ion.bazan@gmail.com"
  7268. },
  7269. {
  7270. "name": "Nicolas Grekas",
  7271. "email": "p@tchwork.com"
  7272. },
  7273. {
  7274. "name": "Symfony Community",
  7275. "homepage": "https://symfony.com/contributors"
  7276. }
  7277. ],
  7278. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7279. "homepage": "https://symfony.com",
  7280. "keywords": [
  7281. "compatibility",
  7282. "polyfill",
  7283. "portable",
  7284. "shim"
  7285. ],
  7286. "support": {
  7287. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7288. },
  7289. "funding": [
  7290. {
  7291. "url": "https://symfony.com/sponsor",
  7292. "type": "custom"
  7293. },
  7294. {
  7295. "url": "https://github.com/fabpot",
  7296. "type": "github"
  7297. },
  7298. {
  7299. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7300. "type": "tidelift"
  7301. }
  7302. ],
  7303. "time": "2024-09-09T11:45:10+00:00"
  7304. },
  7305. {
  7306. "name": "symfony/polyfill-php81",
  7307. "version": "v1.31.0",
  7308. "source": {
  7309. "type": "git",
  7310. "url": "https://github.com/symfony/polyfill-php81.git",
  7311. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  7312. },
  7313. "dist": {
  7314. "type": "zip",
  7315. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7316. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7317. "shasum": ""
  7318. },
  7319. "require": {
  7320. "php": ">=7.2"
  7321. },
  7322. "type": "library",
  7323. "extra": {
  7324. "thanks": {
  7325. "name": "symfony/polyfill",
  7326. "url": "https://github.com/symfony/polyfill"
  7327. }
  7328. },
  7329. "autoload": {
  7330. "files": [
  7331. "bootstrap.php"
  7332. ],
  7333. "psr-4": {
  7334. "Symfony\\Polyfill\\Php81\\": ""
  7335. },
  7336. "classmap": [
  7337. "Resources/stubs"
  7338. ]
  7339. },
  7340. "notification-url": "https://packagist.org/downloads/",
  7341. "license": [
  7342. "MIT"
  7343. ],
  7344. "authors": [
  7345. {
  7346. "name": "Nicolas Grekas",
  7347. "email": "p@tchwork.com"
  7348. },
  7349. {
  7350. "name": "Symfony Community",
  7351. "homepage": "https://symfony.com/contributors"
  7352. }
  7353. ],
  7354. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7355. "homepage": "https://symfony.com",
  7356. "keywords": [
  7357. "compatibility",
  7358. "polyfill",
  7359. "portable",
  7360. "shim"
  7361. ],
  7362. "support": {
  7363. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  7364. },
  7365. "funding": [
  7366. {
  7367. "url": "https://symfony.com/sponsor",
  7368. "type": "custom"
  7369. },
  7370. {
  7371. "url": "https://github.com/fabpot",
  7372. "type": "github"
  7373. },
  7374. {
  7375. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7376. "type": "tidelift"
  7377. }
  7378. ],
  7379. "time": "2024-09-09T11:45:10+00:00"
  7380. },
  7381. {
  7382. "name": "symfony/polyfill-php83",
  7383. "version": "v1.31.0",
  7384. "source": {
  7385. "type": "git",
  7386. "url": "https://github.com/symfony/polyfill-php83.git",
  7387. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  7388. },
  7389. "dist": {
  7390. "type": "zip",
  7391. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  7392. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  7393. "shasum": ""
  7394. },
  7395. "require": {
  7396. "php": ">=7.2"
  7397. },
  7398. "type": "library",
  7399. "extra": {
  7400. "thanks": {
  7401. "name": "symfony/polyfill",
  7402. "url": "https://github.com/symfony/polyfill"
  7403. }
  7404. },
  7405. "autoload": {
  7406. "files": [
  7407. "bootstrap.php"
  7408. ],
  7409. "psr-4": {
  7410. "Symfony\\Polyfill\\Php83\\": ""
  7411. },
  7412. "classmap": [
  7413. "Resources/stubs"
  7414. ]
  7415. },
  7416. "notification-url": "https://packagist.org/downloads/",
  7417. "license": [
  7418. "MIT"
  7419. ],
  7420. "authors": [
  7421. {
  7422. "name": "Nicolas Grekas",
  7423. "email": "p@tchwork.com"
  7424. },
  7425. {
  7426. "name": "Symfony Community",
  7427. "homepage": "https://symfony.com/contributors"
  7428. }
  7429. ],
  7430. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  7431. "homepage": "https://symfony.com",
  7432. "keywords": [
  7433. "compatibility",
  7434. "polyfill",
  7435. "portable",
  7436. "shim"
  7437. ],
  7438. "support": {
  7439. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  7440. },
  7441. "funding": [
  7442. {
  7443. "url": "https://symfony.com/sponsor",
  7444. "type": "custom"
  7445. },
  7446. {
  7447. "url": "https://github.com/fabpot",
  7448. "type": "github"
  7449. },
  7450. {
  7451. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7452. "type": "tidelift"
  7453. }
  7454. ],
  7455. "time": "2024-09-09T11:45:10+00:00"
  7456. },
  7457. {
  7458. "name": "symfony/polyfill-uuid",
  7459. "version": "v1.31.0",
  7460. "source": {
  7461. "type": "git",
  7462. "url": "https://github.com/symfony/polyfill-uuid.git",
  7463. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  7464. },
  7465. "dist": {
  7466. "type": "zip",
  7467. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  7468. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  7469. "shasum": ""
  7470. },
  7471. "require": {
  7472. "php": ">=7.2"
  7473. },
  7474. "provide": {
  7475. "ext-uuid": "*"
  7476. },
  7477. "suggest": {
  7478. "ext-uuid": "For best performance"
  7479. },
  7480. "type": "library",
  7481. "extra": {
  7482. "thanks": {
  7483. "name": "symfony/polyfill",
  7484. "url": "https://github.com/symfony/polyfill"
  7485. }
  7486. },
  7487. "autoload": {
  7488. "files": [
  7489. "bootstrap.php"
  7490. ],
  7491. "psr-4": {
  7492. "Symfony\\Polyfill\\Uuid\\": ""
  7493. }
  7494. },
  7495. "notification-url": "https://packagist.org/downloads/",
  7496. "license": [
  7497. "MIT"
  7498. ],
  7499. "authors": [
  7500. {
  7501. "name": "Grégoire Pineau",
  7502. "email": "lyrixx@lyrixx.info"
  7503. },
  7504. {
  7505. "name": "Symfony Community",
  7506. "homepage": "https://symfony.com/contributors"
  7507. }
  7508. ],
  7509. "description": "Symfony polyfill for uuid functions",
  7510. "homepage": "https://symfony.com",
  7511. "keywords": [
  7512. "compatibility",
  7513. "polyfill",
  7514. "portable",
  7515. "uuid"
  7516. ],
  7517. "support": {
  7518. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  7519. },
  7520. "funding": [
  7521. {
  7522. "url": "https://symfony.com/sponsor",
  7523. "type": "custom"
  7524. },
  7525. {
  7526. "url": "https://github.com/fabpot",
  7527. "type": "github"
  7528. },
  7529. {
  7530. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7531. "type": "tidelift"
  7532. }
  7533. ],
  7534. "time": "2024-09-09T11:45:10+00:00"
  7535. },
  7536. {
  7537. "name": "symfony/process",
  7538. "version": "v7.1.8",
  7539. "source": {
  7540. "type": "git",
  7541. "url": "https://github.com/symfony/process.git",
  7542. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892"
  7543. },
  7544. "dist": {
  7545. "type": "zip",
  7546. "url": "https://api.github.com/repos/symfony/process/zipball/42783370fda6e538771f7c7a36e9fa2ee3a84892",
  7547. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892",
  7548. "shasum": ""
  7549. },
  7550. "require": {
  7551. "php": ">=8.2"
  7552. },
  7553. "type": "library",
  7554. "autoload": {
  7555. "psr-4": {
  7556. "Symfony\\Component\\Process\\": ""
  7557. },
  7558. "exclude-from-classmap": [
  7559. "/Tests/"
  7560. ]
  7561. },
  7562. "notification-url": "https://packagist.org/downloads/",
  7563. "license": [
  7564. "MIT"
  7565. ],
  7566. "authors": [
  7567. {
  7568. "name": "Fabien Potencier",
  7569. "email": "fabien@symfony.com"
  7570. },
  7571. {
  7572. "name": "Symfony Community",
  7573. "homepage": "https://symfony.com/contributors"
  7574. }
  7575. ],
  7576. "description": "Executes commands in sub-processes",
  7577. "homepage": "https://symfony.com",
  7578. "support": {
  7579. "source": "https://github.com/symfony/process/tree/v7.1.8"
  7580. },
  7581. "funding": [
  7582. {
  7583. "url": "https://symfony.com/sponsor",
  7584. "type": "custom"
  7585. },
  7586. {
  7587. "url": "https://github.com/fabpot",
  7588. "type": "github"
  7589. },
  7590. {
  7591. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7592. "type": "tidelift"
  7593. }
  7594. ],
  7595. "time": "2024-11-06T14:23:19+00:00"
  7596. },
  7597. {
  7598. "name": "symfony/psr-http-message-bridge",
  7599. "version": "v7.1.6",
  7600. "source": {
  7601. "type": "git",
  7602. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7603. "reference": "f16471bb19f6685b9ccf0a2c03c213840ae68cd6"
  7604. },
  7605. "dist": {
  7606. "type": "zip",
  7607. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/f16471bb19f6685b9ccf0a2c03c213840ae68cd6",
  7608. "reference": "f16471bb19f6685b9ccf0a2c03c213840ae68cd6",
  7609. "shasum": ""
  7610. },
  7611. "require": {
  7612. "php": ">=8.2",
  7613. "psr/http-message": "^1.0|^2.0",
  7614. "symfony/http-foundation": "^6.4|^7.0"
  7615. },
  7616. "conflict": {
  7617. "php-http/discovery": "<1.15",
  7618. "symfony/http-kernel": "<6.4"
  7619. },
  7620. "require-dev": {
  7621. "nyholm/psr7": "^1.1",
  7622. "php-http/discovery": "^1.15",
  7623. "psr/log": "^1.1.4|^2|^3",
  7624. "symfony/browser-kit": "^6.4|^7.0",
  7625. "symfony/config": "^6.4|^7.0",
  7626. "symfony/event-dispatcher": "^6.4|^7.0",
  7627. "symfony/framework-bundle": "^6.4|^7.0",
  7628. "symfony/http-kernel": "^6.4|^7.0"
  7629. },
  7630. "type": "symfony-bridge",
  7631. "autoload": {
  7632. "psr-4": {
  7633. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7634. },
  7635. "exclude-from-classmap": [
  7636. "/Tests/"
  7637. ]
  7638. },
  7639. "notification-url": "https://packagist.org/downloads/",
  7640. "license": [
  7641. "MIT"
  7642. ],
  7643. "authors": [
  7644. {
  7645. "name": "Fabien Potencier",
  7646. "email": "fabien@symfony.com"
  7647. },
  7648. {
  7649. "name": "Symfony Community",
  7650. "homepage": "https://symfony.com/contributors"
  7651. }
  7652. ],
  7653. "description": "PSR HTTP message bridge",
  7654. "homepage": "https://symfony.com",
  7655. "keywords": [
  7656. "http",
  7657. "http-message",
  7658. "psr-17",
  7659. "psr-7"
  7660. ],
  7661. "support": {
  7662. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.1.6"
  7663. },
  7664. "funding": [
  7665. {
  7666. "url": "https://symfony.com/sponsor",
  7667. "type": "custom"
  7668. },
  7669. {
  7670. "url": "https://github.com/fabpot",
  7671. "type": "github"
  7672. },
  7673. {
  7674. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7675. "type": "tidelift"
  7676. }
  7677. ],
  7678. "time": "2024-09-25T14:20:29+00:00"
  7679. },
  7680. {
  7681. "name": "symfony/routing",
  7682. "version": "v7.1.6",
  7683. "source": {
  7684. "type": "git",
  7685. "url": "https://github.com/symfony/routing.git",
  7686. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a"
  7687. },
  7688. "dist": {
  7689. "type": "zip",
  7690. "url": "https://api.github.com/repos/symfony/routing/zipball/66a2c469f6c22d08603235c46a20007c0701ea0a",
  7691. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a",
  7692. "shasum": ""
  7693. },
  7694. "require": {
  7695. "php": ">=8.2",
  7696. "symfony/deprecation-contracts": "^2.5|^3"
  7697. },
  7698. "conflict": {
  7699. "symfony/config": "<6.4",
  7700. "symfony/dependency-injection": "<6.4",
  7701. "symfony/yaml": "<6.4"
  7702. },
  7703. "require-dev": {
  7704. "psr/log": "^1|^2|^3",
  7705. "symfony/config": "^6.4|^7.0",
  7706. "symfony/dependency-injection": "^6.4|^7.0",
  7707. "symfony/expression-language": "^6.4|^7.0",
  7708. "symfony/http-foundation": "^6.4|^7.0",
  7709. "symfony/yaml": "^6.4|^7.0"
  7710. },
  7711. "type": "library",
  7712. "autoload": {
  7713. "psr-4": {
  7714. "Symfony\\Component\\Routing\\": ""
  7715. },
  7716. "exclude-from-classmap": [
  7717. "/Tests/"
  7718. ]
  7719. },
  7720. "notification-url": "https://packagist.org/downloads/",
  7721. "license": [
  7722. "MIT"
  7723. ],
  7724. "authors": [
  7725. {
  7726. "name": "Fabien Potencier",
  7727. "email": "fabien@symfony.com"
  7728. },
  7729. {
  7730. "name": "Symfony Community",
  7731. "homepage": "https://symfony.com/contributors"
  7732. }
  7733. ],
  7734. "description": "Maps an HTTP request to a set of configuration variables",
  7735. "homepage": "https://symfony.com",
  7736. "keywords": [
  7737. "router",
  7738. "routing",
  7739. "uri",
  7740. "url"
  7741. ],
  7742. "support": {
  7743. "source": "https://github.com/symfony/routing/tree/v7.1.6"
  7744. },
  7745. "funding": [
  7746. {
  7747. "url": "https://symfony.com/sponsor",
  7748. "type": "custom"
  7749. },
  7750. {
  7751. "url": "https://github.com/fabpot",
  7752. "type": "github"
  7753. },
  7754. {
  7755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7756. "type": "tidelift"
  7757. }
  7758. ],
  7759. "time": "2024-10-01T08:31:23+00:00"
  7760. },
  7761. {
  7762. "name": "symfony/service-contracts",
  7763. "version": "v3.5.0",
  7764. "source": {
  7765. "type": "git",
  7766. "url": "https://github.com/symfony/service-contracts.git",
  7767. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7768. },
  7769. "dist": {
  7770. "type": "zip",
  7771. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7772. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7773. "shasum": ""
  7774. },
  7775. "require": {
  7776. "php": ">=8.1",
  7777. "psr/container": "^1.1|^2.0",
  7778. "symfony/deprecation-contracts": "^2.5|^3"
  7779. },
  7780. "conflict": {
  7781. "ext-psr": "<1.1|>=2"
  7782. },
  7783. "type": "library",
  7784. "extra": {
  7785. "branch-alias": {
  7786. "dev-main": "3.5-dev"
  7787. },
  7788. "thanks": {
  7789. "name": "symfony/contracts",
  7790. "url": "https://github.com/symfony/contracts"
  7791. }
  7792. },
  7793. "autoload": {
  7794. "psr-4": {
  7795. "Symfony\\Contracts\\Service\\": ""
  7796. },
  7797. "exclude-from-classmap": [
  7798. "/Test/"
  7799. ]
  7800. },
  7801. "notification-url": "https://packagist.org/downloads/",
  7802. "license": [
  7803. "MIT"
  7804. ],
  7805. "authors": [
  7806. {
  7807. "name": "Nicolas Grekas",
  7808. "email": "p@tchwork.com"
  7809. },
  7810. {
  7811. "name": "Symfony Community",
  7812. "homepage": "https://symfony.com/contributors"
  7813. }
  7814. ],
  7815. "description": "Generic abstractions related to writing services",
  7816. "homepage": "https://symfony.com",
  7817. "keywords": [
  7818. "abstractions",
  7819. "contracts",
  7820. "decoupling",
  7821. "interfaces",
  7822. "interoperability",
  7823. "standards"
  7824. ],
  7825. "support": {
  7826. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7827. },
  7828. "funding": [
  7829. {
  7830. "url": "https://symfony.com/sponsor",
  7831. "type": "custom"
  7832. },
  7833. {
  7834. "url": "https://github.com/fabpot",
  7835. "type": "github"
  7836. },
  7837. {
  7838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7839. "type": "tidelift"
  7840. }
  7841. ],
  7842. "time": "2024-04-18T09:32:20+00:00"
  7843. },
  7844. {
  7845. "name": "symfony/string",
  7846. "version": "v7.1.8",
  7847. "source": {
  7848. "type": "git",
  7849. "url": "https://github.com/symfony/string.git",
  7850. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281"
  7851. },
  7852. "dist": {
  7853. "type": "zip",
  7854. "url": "https://api.github.com/repos/symfony/string/zipball/591ebd41565f356fcd8b090fe64dbb5878f50281",
  7855. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281",
  7856. "shasum": ""
  7857. },
  7858. "require": {
  7859. "php": ">=8.2",
  7860. "symfony/polyfill-ctype": "~1.8",
  7861. "symfony/polyfill-intl-grapheme": "~1.0",
  7862. "symfony/polyfill-intl-normalizer": "~1.0",
  7863. "symfony/polyfill-mbstring": "~1.0"
  7864. },
  7865. "conflict": {
  7866. "symfony/translation-contracts": "<2.5"
  7867. },
  7868. "require-dev": {
  7869. "symfony/emoji": "^7.1",
  7870. "symfony/error-handler": "^6.4|^7.0",
  7871. "symfony/http-client": "^6.4|^7.0",
  7872. "symfony/intl": "^6.4|^7.0",
  7873. "symfony/translation-contracts": "^2.5|^3.0",
  7874. "symfony/var-exporter": "^6.4|^7.0"
  7875. },
  7876. "type": "library",
  7877. "autoload": {
  7878. "files": [
  7879. "Resources/functions.php"
  7880. ],
  7881. "psr-4": {
  7882. "Symfony\\Component\\String\\": ""
  7883. },
  7884. "exclude-from-classmap": [
  7885. "/Tests/"
  7886. ]
  7887. },
  7888. "notification-url": "https://packagist.org/downloads/",
  7889. "license": [
  7890. "MIT"
  7891. ],
  7892. "authors": [
  7893. {
  7894. "name": "Nicolas Grekas",
  7895. "email": "p@tchwork.com"
  7896. },
  7897. {
  7898. "name": "Symfony Community",
  7899. "homepage": "https://symfony.com/contributors"
  7900. }
  7901. ],
  7902. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7903. "homepage": "https://symfony.com",
  7904. "keywords": [
  7905. "grapheme",
  7906. "i18n",
  7907. "string",
  7908. "unicode",
  7909. "utf-8",
  7910. "utf8"
  7911. ],
  7912. "support": {
  7913. "source": "https://github.com/symfony/string/tree/v7.1.8"
  7914. },
  7915. "funding": [
  7916. {
  7917. "url": "https://symfony.com/sponsor",
  7918. "type": "custom"
  7919. },
  7920. {
  7921. "url": "https://github.com/fabpot",
  7922. "type": "github"
  7923. },
  7924. {
  7925. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7926. "type": "tidelift"
  7927. }
  7928. ],
  7929. "time": "2024-11-13T13:31:21+00:00"
  7930. },
  7931. {
  7932. "name": "symfony/translation",
  7933. "version": "v7.1.6",
  7934. "source": {
  7935. "type": "git",
  7936. "url": "https://github.com/symfony/translation.git",
  7937. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f"
  7938. },
  7939. "dist": {
  7940. "type": "zip",
  7941. "url": "https://api.github.com/repos/symfony/translation/zipball/b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7942. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7943. "shasum": ""
  7944. },
  7945. "require": {
  7946. "php": ">=8.2",
  7947. "symfony/polyfill-mbstring": "~1.0",
  7948. "symfony/translation-contracts": "^2.5|^3.0"
  7949. },
  7950. "conflict": {
  7951. "symfony/config": "<6.4",
  7952. "symfony/console": "<6.4",
  7953. "symfony/dependency-injection": "<6.4",
  7954. "symfony/http-client-contracts": "<2.5",
  7955. "symfony/http-kernel": "<6.4",
  7956. "symfony/service-contracts": "<2.5",
  7957. "symfony/twig-bundle": "<6.4",
  7958. "symfony/yaml": "<6.4"
  7959. },
  7960. "provide": {
  7961. "symfony/translation-implementation": "2.3|3.0"
  7962. },
  7963. "require-dev": {
  7964. "nikic/php-parser": "^4.18|^5.0",
  7965. "psr/log": "^1|^2|^3",
  7966. "symfony/config": "^6.4|^7.0",
  7967. "symfony/console": "^6.4|^7.0",
  7968. "symfony/dependency-injection": "^6.4|^7.0",
  7969. "symfony/finder": "^6.4|^7.0",
  7970. "symfony/http-client-contracts": "^2.5|^3.0",
  7971. "symfony/http-kernel": "^6.4|^7.0",
  7972. "symfony/intl": "^6.4|^7.0",
  7973. "symfony/polyfill-intl-icu": "^1.21",
  7974. "symfony/routing": "^6.4|^7.0",
  7975. "symfony/service-contracts": "^2.5|^3",
  7976. "symfony/yaml": "^6.4|^7.0"
  7977. },
  7978. "type": "library",
  7979. "autoload": {
  7980. "files": [
  7981. "Resources/functions.php"
  7982. ],
  7983. "psr-4": {
  7984. "Symfony\\Component\\Translation\\": ""
  7985. },
  7986. "exclude-from-classmap": [
  7987. "/Tests/"
  7988. ]
  7989. },
  7990. "notification-url": "https://packagist.org/downloads/",
  7991. "license": [
  7992. "MIT"
  7993. ],
  7994. "authors": [
  7995. {
  7996. "name": "Fabien Potencier",
  7997. "email": "fabien@symfony.com"
  7998. },
  7999. {
  8000. "name": "Symfony Community",
  8001. "homepage": "https://symfony.com/contributors"
  8002. }
  8003. ],
  8004. "description": "Provides tools to internationalize your application",
  8005. "homepage": "https://symfony.com",
  8006. "support": {
  8007. "source": "https://github.com/symfony/translation/tree/v7.1.6"
  8008. },
  8009. "funding": [
  8010. {
  8011. "url": "https://symfony.com/sponsor",
  8012. "type": "custom"
  8013. },
  8014. {
  8015. "url": "https://github.com/fabpot",
  8016. "type": "github"
  8017. },
  8018. {
  8019. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8020. "type": "tidelift"
  8021. }
  8022. ],
  8023. "time": "2024-09-28T12:35:13+00:00"
  8024. },
  8025. {
  8026. "name": "symfony/translation-contracts",
  8027. "version": "v3.5.0",
  8028. "source": {
  8029. "type": "git",
  8030. "url": "https://github.com/symfony/translation-contracts.git",
  8031. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  8032. },
  8033. "dist": {
  8034. "type": "zip",
  8035. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  8036. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  8037. "shasum": ""
  8038. },
  8039. "require": {
  8040. "php": ">=8.1"
  8041. },
  8042. "type": "library",
  8043. "extra": {
  8044. "branch-alias": {
  8045. "dev-main": "3.5-dev"
  8046. },
  8047. "thanks": {
  8048. "name": "symfony/contracts",
  8049. "url": "https://github.com/symfony/contracts"
  8050. }
  8051. },
  8052. "autoload": {
  8053. "psr-4": {
  8054. "Symfony\\Contracts\\Translation\\": ""
  8055. },
  8056. "exclude-from-classmap": [
  8057. "/Test/"
  8058. ]
  8059. },
  8060. "notification-url": "https://packagist.org/downloads/",
  8061. "license": [
  8062. "MIT"
  8063. ],
  8064. "authors": [
  8065. {
  8066. "name": "Nicolas Grekas",
  8067. "email": "p@tchwork.com"
  8068. },
  8069. {
  8070. "name": "Symfony Community",
  8071. "homepage": "https://symfony.com/contributors"
  8072. }
  8073. ],
  8074. "description": "Generic abstractions related to translation",
  8075. "homepage": "https://symfony.com",
  8076. "keywords": [
  8077. "abstractions",
  8078. "contracts",
  8079. "decoupling",
  8080. "interfaces",
  8081. "interoperability",
  8082. "standards"
  8083. ],
  8084. "support": {
  8085. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  8086. },
  8087. "funding": [
  8088. {
  8089. "url": "https://symfony.com/sponsor",
  8090. "type": "custom"
  8091. },
  8092. {
  8093. "url": "https://github.com/fabpot",
  8094. "type": "github"
  8095. },
  8096. {
  8097. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8098. "type": "tidelift"
  8099. }
  8100. ],
  8101. "time": "2024-04-18T09:32:20+00:00"
  8102. },
  8103. {
  8104. "name": "symfony/uid",
  8105. "version": "v7.1.6",
  8106. "source": {
  8107. "type": "git",
  8108. "url": "https://github.com/symfony/uid.git",
  8109. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917"
  8110. },
  8111. "dist": {
  8112. "type": "zip",
  8113. "url": "https://api.github.com/repos/symfony/uid/zipball/65befb3bb2d503bbffbd08c815aa38b472999917",
  8114. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917",
  8115. "shasum": ""
  8116. },
  8117. "require": {
  8118. "php": ">=8.2",
  8119. "symfony/polyfill-uuid": "^1.15"
  8120. },
  8121. "require-dev": {
  8122. "symfony/console": "^6.4|^7.0"
  8123. },
  8124. "type": "library",
  8125. "autoload": {
  8126. "psr-4": {
  8127. "Symfony\\Component\\Uid\\": ""
  8128. },
  8129. "exclude-from-classmap": [
  8130. "/Tests/"
  8131. ]
  8132. },
  8133. "notification-url": "https://packagist.org/downloads/",
  8134. "license": [
  8135. "MIT"
  8136. ],
  8137. "authors": [
  8138. {
  8139. "name": "Grégoire Pineau",
  8140. "email": "lyrixx@lyrixx.info"
  8141. },
  8142. {
  8143. "name": "Nicolas Grekas",
  8144. "email": "p@tchwork.com"
  8145. },
  8146. {
  8147. "name": "Symfony Community",
  8148. "homepage": "https://symfony.com/contributors"
  8149. }
  8150. ],
  8151. "description": "Provides an object-oriented API to generate and represent UIDs",
  8152. "homepage": "https://symfony.com",
  8153. "keywords": [
  8154. "UID",
  8155. "ulid",
  8156. "uuid"
  8157. ],
  8158. "support": {
  8159. "source": "https://github.com/symfony/uid/tree/v7.1.6"
  8160. },
  8161. "funding": [
  8162. {
  8163. "url": "https://symfony.com/sponsor",
  8164. "type": "custom"
  8165. },
  8166. {
  8167. "url": "https://github.com/fabpot",
  8168. "type": "github"
  8169. },
  8170. {
  8171. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8172. "type": "tidelift"
  8173. }
  8174. ],
  8175. "time": "2024-09-25T14:20:29+00:00"
  8176. },
  8177. {
  8178. "name": "symfony/var-dumper",
  8179. "version": "v7.1.8",
  8180. "source": {
  8181. "type": "git",
  8182. "url": "https://github.com/symfony/var-dumper.git",
  8183. "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8"
  8184. },
  8185. "dist": {
  8186. "type": "zip",
  8187. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
  8188. "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
  8189. "shasum": ""
  8190. },
  8191. "require": {
  8192. "php": ">=8.2",
  8193. "symfony/polyfill-mbstring": "~1.0"
  8194. },
  8195. "conflict": {
  8196. "symfony/console": "<6.4"
  8197. },
  8198. "require-dev": {
  8199. "ext-iconv": "*",
  8200. "symfony/console": "^6.4|^7.0",
  8201. "symfony/http-kernel": "^6.4|^7.0",
  8202. "symfony/process": "^6.4|^7.0",
  8203. "symfony/uid": "^6.4|^7.0",
  8204. "twig/twig": "^3.0.4"
  8205. },
  8206. "bin": [
  8207. "Resources/bin/var-dump-server"
  8208. ],
  8209. "type": "library",
  8210. "autoload": {
  8211. "files": [
  8212. "Resources/functions/dump.php"
  8213. ],
  8214. "psr-4": {
  8215. "Symfony\\Component\\VarDumper\\": ""
  8216. },
  8217. "exclude-from-classmap": [
  8218. "/Tests/"
  8219. ]
  8220. },
  8221. "notification-url": "https://packagist.org/downloads/",
  8222. "license": [
  8223. "MIT"
  8224. ],
  8225. "authors": [
  8226. {
  8227. "name": "Nicolas Grekas",
  8228. "email": "p@tchwork.com"
  8229. },
  8230. {
  8231. "name": "Symfony Community",
  8232. "homepage": "https://symfony.com/contributors"
  8233. }
  8234. ],
  8235. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8236. "homepage": "https://symfony.com",
  8237. "keywords": [
  8238. "debug",
  8239. "dump"
  8240. ],
  8241. "support": {
  8242. "source": "https://github.com/symfony/var-dumper/tree/v7.1.8"
  8243. },
  8244. "funding": [
  8245. {
  8246. "url": "https://symfony.com/sponsor",
  8247. "type": "custom"
  8248. },
  8249. {
  8250. "url": "https://github.com/fabpot",
  8251. "type": "github"
  8252. },
  8253. {
  8254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8255. "type": "tidelift"
  8256. }
  8257. ],
  8258. "time": "2024-11-08T15:46:42+00:00"
  8259. },
  8260. {
  8261. "name": "symfony/var-exporter",
  8262. "version": "v7.1.6",
  8263. "source": {
  8264. "type": "git",
  8265. "url": "https://github.com/symfony/var-exporter.git",
  8266. "reference": "90173ef89c40e7c8c616653241048705f84130ef"
  8267. },
  8268. "dist": {
  8269. "type": "zip",
  8270. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/90173ef89c40e7c8c616653241048705f84130ef",
  8271. "reference": "90173ef89c40e7c8c616653241048705f84130ef",
  8272. "shasum": ""
  8273. },
  8274. "require": {
  8275. "php": ">=8.2"
  8276. },
  8277. "require-dev": {
  8278. "symfony/property-access": "^6.4|^7.0",
  8279. "symfony/serializer": "^6.4|^7.0",
  8280. "symfony/var-dumper": "^6.4|^7.0"
  8281. },
  8282. "type": "library",
  8283. "autoload": {
  8284. "psr-4": {
  8285. "Symfony\\Component\\VarExporter\\": ""
  8286. },
  8287. "exclude-from-classmap": [
  8288. "/Tests/"
  8289. ]
  8290. },
  8291. "notification-url": "https://packagist.org/downloads/",
  8292. "license": [
  8293. "MIT"
  8294. ],
  8295. "authors": [
  8296. {
  8297. "name": "Nicolas Grekas",
  8298. "email": "p@tchwork.com"
  8299. },
  8300. {
  8301. "name": "Symfony Community",
  8302. "homepage": "https://symfony.com/contributors"
  8303. }
  8304. ],
  8305. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8306. "homepage": "https://symfony.com",
  8307. "keywords": [
  8308. "clone",
  8309. "construct",
  8310. "export",
  8311. "hydrate",
  8312. "instantiate",
  8313. "lazy-loading",
  8314. "proxy",
  8315. "serialize"
  8316. ],
  8317. "support": {
  8318. "source": "https://github.com/symfony/var-exporter/tree/v7.1.6"
  8319. },
  8320. "funding": [
  8321. {
  8322. "url": "https://symfony.com/sponsor",
  8323. "type": "custom"
  8324. },
  8325. {
  8326. "url": "https://github.com/fabpot",
  8327. "type": "github"
  8328. },
  8329. {
  8330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8331. "type": "tidelift"
  8332. }
  8333. ],
  8334. "time": "2024-09-25T14:20:29+00:00"
  8335. },
  8336. {
  8337. "name": "symfony/yaml",
  8338. "version": "v7.1.6",
  8339. "source": {
  8340. "type": "git",
  8341. "url": "https://github.com/symfony/yaml.git",
  8342. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671"
  8343. },
  8344. "dist": {
  8345. "type": "zip",
  8346. "url": "https://api.github.com/repos/symfony/yaml/zipball/3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  8347. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  8348. "shasum": ""
  8349. },
  8350. "require": {
  8351. "php": ">=8.2",
  8352. "symfony/polyfill-ctype": "^1.8"
  8353. },
  8354. "conflict": {
  8355. "symfony/console": "<6.4"
  8356. },
  8357. "require-dev": {
  8358. "symfony/console": "^6.4|^7.0"
  8359. },
  8360. "bin": [
  8361. "Resources/bin/yaml-lint"
  8362. ],
  8363. "type": "library",
  8364. "autoload": {
  8365. "psr-4": {
  8366. "Symfony\\Component\\Yaml\\": ""
  8367. },
  8368. "exclude-from-classmap": [
  8369. "/Tests/"
  8370. ]
  8371. },
  8372. "notification-url": "https://packagist.org/downloads/",
  8373. "license": [
  8374. "MIT"
  8375. ],
  8376. "authors": [
  8377. {
  8378. "name": "Fabien Potencier",
  8379. "email": "fabien@symfony.com"
  8380. },
  8381. {
  8382. "name": "Symfony Community",
  8383. "homepage": "https://symfony.com/contributors"
  8384. }
  8385. ],
  8386. "description": "Loads and dumps YAML files",
  8387. "homepage": "https://symfony.com",
  8388. "support": {
  8389. "source": "https://github.com/symfony/yaml/tree/v7.1.6"
  8390. },
  8391. "funding": [
  8392. {
  8393. "url": "https://symfony.com/sponsor",
  8394. "type": "custom"
  8395. },
  8396. {
  8397. "url": "https://github.com/fabpot",
  8398. "type": "github"
  8399. },
  8400. {
  8401. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8402. "type": "tidelift"
  8403. }
  8404. ],
  8405. "time": "2024-09-25T14:20:29+00:00"
  8406. },
  8407. {
  8408. "name": "thenorthmemory/xml",
  8409. "version": "1.1.1",
  8410. "source": {
  8411. "type": "git",
  8412. "url": "https://github.com/TheNorthMemory/xml.git",
  8413. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb"
  8414. },
  8415. "dist": {
  8416. "type": "zip",
  8417. "url": "https://api.github.com/repos/TheNorthMemory/xml/zipball/6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  8418. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  8419. "shasum": ""
  8420. },
  8421. "require": {
  8422. "ext-libxml": "*",
  8423. "ext-simplexml": "*",
  8424. "php": ">=7.1.2"
  8425. },
  8426. "require-dev": {
  8427. "phpstan/phpstan": "^0.12.89 || ^1.0",
  8428. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  8429. },
  8430. "type": "library",
  8431. "autoload": {
  8432. "psr-4": {
  8433. "TheNorthMemory\\Xml\\": "src/"
  8434. }
  8435. },
  8436. "notification-url": "https://packagist.org/downloads/",
  8437. "license": [
  8438. "Apache-2.0"
  8439. ],
  8440. "authors": [
  8441. {
  8442. "name": "James ZHANG",
  8443. "homepage": "https://github.com/TheNorthMemory"
  8444. }
  8445. ],
  8446. "description": "A wrapper of the XML parser and builder",
  8447. "homepage": "https://github.com/TheNorthMemory/xml",
  8448. "keywords": [
  8449. "xml-builder",
  8450. "xml-parser"
  8451. ],
  8452. "support": {
  8453. "issues": "https://github.com/TheNorthMemory/xml/issues",
  8454. "source": "https://github.com/TheNorthMemory/xml/tree/1.1.1"
  8455. },
  8456. "time": "2023-01-15T06:01:13+00:00"
  8457. },
  8458. {
  8459. "name": "tijsverkoyen/css-to-inline-styles",
  8460. "version": "v2.2.7",
  8461. "source": {
  8462. "type": "git",
  8463. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8464. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  8465. },
  8466. "dist": {
  8467. "type": "zip",
  8468. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8469. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8470. "shasum": ""
  8471. },
  8472. "require": {
  8473. "ext-dom": "*",
  8474. "ext-libxml": "*",
  8475. "php": "^5.5 || ^7.0 || ^8.0",
  8476. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  8477. },
  8478. "require-dev": {
  8479. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8480. },
  8481. "type": "library",
  8482. "extra": {
  8483. "branch-alias": {
  8484. "dev-master": "2.2.x-dev"
  8485. }
  8486. },
  8487. "autoload": {
  8488. "psr-4": {
  8489. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8490. }
  8491. },
  8492. "notification-url": "https://packagist.org/downloads/",
  8493. "license": [
  8494. "BSD-3-Clause"
  8495. ],
  8496. "authors": [
  8497. {
  8498. "name": "Tijs Verkoyen",
  8499. "email": "css_to_inline_styles@verkoyen.eu",
  8500. "role": "Developer"
  8501. }
  8502. ],
  8503. "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.",
  8504. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8505. "support": {
  8506. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8507. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  8508. },
  8509. "time": "2023-12-08T13:03:43+00:00"
  8510. },
  8511. {
  8512. "name": "vlucas/phpdotenv",
  8513. "version": "v5.6.1",
  8514. "source": {
  8515. "type": "git",
  8516. "url": "https://github.com/vlucas/phpdotenv.git",
  8517. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  8518. },
  8519. "dist": {
  8520. "type": "zip",
  8521. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8522. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8523. "shasum": ""
  8524. },
  8525. "require": {
  8526. "ext-pcre": "*",
  8527. "graham-campbell/result-type": "^1.1.3",
  8528. "php": "^7.2.5 || ^8.0",
  8529. "phpoption/phpoption": "^1.9.3",
  8530. "symfony/polyfill-ctype": "^1.24",
  8531. "symfony/polyfill-mbstring": "^1.24",
  8532. "symfony/polyfill-php80": "^1.24"
  8533. },
  8534. "require-dev": {
  8535. "bamarni/composer-bin-plugin": "^1.8.2",
  8536. "ext-filter": "*",
  8537. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8538. },
  8539. "suggest": {
  8540. "ext-filter": "Required to use the boolean validator."
  8541. },
  8542. "type": "library",
  8543. "extra": {
  8544. "bamarni-bin": {
  8545. "bin-links": true,
  8546. "forward-command": false
  8547. },
  8548. "branch-alias": {
  8549. "dev-master": "5.6-dev"
  8550. }
  8551. },
  8552. "autoload": {
  8553. "psr-4": {
  8554. "Dotenv\\": "src/"
  8555. }
  8556. },
  8557. "notification-url": "https://packagist.org/downloads/",
  8558. "license": [
  8559. "BSD-3-Clause"
  8560. ],
  8561. "authors": [
  8562. {
  8563. "name": "Graham Campbell",
  8564. "email": "hello@gjcampbell.co.uk",
  8565. "homepage": "https://github.com/GrahamCampbell"
  8566. },
  8567. {
  8568. "name": "Vance Lucas",
  8569. "email": "vance@vancelucas.com",
  8570. "homepage": "https://github.com/vlucas"
  8571. }
  8572. ],
  8573. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8574. "keywords": [
  8575. "dotenv",
  8576. "env",
  8577. "environment"
  8578. ],
  8579. "support": {
  8580. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8581. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8582. },
  8583. "funding": [
  8584. {
  8585. "url": "https://github.com/GrahamCampbell",
  8586. "type": "github"
  8587. },
  8588. {
  8589. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8590. "type": "tidelift"
  8591. }
  8592. ],
  8593. "time": "2024-07-20T21:52:34+00:00"
  8594. },
  8595. {
  8596. "name": "voku/portable-ascii",
  8597. "version": "2.0.3",
  8598. "source": {
  8599. "type": "git",
  8600. "url": "https://github.com/voku/portable-ascii.git",
  8601. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  8602. },
  8603. "dist": {
  8604. "type": "zip",
  8605. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  8606. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  8607. "shasum": ""
  8608. },
  8609. "require": {
  8610. "php": ">=7.0.0"
  8611. },
  8612. "require-dev": {
  8613. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8614. },
  8615. "suggest": {
  8616. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8617. },
  8618. "type": "library",
  8619. "autoload": {
  8620. "psr-4": {
  8621. "voku\\": "src/voku/"
  8622. }
  8623. },
  8624. "notification-url": "https://packagist.org/downloads/",
  8625. "license": [
  8626. "MIT"
  8627. ],
  8628. "authors": [
  8629. {
  8630. "name": "Lars Moelleken",
  8631. "homepage": "https://www.moelleken.org/"
  8632. }
  8633. ],
  8634. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8635. "homepage": "https://github.com/voku/portable-ascii",
  8636. "keywords": [
  8637. "ascii",
  8638. "clean",
  8639. "php"
  8640. ],
  8641. "support": {
  8642. "issues": "https://github.com/voku/portable-ascii/issues",
  8643. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  8644. },
  8645. "funding": [
  8646. {
  8647. "url": "https://www.paypal.me/moelleken",
  8648. "type": "custom"
  8649. },
  8650. {
  8651. "url": "https://github.com/voku",
  8652. "type": "github"
  8653. },
  8654. {
  8655. "url": "https://opencollective.com/portable-ascii",
  8656. "type": "open_collective"
  8657. },
  8658. {
  8659. "url": "https://www.patreon.com/voku",
  8660. "type": "patreon"
  8661. },
  8662. {
  8663. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8664. "type": "tidelift"
  8665. }
  8666. ],
  8667. "time": "2024-11-21T01:49:47+00:00"
  8668. },
  8669. {
  8670. "name": "w7corp/easywechat",
  8671. "version": "6.15.5",
  8672. "source": {
  8673. "type": "git",
  8674. "url": "https://github.com/w7corp/easywechat.git",
  8675. "reference": "d643084ba958ba8ca077e82b805748dfeb5aa44d"
  8676. },
  8677. "dist": {
  8678. "type": "zip",
  8679. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/d643084ba958ba8ca077e82b805748dfeb5aa44d",
  8680. "reference": "d643084ba958ba8ca077e82b805748dfeb5aa44d",
  8681. "shasum": ""
  8682. },
  8683. "require": {
  8684. "ext-curl": "*",
  8685. "ext-fileinfo": "*",
  8686. "ext-libxml": "*",
  8687. "ext-openssl": "*",
  8688. "ext-simplexml": "*",
  8689. "ext-sodium": "*",
  8690. "nyholm/psr7": "^1.5",
  8691. "nyholm/psr7-server": "^1.0",
  8692. "overtrue/socialite": "^3.5.4|^4.0.1",
  8693. "php": ">=8.0.2",
  8694. "psr/http-client": "^1.0",
  8695. "psr/simple-cache": "^1.0|^2.0|^3.0",
  8696. "symfony/cache": "^5.4|^6.0|^7.0",
  8697. "symfony/http-client": "^5.4|^6.0|^7.0",
  8698. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8699. "symfony/mime": "^5.4|^6.0|^7.0",
  8700. "symfony/polyfill-php81": "^1.25",
  8701. "symfony/psr-http-message-bridge": "^2.1.2|^6.4.0|^7.1",
  8702. "thenorthmemory/xml": "^1.0"
  8703. },
  8704. "require-dev": {
  8705. "jetbrains/phpstorm-attributes": "^1.0",
  8706. "laravel/pint": "^1.2",
  8707. "mikey179/vfsstream": "^1.6",
  8708. "mockery/mockery": "^1.4.4",
  8709. "phpstan/phpstan": "^1.0",
  8710. "phpunit/phpunit": "^9.5",
  8711. "symfony/var-dumper": "^5.2"
  8712. },
  8713. "type": "library",
  8714. "autoload": {
  8715. "psr-4": {
  8716. "EasyWeChat\\": "src/"
  8717. }
  8718. },
  8719. "notification-url": "https://packagist.org/downloads/",
  8720. "license": [
  8721. "MIT"
  8722. ],
  8723. "authors": [
  8724. {
  8725. "name": "overtrue",
  8726. "email": "anzhengchao@gmail.com"
  8727. }
  8728. ],
  8729. "description": "微信SDK",
  8730. "keywords": [
  8731. "easywechat",
  8732. "sdk",
  8733. "wechat",
  8734. "weixin",
  8735. "weixin-sdk"
  8736. ],
  8737. "support": {
  8738. "issues": "https://github.com/w7corp/easywechat/issues",
  8739. "source": "https://github.com/w7corp/easywechat/tree/6.15.5"
  8740. },
  8741. "funding": [
  8742. {
  8743. "url": "https://github.com/overtrue",
  8744. "type": "github"
  8745. }
  8746. ],
  8747. "time": "2024-11-15T04:34:15+00:00"
  8748. },
  8749. {
  8750. "name": "webmozart/assert",
  8751. "version": "1.11.0",
  8752. "source": {
  8753. "type": "git",
  8754. "url": "https://github.com/webmozarts/assert.git",
  8755. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8756. },
  8757. "dist": {
  8758. "type": "zip",
  8759. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8760. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8761. "shasum": ""
  8762. },
  8763. "require": {
  8764. "ext-ctype": "*",
  8765. "php": "^7.2 || ^8.0"
  8766. },
  8767. "conflict": {
  8768. "phpstan/phpstan": "<0.12.20",
  8769. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8770. },
  8771. "require-dev": {
  8772. "phpunit/phpunit": "^8.5.13"
  8773. },
  8774. "type": "library",
  8775. "extra": {
  8776. "branch-alias": {
  8777. "dev-master": "1.10-dev"
  8778. }
  8779. },
  8780. "autoload": {
  8781. "psr-4": {
  8782. "Webmozart\\Assert\\": "src/"
  8783. }
  8784. },
  8785. "notification-url": "https://packagist.org/downloads/",
  8786. "license": [
  8787. "MIT"
  8788. ],
  8789. "authors": [
  8790. {
  8791. "name": "Bernhard Schussek",
  8792. "email": "bschussek@gmail.com"
  8793. }
  8794. ],
  8795. "description": "Assertions to validate method input/output with nice error messages.",
  8796. "keywords": [
  8797. "assert",
  8798. "check",
  8799. "validate"
  8800. ],
  8801. "support": {
  8802. "issues": "https://github.com/webmozarts/assert/issues",
  8803. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8804. },
  8805. "time": "2022-06-03T18:03:27+00:00"
  8806. }
  8807. ],
  8808. "packages-dev": [
  8809. {
  8810. "name": "barryvdh/laravel-ide-helper",
  8811. "version": "v3.2.2",
  8812. "source": {
  8813. "type": "git",
  8814. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  8815. "reference": "07e3bd8796f3d1414801a03d3783f9d3ec9efc08"
  8816. },
  8817. "dist": {
  8818. "type": "zip",
  8819. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/07e3bd8796f3d1414801a03d3783f9d3ec9efc08",
  8820. "reference": "07e3bd8796f3d1414801a03d3783f9d3ec9efc08",
  8821. "shasum": ""
  8822. },
  8823. "require": {
  8824. "barryvdh/reflection-docblock": "^2.1.2",
  8825. "composer/class-map-generator": "^1.0",
  8826. "ext-json": "*",
  8827. "illuminate/console": "^11.15",
  8828. "illuminate/database": "^11.15",
  8829. "illuminate/filesystem": "^11.15",
  8830. "illuminate/support": "^11.15",
  8831. "nikic/php-parser": "^4.18 || ^5",
  8832. "php": "^8.2",
  8833. "phpdocumentor/type-resolver": "^1.1.0"
  8834. },
  8835. "require-dev": {
  8836. "ext-pdo_sqlite": "*",
  8837. "friendsofphp/php-cs-fixer": "^3",
  8838. "illuminate/config": "^11.15",
  8839. "illuminate/view": "^11.15",
  8840. "mockery/mockery": "^1.4",
  8841. "orchestra/testbench": "^9.2",
  8842. "phpunit/phpunit": "^10.5",
  8843. "spatie/phpunit-snapshot-assertions": "^4 || ^5",
  8844. "vimeo/psalm": "^5.4"
  8845. },
  8846. "suggest": {
  8847. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9|^10|^11)."
  8848. },
  8849. "type": "library",
  8850. "extra": {
  8851. "branch-alias": {
  8852. "dev-master": "3.2-dev"
  8853. },
  8854. "laravel": {
  8855. "providers": [
  8856. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  8857. ]
  8858. }
  8859. },
  8860. "autoload": {
  8861. "psr-4": {
  8862. "Barryvdh\\LaravelIdeHelper\\": "src"
  8863. }
  8864. },
  8865. "notification-url": "https://packagist.org/downloads/",
  8866. "license": [
  8867. "MIT"
  8868. ],
  8869. "authors": [
  8870. {
  8871. "name": "Barry vd. Heuvel",
  8872. "email": "barryvdh@gmail.com"
  8873. }
  8874. ],
  8875. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  8876. "keywords": [
  8877. "autocomplete",
  8878. "codeintel",
  8879. "helper",
  8880. "ide",
  8881. "laravel",
  8882. "netbeans",
  8883. "phpdoc",
  8884. "phpstorm",
  8885. "sublime"
  8886. ],
  8887. "support": {
  8888. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  8889. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v3.2.2"
  8890. },
  8891. "funding": [
  8892. {
  8893. "url": "https://fruitcake.nl",
  8894. "type": "custom"
  8895. },
  8896. {
  8897. "url": "https://github.com/barryvdh",
  8898. "type": "github"
  8899. }
  8900. ],
  8901. "time": "2024-10-29T14:00:16+00:00"
  8902. },
  8903. {
  8904. "name": "barryvdh/reflection-docblock",
  8905. "version": "v2.1.3",
  8906. "source": {
  8907. "type": "git",
  8908. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  8909. "reference": "c6fad15f7c878be21650c51e1f841bca7e49752e"
  8910. },
  8911. "dist": {
  8912. "type": "zip",
  8913. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/c6fad15f7c878be21650c51e1f841bca7e49752e",
  8914. "reference": "c6fad15f7c878be21650c51e1f841bca7e49752e",
  8915. "shasum": ""
  8916. },
  8917. "require": {
  8918. "php": ">=5.3.3"
  8919. },
  8920. "require-dev": {
  8921. "phpunit/phpunit": "^8.5.14|^9"
  8922. },
  8923. "suggest": {
  8924. "dflydev/markdown": "~1.0",
  8925. "erusev/parsedown": "~1.0"
  8926. },
  8927. "type": "library",
  8928. "extra": {
  8929. "branch-alias": {
  8930. "dev-master": "2.0.x-dev"
  8931. }
  8932. },
  8933. "autoload": {
  8934. "psr-0": {
  8935. "Barryvdh": [
  8936. "src/"
  8937. ]
  8938. }
  8939. },
  8940. "notification-url": "https://packagist.org/downloads/",
  8941. "license": [
  8942. "MIT"
  8943. ],
  8944. "authors": [
  8945. {
  8946. "name": "Mike van Riel",
  8947. "email": "mike.vanriel@naenius.com"
  8948. }
  8949. ],
  8950. "support": {
  8951. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.1.3"
  8952. },
  8953. "time": "2024-10-23T11:41:03+00:00"
  8954. },
  8955. {
  8956. "name": "composer/class-map-generator",
  8957. "version": "1.5.0",
  8958. "source": {
  8959. "type": "git",
  8960. "url": "https://github.com/composer/class-map-generator.git",
  8961. "reference": "4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915"
  8962. },
  8963. "dist": {
  8964. "type": "zip",
  8965. "url": "https://api.github.com/repos/composer/class-map-generator/zipball/4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915",
  8966. "reference": "4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915",
  8967. "shasum": ""
  8968. },
  8969. "require": {
  8970. "composer/pcre": "^2.1 || ^3.1",
  8971. "php": "^7.2 || ^8.0",
  8972. "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
  8973. },
  8974. "require-dev": {
  8975. "phpstan/phpstan": "^1.12 || ^2",
  8976. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  8977. "phpstan/phpstan-phpunit": "^1 || ^2",
  8978. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  8979. "phpunit/phpunit": "^8",
  8980. "symfony/filesystem": "^5.4 || ^6"
  8981. },
  8982. "type": "library",
  8983. "extra": {
  8984. "branch-alias": {
  8985. "dev-main": "1.x-dev"
  8986. }
  8987. },
  8988. "autoload": {
  8989. "psr-4": {
  8990. "Composer\\ClassMapGenerator\\": "src"
  8991. }
  8992. },
  8993. "notification-url": "https://packagist.org/downloads/",
  8994. "license": [
  8995. "MIT"
  8996. ],
  8997. "authors": [
  8998. {
  8999. "name": "Jordi Boggiano",
  9000. "email": "j.boggiano@seld.be",
  9001. "homepage": "https://seld.be"
  9002. }
  9003. ],
  9004. "description": "Utilities to scan PHP code and generate class maps.",
  9005. "keywords": [
  9006. "classmap"
  9007. ],
  9008. "support": {
  9009. "issues": "https://github.com/composer/class-map-generator/issues",
  9010. "source": "https://github.com/composer/class-map-generator/tree/1.5.0"
  9011. },
  9012. "funding": [
  9013. {
  9014. "url": "https://packagist.com",
  9015. "type": "custom"
  9016. },
  9017. {
  9018. "url": "https://github.com/composer",
  9019. "type": "github"
  9020. },
  9021. {
  9022. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9023. "type": "tidelift"
  9024. }
  9025. ],
  9026. "time": "2024-11-25T16:11:06+00:00"
  9027. },
  9028. {
  9029. "name": "composer/pcre",
  9030. "version": "3.3.2",
  9031. "source": {
  9032. "type": "git",
  9033. "url": "https://github.com/composer/pcre.git",
  9034. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  9035. },
  9036. "dist": {
  9037. "type": "zip",
  9038. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  9039. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  9040. "shasum": ""
  9041. },
  9042. "require": {
  9043. "php": "^7.4 || ^8.0"
  9044. },
  9045. "conflict": {
  9046. "phpstan/phpstan": "<1.11.10"
  9047. },
  9048. "require-dev": {
  9049. "phpstan/phpstan": "^1.12 || ^2",
  9050. "phpstan/phpstan-strict-rules": "^1 || ^2",
  9051. "phpunit/phpunit": "^8 || ^9"
  9052. },
  9053. "type": "library",
  9054. "extra": {
  9055. "branch-alias": {
  9056. "dev-main": "3.x-dev"
  9057. },
  9058. "phpstan": {
  9059. "includes": [
  9060. "extension.neon"
  9061. ]
  9062. }
  9063. },
  9064. "autoload": {
  9065. "psr-4": {
  9066. "Composer\\Pcre\\": "src"
  9067. }
  9068. },
  9069. "notification-url": "https://packagist.org/downloads/",
  9070. "license": [
  9071. "MIT"
  9072. ],
  9073. "authors": [
  9074. {
  9075. "name": "Jordi Boggiano",
  9076. "email": "j.boggiano@seld.be",
  9077. "homepage": "http://seld.be"
  9078. }
  9079. ],
  9080. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  9081. "keywords": [
  9082. "PCRE",
  9083. "preg",
  9084. "regex",
  9085. "regular expression"
  9086. ],
  9087. "support": {
  9088. "issues": "https://github.com/composer/pcre/issues",
  9089. "source": "https://github.com/composer/pcre/tree/3.3.2"
  9090. },
  9091. "funding": [
  9092. {
  9093. "url": "https://packagist.com",
  9094. "type": "custom"
  9095. },
  9096. {
  9097. "url": "https://github.com/composer",
  9098. "type": "github"
  9099. },
  9100. {
  9101. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9102. "type": "tidelift"
  9103. }
  9104. ],
  9105. "time": "2024-11-12T16:29:46+00:00"
  9106. },
  9107. {
  9108. "name": "doctrine/deprecations",
  9109. "version": "1.1.3",
  9110. "source": {
  9111. "type": "git",
  9112. "url": "https://github.com/doctrine/deprecations.git",
  9113. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  9114. },
  9115. "dist": {
  9116. "type": "zip",
  9117. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  9118. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  9119. "shasum": ""
  9120. },
  9121. "require": {
  9122. "php": "^7.1 || ^8.0"
  9123. },
  9124. "require-dev": {
  9125. "doctrine/coding-standard": "^9",
  9126. "phpstan/phpstan": "1.4.10 || 1.10.15",
  9127. "phpstan/phpstan-phpunit": "^1.0",
  9128. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  9129. "psalm/plugin-phpunit": "0.18.4",
  9130. "psr/log": "^1 || ^2 || ^3",
  9131. "vimeo/psalm": "4.30.0 || 5.12.0"
  9132. },
  9133. "suggest": {
  9134. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  9135. },
  9136. "type": "library",
  9137. "autoload": {
  9138. "psr-4": {
  9139. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  9140. }
  9141. },
  9142. "notification-url": "https://packagist.org/downloads/",
  9143. "license": [
  9144. "MIT"
  9145. ],
  9146. "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.",
  9147. "homepage": "https://www.doctrine-project.org/",
  9148. "support": {
  9149. "issues": "https://github.com/doctrine/deprecations/issues",
  9150. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  9151. },
  9152. "time": "2024-01-30T19:34:25+00:00"
  9153. },
  9154. {
  9155. "name": "hamcrest/hamcrest-php",
  9156. "version": "v2.0.1",
  9157. "source": {
  9158. "type": "git",
  9159. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9160. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9161. },
  9162. "dist": {
  9163. "type": "zip",
  9164. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9165. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9166. "shasum": ""
  9167. },
  9168. "require": {
  9169. "php": "^5.3|^7.0|^8.0"
  9170. },
  9171. "replace": {
  9172. "cordoval/hamcrest-php": "*",
  9173. "davedevelopment/hamcrest-php": "*",
  9174. "kodova/hamcrest-php": "*"
  9175. },
  9176. "require-dev": {
  9177. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9178. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9179. },
  9180. "type": "library",
  9181. "extra": {
  9182. "branch-alias": {
  9183. "dev-master": "2.1-dev"
  9184. }
  9185. },
  9186. "autoload": {
  9187. "classmap": [
  9188. "hamcrest"
  9189. ]
  9190. },
  9191. "notification-url": "https://packagist.org/downloads/",
  9192. "license": [
  9193. "BSD-3-Clause"
  9194. ],
  9195. "description": "This is the PHP port of Hamcrest Matchers",
  9196. "keywords": [
  9197. "test"
  9198. ],
  9199. "support": {
  9200. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9201. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9202. },
  9203. "time": "2020-07-09T08:09:16+00:00"
  9204. },
  9205. {
  9206. "name": "laravel/pail",
  9207. "version": "v1.2.1",
  9208. "source": {
  9209. "type": "git",
  9210. "url": "https://github.com/laravel/pail.git",
  9211. "reference": "353ac12134b98e2e7c3333d916bd3e523931e583"
  9212. },
  9213. "dist": {
  9214. "type": "zip",
  9215. "url": "https://api.github.com/repos/laravel/pail/zipball/353ac12134b98e2e7c3333d916bd3e523931e583",
  9216. "reference": "353ac12134b98e2e7c3333d916bd3e523931e583",
  9217. "shasum": ""
  9218. },
  9219. "require": {
  9220. "ext-mbstring": "*",
  9221. "illuminate/console": "^10.24|^11.0",
  9222. "illuminate/contracts": "^10.24|^11.0",
  9223. "illuminate/log": "^10.24|^11.0",
  9224. "illuminate/process": "^10.24|^11.0",
  9225. "illuminate/support": "^10.24|^11.0",
  9226. "nunomaduro/termwind": "^1.15|^2.0",
  9227. "php": "^8.2",
  9228. "symfony/console": "^6.0|^7.0"
  9229. },
  9230. "require-dev": {
  9231. "laravel/framework": "^10.24|^11.0",
  9232. "laravel/pint": "^1.13",
  9233. "orchestra/testbench-core": "^8.12|^9.0",
  9234. "pestphp/pest": "^2.20",
  9235. "pestphp/pest-plugin-type-coverage": "^2.3",
  9236. "phpstan/phpstan": "^1.10",
  9237. "symfony/var-dumper": "^6.3|^7.0"
  9238. },
  9239. "type": "library",
  9240. "extra": {
  9241. "branch-alias": {
  9242. "dev-main": "1.x-dev"
  9243. },
  9244. "laravel": {
  9245. "providers": [
  9246. "Laravel\\Pail\\PailServiceProvider"
  9247. ]
  9248. }
  9249. },
  9250. "autoload": {
  9251. "psr-4": {
  9252. "Laravel\\Pail\\": "src/"
  9253. }
  9254. },
  9255. "notification-url": "https://packagist.org/downloads/",
  9256. "license": [
  9257. "MIT"
  9258. ],
  9259. "authors": [
  9260. {
  9261. "name": "Taylor Otwell",
  9262. "email": "taylor@laravel.com"
  9263. },
  9264. {
  9265. "name": "Nuno Maduro",
  9266. "email": "enunomaduro@gmail.com"
  9267. }
  9268. ],
  9269. "description": "Easily delve into your Laravel application's log files directly from the command line.",
  9270. "homepage": "https://github.com/laravel/pail",
  9271. "keywords": [
  9272. "laravel",
  9273. "logs",
  9274. "php",
  9275. "tail"
  9276. ],
  9277. "support": {
  9278. "issues": "https://github.com/laravel/pail/issues",
  9279. "source": "https://github.com/laravel/pail"
  9280. },
  9281. "time": "2024-10-23T12:56:23+00:00"
  9282. },
  9283. {
  9284. "name": "laravel/pint",
  9285. "version": "v1.18.3",
  9286. "source": {
  9287. "type": "git",
  9288. "url": "https://github.com/laravel/pint.git",
  9289. "reference": "cef51821608239040ab841ad6e1c6ae502ae3026"
  9290. },
  9291. "dist": {
  9292. "type": "zip",
  9293. "url": "https://api.github.com/repos/laravel/pint/zipball/cef51821608239040ab841ad6e1c6ae502ae3026",
  9294. "reference": "cef51821608239040ab841ad6e1c6ae502ae3026",
  9295. "shasum": ""
  9296. },
  9297. "require": {
  9298. "ext-json": "*",
  9299. "ext-mbstring": "*",
  9300. "ext-tokenizer": "*",
  9301. "ext-xml": "*",
  9302. "php": "^8.1.0"
  9303. },
  9304. "require-dev": {
  9305. "friendsofphp/php-cs-fixer": "^3.65.0",
  9306. "illuminate/view": "^10.48.24",
  9307. "larastan/larastan": "^2.9.11",
  9308. "laravel-zero/framework": "^10.4.0",
  9309. "mockery/mockery": "^1.6.12",
  9310. "nunomaduro/termwind": "^1.17.0",
  9311. "pestphp/pest": "^2.36.0"
  9312. },
  9313. "bin": [
  9314. "builds/pint"
  9315. ],
  9316. "type": "project",
  9317. "autoload": {
  9318. "psr-4": {
  9319. "App\\": "app/",
  9320. "Database\\Seeders\\": "database/seeders/",
  9321. "Database\\Factories\\": "database/factories/"
  9322. }
  9323. },
  9324. "notification-url": "https://packagist.org/downloads/",
  9325. "license": [
  9326. "MIT"
  9327. ],
  9328. "authors": [
  9329. {
  9330. "name": "Nuno Maduro",
  9331. "email": "enunomaduro@gmail.com"
  9332. }
  9333. ],
  9334. "description": "An opinionated code formatter for PHP.",
  9335. "homepage": "https://laravel.com",
  9336. "keywords": [
  9337. "format",
  9338. "formatter",
  9339. "lint",
  9340. "linter",
  9341. "php"
  9342. ],
  9343. "support": {
  9344. "issues": "https://github.com/laravel/pint/issues",
  9345. "source": "https://github.com/laravel/pint"
  9346. },
  9347. "time": "2024-11-26T15:34:00+00:00"
  9348. },
  9349. {
  9350. "name": "laravel/sail",
  9351. "version": "v1.39.0",
  9352. "source": {
  9353. "type": "git",
  9354. "url": "https://github.com/laravel/sail.git",
  9355. "reference": "be9d67a11133535811f9ec4ab5c176a2f47250fc"
  9356. },
  9357. "dist": {
  9358. "type": "zip",
  9359. "url": "https://api.github.com/repos/laravel/sail/zipball/be9d67a11133535811f9ec4ab5c176a2f47250fc",
  9360. "reference": "be9d67a11133535811f9ec4ab5c176a2f47250fc",
  9361. "shasum": ""
  9362. },
  9363. "require": {
  9364. "illuminate/console": "^9.52.16|^10.0|^11.0",
  9365. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  9366. "illuminate/support": "^9.52.16|^10.0|^11.0",
  9367. "php": "^8.0",
  9368. "symfony/console": "^6.0|^7.0",
  9369. "symfony/yaml": "^6.0|^7.0"
  9370. },
  9371. "require-dev": {
  9372. "orchestra/testbench": "^7.0|^8.0|^9.0",
  9373. "phpstan/phpstan": "^1.10"
  9374. },
  9375. "bin": [
  9376. "bin/sail"
  9377. ],
  9378. "type": "library",
  9379. "extra": {
  9380. "laravel": {
  9381. "providers": [
  9382. "Laravel\\Sail\\SailServiceProvider"
  9383. ]
  9384. }
  9385. },
  9386. "autoload": {
  9387. "psr-4": {
  9388. "Laravel\\Sail\\": "src/"
  9389. }
  9390. },
  9391. "notification-url": "https://packagist.org/downloads/",
  9392. "license": [
  9393. "MIT"
  9394. ],
  9395. "authors": [
  9396. {
  9397. "name": "Taylor Otwell",
  9398. "email": "taylor@laravel.com"
  9399. }
  9400. ],
  9401. "description": "Docker files for running a basic Laravel application.",
  9402. "keywords": [
  9403. "docker",
  9404. "laravel"
  9405. ],
  9406. "support": {
  9407. "issues": "https://github.com/laravel/sail/issues",
  9408. "source": "https://github.com/laravel/sail"
  9409. },
  9410. "time": "2024-11-25T23:48:26+00:00"
  9411. },
  9412. {
  9413. "name": "mockery/mockery",
  9414. "version": "1.6.12",
  9415. "source": {
  9416. "type": "git",
  9417. "url": "https://github.com/mockery/mockery.git",
  9418. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9419. },
  9420. "dist": {
  9421. "type": "zip",
  9422. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9423. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9424. "shasum": ""
  9425. },
  9426. "require": {
  9427. "hamcrest/hamcrest-php": "^2.0.1",
  9428. "lib-pcre": ">=7.0",
  9429. "php": ">=7.3"
  9430. },
  9431. "conflict": {
  9432. "phpunit/phpunit": "<8.0"
  9433. },
  9434. "require-dev": {
  9435. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9436. "symplify/easy-coding-standard": "^12.1.14"
  9437. },
  9438. "type": "library",
  9439. "autoload": {
  9440. "files": [
  9441. "library/helpers.php",
  9442. "library/Mockery.php"
  9443. ],
  9444. "psr-4": {
  9445. "Mockery\\": "library/Mockery"
  9446. }
  9447. },
  9448. "notification-url": "https://packagist.org/downloads/",
  9449. "license": [
  9450. "BSD-3-Clause"
  9451. ],
  9452. "authors": [
  9453. {
  9454. "name": "Pádraic Brady",
  9455. "email": "padraic.brady@gmail.com",
  9456. "homepage": "https://github.com/padraic",
  9457. "role": "Author"
  9458. },
  9459. {
  9460. "name": "Dave Marshall",
  9461. "email": "dave.marshall@atstsolutions.co.uk",
  9462. "homepage": "https://davedevelopment.co.uk",
  9463. "role": "Developer"
  9464. },
  9465. {
  9466. "name": "Nathanael Esayeas",
  9467. "email": "nathanael.esayeas@protonmail.com",
  9468. "homepage": "https://github.com/ghostwriter",
  9469. "role": "Lead Developer"
  9470. }
  9471. ],
  9472. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9473. "homepage": "https://github.com/mockery/mockery",
  9474. "keywords": [
  9475. "BDD",
  9476. "TDD",
  9477. "library",
  9478. "mock",
  9479. "mock objects",
  9480. "mockery",
  9481. "stub",
  9482. "test",
  9483. "test double",
  9484. "testing"
  9485. ],
  9486. "support": {
  9487. "docs": "https://docs.mockery.io/",
  9488. "issues": "https://github.com/mockery/mockery/issues",
  9489. "rss": "https://github.com/mockery/mockery/releases.atom",
  9490. "security": "https://github.com/mockery/mockery/security/advisories",
  9491. "source": "https://github.com/mockery/mockery"
  9492. },
  9493. "time": "2024-05-16T03:13:13+00:00"
  9494. },
  9495. {
  9496. "name": "myclabs/deep-copy",
  9497. "version": "1.12.1",
  9498. "source": {
  9499. "type": "git",
  9500. "url": "https://github.com/myclabs/DeepCopy.git",
  9501. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  9502. },
  9503. "dist": {
  9504. "type": "zip",
  9505. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  9506. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  9507. "shasum": ""
  9508. },
  9509. "require": {
  9510. "php": "^7.1 || ^8.0"
  9511. },
  9512. "conflict": {
  9513. "doctrine/collections": "<1.6.8",
  9514. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9515. },
  9516. "require-dev": {
  9517. "doctrine/collections": "^1.6.8",
  9518. "doctrine/common": "^2.13.3 || ^3.2.2",
  9519. "phpspec/prophecy": "^1.10",
  9520. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9521. },
  9522. "type": "library",
  9523. "autoload": {
  9524. "files": [
  9525. "src/DeepCopy/deep_copy.php"
  9526. ],
  9527. "psr-4": {
  9528. "DeepCopy\\": "src/DeepCopy/"
  9529. }
  9530. },
  9531. "notification-url": "https://packagist.org/downloads/",
  9532. "license": [
  9533. "MIT"
  9534. ],
  9535. "description": "Create deep copies (clones) of your objects",
  9536. "keywords": [
  9537. "clone",
  9538. "copy",
  9539. "duplicate",
  9540. "object",
  9541. "object graph"
  9542. ],
  9543. "support": {
  9544. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9545. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  9546. },
  9547. "funding": [
  9548. {
  9549. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9550. "type": "tidelift"
  9551. }
  9552. ],
  9553. "time": "2024-11-08T17:47:46+00:00"
  9554. },
  9555. {
  9556. "name": "phar-io/manifest",
  9557. "version": "2.0.4",
  9558. "source": {
  9559. "type": "git",
  9560. "url": "https://github.com/phar-io/manifest.git",
  9561. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9562. },
  9563. "dist": {
  9564. "type": "zip",
  9565. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9566. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9567. "shasum": ""
  9568. },
  9569. "require": {
  9570. "ext-dom": "*",
  9571. "ext-libxml": "*",
  9572. "ext-phar": "*",
  9573. "ext-xmlwriter": "*",
  9574. "phar-io/version": "^3.0.1",
  9575. "php": "^7.2 || ^8.0"
  9576. },
  9577. "type": "library",
  9578. "extra": {
  9579. "branch-alias": {
  9580. "dev-master": "2.0.x-dev"
  9581. }
  9582. },
  9583. "autoload": {
  9584. "classmap": [
  9585. "src/"
  9586. ]
  9587. },
  9588. "notification-url": "https://packagist.org/downloads/",
  9589. "license": [
  9590. "BSD-3-Clause"
  9591. ],
  9592. "authors": [
  9593. {
  9594. "name": "Arne Blankerts",
  9595. "email": "arne@blankerts.de",
  9596. "role": "Developer"
  9597. },
  9598. {
  9599. "name": "Sebastian Heuer",
  9600. "email": "sebastian@phpeople.de",
  9601. "role": "Developer"
  9602. },
  9603. {
  9604. "name": "Sebastian Bergmann",
  9605. "email": "sebastian@phpunit.de",
  9606. "role": "Developer"
  9607. }
  9608. ],
  9609. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9610. "support": {
  9611. "issues": "https://github.com/phar-io/manifest/issues",
  9612. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9613. },
  9614. "funding": [
  9615. {
  9616. "url": "https://github.com/theseer",
  9617. "type": "github"
  9618. }
  9619. ],
  9620. "time": "2024-03-03T12:33:53+00:00"
  9621. },
  9622. {
  9623. "name": "phar-io/version",
  9624. "version": "3.2.1",
  9625. "source": {
  9626. "type": "git",
  9627. "url": "https://github.com/phar-io/version.git",
  9628. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9629. },
  9630. "dist": {
  9631. "type": "zip",
  9632. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9633. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9634. "shasum": ""
  9635. },
  9636. "require": {
  9637. "php": "^7.2 || ^8.0"
  9638. },
  9639. "type": "library",
  9640. "autoload": {
  9641. "classmap": [
  9642. "src/"
  9643. ]
  9644. },
  9645. "notification-url": "https://packagist.org/downloads/",
  9646. "license": [
  9647. "BSD-3-Clause"
  9648. ],
  9649. "authors": [
  9650. {
  9651. "name": "Arne Blankerts",
  9652. "email": "arne@blankerts.de",
  9653. "role": "Developer"
  9654. },
  9655. {
  9656. "name": "Sebastian Heuer",
  9657. "email": "sebastian@phpeople.de",
  9658. "role": "Developer"
  9659. },
  9660. {
  9661. "name": "Sebastian Bergmann",
  9662. "email": "sebastian@phpunit.de",
  9663. "role": "Developer"
  9664. }
  9665. ],
  9666. "description": "Library for handling version information and constraints",
  9667. "support": {
  9668. "issues": "https://github.com/phar-io/version/issues",
  9669. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9670. },
  9671. "time": "2022-02-21T01:04:05+00:00"
  9672. },
  9673. {
  9674. "name": "phpdocumentor/reflection-common",
  9675. "version": "2.2.0",
  9676. "source": {
  9677. "type": "git",
  9678. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9679. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9680. },
  9681. "dist": {
  9682. "type": "zip",
  9683. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9684. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9685. "shasum": ""
  9686. },
  9687. "require": {
  9688. "php": "^7.2 || ^8.0"
  9689. },
  9690. "type": "library",
  9691. "extra": {
  9692. "branch-alias": {
  9693. "dev-2.x": "2.x-dev"
  9694. }
  9695. },
  9696. "autoload": {
  9697. "psr-4": {
  9698. "phpDocumentor\\Reflection\\": "src/"
  9699. }
  9700. },
  9701. "notification-url": "https://packagist.org/downloads/",
  9702. "license": [
  9703. "MIT"
  9704. ],
  9705. "authors": [
  9706. {
  9707. "name": "Jaap van Otterdijk",
  9708. "email": "opensource@ijaap.nl"
  9709. }
  9710. ],
  9711. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9712. "homepage": "http://www.phpdoc.org",
  9713. "keywords": [
  9714. "FQSEN",
  9715. "phpDocumentor",
  9716. "phpdoc",
  9717. "reflection",
  9718. "static analysis"
  9719. ],
  9720. "support": {
  9721. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9722. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9723. },
  9724. "time": "2020-06-27T09:03:43+00:00"
  9725. },
  9726. {
  9727. "name": "phpdocumentor/type-resolver",
  9728. "version": "1.10.0",
  9729. "source": {
  9730. "type": "git",
  9731. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9732. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  9733. },
  9734. "dist": {
  9735. "type": "zip",
  9736. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  9737. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  9738. "shasum": ""
  9739. },
  9740. "require": {
  9741. "doctrine/deprecations": "^1.0",
  9742. "php": "^7.3 || ^8.0",
  9743. "phpdocumentor/reflection-common": "^2.0",
  9744. "phpstan/phpdoc-parser": "^1.18|^2.0"
  9745. },
  9746. "require-dev": {
  9747. "ext-tokenizer": "*",
  9748. "phpbench/phpbench": "^1.2",
  9749. "phpstan/extension-installer": "^1.1",
  9750. "phpstan/phpstan": "^1.8",
  9751. "phpstan/phpstan-phpunit": "^1.1",
  9752. "phpunit/phpunit": "^9.5",
  9753. "rector/rector": "^0.13.9",
  9754. "vimeo/psalm": "^4.25"
  9755. },
  9756. "type": "library",
  9757. "extra": {
  9758. "branch-alias": {
  9759. "dev-1.x": "1.x-dev"
  9760. }
  9761. },
  9762. "autoload": {
  9763. "psr-4": {
  9764. "phpDocumentor\\Reflection\\": "src"
  9765. }
  9766. },
  9767. "notification-url": "https://packagist.org/downloads/",
  9768. "license": [
  9769. "MIT"
  9770. ],
  9771. "authors": [
  9772. {
  9773. "name": "Mike van Riel",
  9774. "email": "me@mikevanriel.com"
  9775. }
  9776. ],
  9777. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9778. "support": {
  9779. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9780. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  9781. },
  9782. "time": "2024-11-09T15:12:26+00:00"
  9783. },
  9784. {
  9785. "name": "phpstan/phpdoc-parser",
  9786. "version": "2.0.0",
  9787. "source": {
  9788. "type": "git",
  9789. "url": "https://github.com/phpstan/phpdoc-parser.git",
  9790. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299"
  9791. },
  9792. "dist": {
  9793. "type": "zip",
  9794. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/c00d78fb6b29658347f9d37ebe104bffadf36299",
  9795. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299",
  9796. "shasum": ""
  9797. },
  9798. "require": {
  9799. "php": "^7.4 || ^8.0"
  9800. },
  9801. "require-dev": {
  9802. "doctrine/annotations": "^2.0",
  9803. "nikic/php-parser": "^5.3.0",
  9804. "php-parallel-lint/php-parallel-lint": "^1.2",
  9805. "phpstan/extension-installer": "^1.0",
  9806. "phpstan/phpstan": "^2.0",
  9807. "phpstan/phpstan-phpunit": "^2.0",
  9808. "phpstan/phpstan-strict-rules": "^2.0",
  9809. "phpunit/phpunit": "^9.6",
  9810. "symfony/process": "^5.2"
  9811. },
  9812. "type": "library",
  9813. "autoload": {
  9814. "psr-4": {
  9815. "PHPStan\\PhpDocParser\\": [
  9816. "src/"
  9817. ]
  9818. }
  9819. },
  9820. "notification-url": "https://packagist.org/downloads/",
  9821. "license": [
  9822. "MIT"
  9823. ],
  9824. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  9825. "support": {
  9826. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  9827. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.0.0"
  9828. },
  9829. "time": "2024-10-13T11:29:49+00:00"
  9830. },
  9831. {
  9832. "name": "phpunit/php-code-coverage",
  9833. "version": "11.0.7",
  9834. "source": {
  9835. "type": "git",
  9836. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9837. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca"
  9838. },
  9839. "dist": {
  9840. "type": "zip",
  9841. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  9842. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  9843. "shasum": ""
  9844. },
  9845. "require": {
  9846. "ext-dom": "*",
  9847. "ext-libxml": "*",
  9848. "ext-xmlwriter": "*",
  9849. "nikic/php-parser": "^5.3.1",
  9850. "php": ">=8.2",
  9851. "phpunit/php-file-iterator": "^5.1.0",
  9852. "phpunit/php-text-template": "^4.0.1",
  9853. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  9854. "sebastian/complexity": "^4.0.1",
  9855. "sebastian/environment": "^7.2.0",
  9856. "sebastian/lines-of-code": "^3.0.1",
  9857. "sebastian/version": "^5.0.2",
  9858. "theseer/tokenizer": "^1.2.3"
  9859. },
  9860. "require-dev": {
  9861. "phpunit/phpunit": "^11.4.1"
  9862. },
  9863. "suggest": {
  9864. "ext-pcov": "PHP extension that provides line coverage",
  9865. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9866. },
  9867. "type": "library",
  9868. "extra": {
  9869. "branch-alias": {
  9870. "dev-main": "11.0.x-dev"
  9871. }
  9872. },
  9873. "autoload": {
  9874. "classmap": [
  9875. "src/"
  9876. ]
  9877. },
  9878. "notification-url": "https://packagist.org/downloads/",
  9879. "license": [
  9880. "BSD-3-Clause"
  9881. ],
  9882. "authors": [
  9883. {
  9884. "name": "Sebastian Bergmann",
  9885. "email": "sebastian@phpunit.de",
  9886. "role": "lead"
  9887. }
  9888. ],
  9889. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9890. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9891. "keywords": [
  9892. "coverage",
  9893. "testing",
  9894. "xunit"
  9895. ],
  9896. "support": {
  9897. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9898. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9899. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.7"
  9900. },
  9901. "funding": [
  9902. {
  9903. "url": "https://github.com/sebastianbergmann",
  9904. "type": "github"
  9905. }
  9906. ],
  9907. "time": "2024-10-09T06:21:38+00:00"
  9908. },
  9909. {
  9910. "name": "phpunit/php-file-iterator",
  9911. "version": "5.1.0",
  9912. "source": {
  9913. "type": "git",
  9914. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9915. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  9916. },
  9917. "dist": {
  9918. "type": "zip",
  9919. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  9920. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  9921. "shasum": ""
  9922. },
  9923. "require": {
  9924. "php": ">=8.2"
  9925. },
  9926. "require-dev": {
  9927. "phpunit/phpunit": "^11.0"
  9928. },
  9929. "type": "library",
  9930. "extra": {
  9931. "branch-alias": {
  9932. "dev-main": "5.0-dev"
  9933. }
  9934. },
  9935. "autoload": {
  9936. "classmap": [
  9937. "src/"
  9938. ]
  9939. },
  9940. "notification-url": "https://packagist.org/downloads/",
  9941. "license": [
  9942. "BSD-3-Clause"
  9943. ],
  9944. "authors": [
  9945. {
  9946. "name": "Sebastian Bergmann",
  9947. "email": "sebastian@phpunit.de",
  9948. "role": "lead"
  9949. }
  9950. ],
  9951. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9952. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9953. "keywords": [
  9954. "filesystem",
  9955. "iterator"
  9956. ],
  9957. "support": {
  9958. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9959. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9960. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  9961. },
  9962. "funding": [
  9963. {
  9964. "url": "https://github.com/sebastianbergmann",
  9965. "type": "github"
  9966. }
  9967. ],
  9968. "time": "2024-08-27T05:02:59+00:00"
  9969. },
  9970. {
  9971. "name": "phpunit/php-invoker",
  9972. "version": "5.0.1",
  9973. "source": {
  9974. "type": "git",
  9975. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9976. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  9977. },
  9978. "dist": {
  9979. "type": "zip",
  9980. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  9981. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  9982. "shasum": ""
  9983. },
  9984. "require": {
  9985. "php": ">=8.2"
  9986. },
  9987. "require-dev": {
  9988. "ext-pcntl": "*",
  9989. "phpunit/phpunit": "^11.0"
  9990. },
  9991. "suggest": {
  9992. "ext-pcntl": "*"
  9993. },
  9994. "type": "library",
  9995. "extra": {
  9996. "branch-alias": {
  9997. "dev-main": "5.0-dev"
  9998. }
  9999. },
  10000. "autoload": {
  10001. "classmap": [
  10002. "src/"
  10003. ]
  10004. },
  10005. "notification-url": "https://packagist.org/downloads/",
  10006. "license": [
  10007. "BSD-3-Clause"
  10008. ],
  10009. "authors": [
  10010. {
  10011. "name": "Sebastian Bergmann",
  10012. "email": "sebastian@phpunit.de",
  10013. "role": "lead"
  10014. }
  10015. ],
  10016. "description": "Invoke callables with a timeout",
  10017. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10018. "keywords": [
  10019. "process"
  10020. ],
  10021. "support": {
  10022. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10023. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  10024. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  10025. },
  10026. "funding": [
  10027. {
  10028. "url": "https://github.com/sebastianbergmann",
  10029. "type": "github"
  10030. }
  10031. ],
  10032. "time": "2024-07-03T05:07:44+00:00"
  10033. },
  10034. {
  10035. "name": "phpunit/php-text-template",
  10036. "version": "4.0.1",
  10037. "source": {
  10038. "type": "git",
  10039. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10040. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  10041. },
  10042. "dist": {
  10043. "type": "zip",
  10044. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  10045. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  10046. "shasum": ""
  10047. },
  10048. "require": {
  10049. "php": ">=8.2"
  10050. },
  10051. "require-dev": {
  10052. "phpunit/phpunit": "^11.0"
  10053. },
  10054. "type": "library",
  10055. "extra": {
  10056. "branch-alias": {
  10057. "dev-main": "4.0-dev"
  10058. }
  10059. },
  10060. "autoload": {
  10061. "classmap": [
  10062. "src/"
  10063. ]
  10064. },
  10065. "notification-url": "https://packagist.org/downloads/",
  10066. "license": [
  10067. "BSD-3-Clause"
  10068. ],
  10069. "authors": [
  10070. {
  10071. "name": "Sebastian Bergmann",
  10072. "email": "sebastian@phpunit.de",
  10073. "role": "lead"
  10074. }
  10075. ],
  10076. "description": "Simple template engine.",
  10077. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10078. "keywords": [
  10079. "template"
  10080. ],
  10081. "support": {
  10082. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10083. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  10084. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  10085. },
  10086. "funding": [
  10087. {
  10088. "url": "https://github.com/sebastianbergmann",
  10089. "type": "github"
  10090. }
  10091. ],
  10092. "time": "2024-07-03T05:08:43+00:00"
  10093. },
  10094. {
  10095. "name": "phpunit/php-timer",
  10096. "version": "7.0.1",
  10097. "source": {
  10098. "type": "git",
  10099. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10100. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  10101. },
  10102. "dist": {
  10103. "type": "zip",
  10104. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  10105. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  10106. "shasum": ""
  10107. },
  10108. "require": {
  10109. "php": ">=8.2"
  10110. },
  10111. "require-dev": {
  10112. "phpunit/phpunit": "^11.0"
  10113. },
  10114. "type": "library",
  10115. "extra": {
  10116. "branch-alias": {
  10117. "dev-main": "7.0-dev"
  10118. }
  10119. },
  10120. "autoload": {
  10121. "classmap": [
  10122. "src/"
  10123. ]
  10124. },
  10125. "notification-url": "https://packagist.org/downloads/",
  10126. "license": [
  10127. "BSD-3-Clause"
  10128. ],
  10129. "authors": [
  10130. {
  10131. "name": "Sebastian Bergmann",
  10132. "email": "sebastian@phpunit.de",
  10133. "role": "lead"
  10134. }
  10135. ],
  10136. "description": "Utility class for timing",
  10137. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10138. "keywords": [
  10139. "timer"
  10140. ],
  10141. "support": {
  10142. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10143. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  10144. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  10145. },
  10146. "funding": [
  10147. {
  10148. "url": "https://github.com/sebastianbergmann",
  10149. "type": "github"
  10150. }
  10151. ],
  10152. "time": "2024-07-03T05:09:35+00:00"
  10153. },
  10154. {
  10155. "name": "phpunit/phpunit",
  10156. "version": "11.4.3",
  10157. "source": {
  10158. "type": "git",
  10159. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10160. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76"
  10161. },
  10162. "dist": {
  10163. "type": "zip",
  10164. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  10165. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  10166. "shasum": ""
  10167. },
  10168. "require": {
  10169. "ext-dom": "*",
  10170. "ext-json": "*",
  10171. "ext-libxml": "*",
  10172. "ext-mbstring": "*",
  10173. "ext-xml": "*",
  10174. "ext-xmlwriter": "*",
  10175. "myclabs/deep-copy": "^1.12.0",
  10176. "phar-io/manifest": "^2.0.4",
  10177. "phar-io/version": "^3.2.1",
  10178. "php": ">=8.2",
  10179. "phpunit/php-code-coverage": "^11.0.7",
  10180. "phpunit/php-file-iterator": "^5.1.0",
  10181. "phpunit/php-invoker": "^5.0.1",
  10182. "phpunit/php-text-template": "^4.0.1",
  10183. "phpunit/php-timer": "^7.0.1",
  10184. "sebastian/cli-parser": "^3.0.2",
  10185. "sebastian/code-unit": "^3.0.1",
  10186. "sebastian/comparator": "^6.1.1",
  10187. "sebastian/diff": "^6.0.2",
  10188. "sebastian/environment": "^7.2.0",
  10189. "sebastian/exporter": "^6.1.3",
  10190. "sebastian/global-state": "^7.0.2",
  10191. "sebastian/object-enumerator": "^6.0.1",
  10192. "sebastian/type": "^5.1.0",
  10193. "sebastian/version": "^5.0.2"
  10194. },
  10195. "suggest": {
  10196. "ext-soap": "To be able to generate mocks based on WSDL files"
  10197. },
  10198. "bin": [
  10199. "phpunit"
  10200. ],
  10201. "type": "library",
  10202. "extra": {
  10203. "branch-alias": {
  10204. "dev-main": "11.4-dev"
  10205. }
  10206. },
  10207. "autoload": {
  10208. "files": [
  10209. "src/Framework/Assert/Functions.php"
  10210. ],
  10211. "classmap": [
  10212. "src/"
  10213. ]
  10214. },
  10215. "notification-url": "https://packagist.org/downloads/",
  10216. "license": [
  10217. "BSD-3-Clause"
  10218. ],
  10219. "authors": [
  10220. {
  10221. "name": "Sebastian Bergmann",
  10222. "email": "sebastian@phpunit.de",
  10223. "role": "lead"
  10224. }
  10225. ],
  10226. "description": "The PHP Unit Testing framework.",
  10227. "homepage": "https://phpunit.de/",
  10228. "keywords": [
  10229. "phpunit",
  10230. "testing",
  10231. "xunit"
  10232. ],
  10233. "support": {
  10234. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10235. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10236. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.4.3"
  10237. },
  10238. "funding": [
  10239. {
  10240. "url": "https://phpunit.de/sponsors.html",
  10241. "type": "custom"
  10242. },
  10243. {
  10244. "url": "https://github.com/sebastianbergmann",
  10245. "type": "github"
  10246. },
  10247. {
  10248. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10249. "type": "tidelift"
  10250. }
  10251. ],
  10252. "time": "2024-10-28T13:07:50+00:00"
  10253. },
  10254. {
  10255. "name": "sebastian/cli-parser",
  10256. "version": "3.0.2",
  10257. "source": {
  10258. "type": "git",
  10259. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10260. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  10261. },
  10262. "dist": {
  10263. "type": "zip",
  10264. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  10265. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  10266. "shasum": ""
  10267. },
  10268. "require": {
  10269. "php": ">=8.2"
  10270. },
  10271. "require-dev": {
  10272. "phpunit/phpunit": "^11.0"
  10273. },
  10274. "type": "library",
  10275. "extra": {
  10276. "branch-alias": {
  10277. "dev-main": "3.0-dev"
  10278. }
  10279. },
  10280. "autoload": {
  10281. "classmap": [
  10282. "src/"
  10283. ]
  10284. },
  10285. "notification-url": "https://packagist.org/downloads/",
  10286. "license": [
  10287. "BSD-3-Clause"
  10288. ],
  10289. "authors": [
  10290. {
  10291. "name": "Sebastian Bergmann",
  10292. "email": "sebastian@phpunit.de",
  10293. "role": "lead"
  10294. }
  10295. ],
  10296. "description": "Library for parsing CLI options",
  10297. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10298. "support": {
  10299. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10300. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10301. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  10302. },
  10303. "funding": [
  10304. {
  10305. "url": "https://github.com/sebastianbergmann",
  10306. "type": "github"
  10307. }
  10308. ],
  10309. "time": "2024-07-03T04:41:36+00:00"
  10310. },
  10311. {
  10312. "name": "sebastian/code-unit",
  10313. "version": "3.0.1",
  10314. "source": {
  10315. "type": "git",
  10316. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10317. "reference": "6bb7d09d6623567178cf54126afa9c2310114268"
  10318. },
  10319. "dist": {
  10320. "type": "zip",
  10321. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6bb7d09d6623567178cf54126afa9c2310114268",
  10322. "reference": "6bb7d09d6623567178cf54126afa9c2310114268",
  10323. "shasum": ""
  10324. },
  10325. "require": {
  10326. "php": ">=8.2"
  10327. },
  10328. "require-dev": {
  10329. "phpunit/phpunit": "^11.0"
  10330. },
  10331. "type": "library",
  10332. "extra": {
  10333. "branch-alias": {
  10334. "dev-main": "3.0-dev"
  10335. }
  10336. },
  10337. "autoload": {
  10338. "classmap": [
  10339. "src/"
  10340. ]
  10341. },
  10342. "notification-url": "https://packagist.org/downloads/",
  10343. "license": [
  10344. "BSD-3-Clause"
  10345. ],
  10346. "authors": [
  10347. {
  10348. "name": "Sebastian Bergmann",
  10349. "email": "sebastian@phpunit.de",
  10350. "role": "lead"
  10351. }
  10352. ],
  10353. "description": "Collection of value objects that represent the PHP code units",
  10354. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10355. "support": {
  10356. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10357. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  10358. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.1"
  10359. },
  10360. "funding": [
  10361. {
  10362. "url": "https://github.com/sebastianbergmann",
  10363. "type": "github"
  10364. }
  10365. ],
  10366. "time": "2024-07-03T04:44:28+00:00"
  10367. },
  10368. {
  10369. "name": "sebastian/code-unit-reverse-lookup",
  10370. "version": "4.0.1",
  10371. "source": {
  10372. "type": "git",
  10373. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10374. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  10375. },
  10376. "dist": {
  10377. "type": "zip",
  10378. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  10379. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  10380. "shasum": ""
  10381. },
  10382. "require": {
  10383. "php": ">=8.2"
  10384. },
  10385. "require-dev": {
  10386. "phpunit/phpunit": "^11.0"
  10387. },
  10388. "type": "library",
  10389. "extra": {
  10390. "branch-alias": {
  10391. "dev-main": "4.0-dev"
  10392. }
  10393. },
  10394. "autoload": {
  10395. "classmap": [
  10396. "src/"
  10397. ]
  10398. },
  10399. "notification-url": "https://packagist.org/downloads/",
  10400. "license": [
  10401. "BSD-3-Clause"
  10402. ],
  10403. "authors": [
  10404. {
  10405. "name": "Sebastian Bergmann",
  10406. "email": "sebastian@phpunit.de"
  10407. }
  10408. ],
  10409. "description": "Looks up which function or method a line of code belongs to",
  10410. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10411. "support": {
  10412. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10413. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  10414. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  10415. },
  10416. "funding": [
  10417. {
  10418. "url": "https://github.com/sebastianbergmann",
  10419. "type": "github"
  10420. }
  10421. ],
  10422. "time": "2024-07-03T04:45:54+00:00"
  10423. },
  10424. {
  10425. "name": "sebastian/comparator",
  10426. "version": "6.2.1",
  10427. "source": {
  10428. "type": "git",
  10429. "url": "https://github.com/sebastianbergmann/comparator.git",
  10430. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739"
  10431. },
  10432. "dist": {
  10433. "type": "zip",
  10434. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/43d129d6a0f81c78bee378b46688293eb7ea3739",
  10435. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739",
  10436. "shasum": ""
  10437. },
  10438. "require": {
  10439. "ext-dom": "*",
  10440. "ext-mbstring": "*",
  10441. "php": ">=8.2",
  10442. "sebastian/diff": "^6.0",
  10443. "sebastian/exporter": "^6.0"
  10444. },
  10445. "require-dev": {
  10446. "phpunit/phpunit": "^11.4"
  10447. },
  10448. "type": "library",
  10449. "extra": {
  10450. "branch-alias": {
  10451. "dev-main": "6.2-dev"
  10452. }
  10453. },
  10454. "autoload": {
  10455. "classmap": [
  10456. "src/"
  10457. ]
  10458. },
  10459. "notification-url": "https://packagist.org/downloads/",
  10460. "license": [
  10461. "BSD-3-Clause"
  10462. ],
  10463. "authors": [
  10464. {
  10465. "name": "Sebastian Bergmann",
  10466. "email": "sebastian@phpunit.de"
  10467. },
  10468. {
  10469. "name": "Jeff Welch",
  10470. "email": "whatthejeff@gmail.com"
  10471. },
  10472. {
  10473. "name": "Volker Dusch",
  10474. "email": "github@wallbash.com"
  10475. },
  10476. {
  10477. "name": "Bernhard Schussek",
  10478. "email": "bschussek@2bepublished.at"
  10479. }
  10480. ],
  10481. "description": "Provides the functionality to compare PHP values for equality",
  10482. "homepage": "https://github.com/sebastianbergmann/comparator",
  10483. "keywords": [
  10484. "comparator",
  10485. "compare",
  10486. "equality"
  10487. ],
  10488. "support": {
  10489. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10490. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10491. "source": "https://github.com/sebastianbergmann/comparator/tree/6.2.1"
  10492. },
  10493. "funding": [
  10494. {
  10495. "url": "https://github.com/sebastianbergmann",
  10496. "type": "github"
  10497. }
  10498. ],
  10499. "time": "2024-10-31T05:30:08+00:00"
  10500. },
  10501. {
  10502. "name": "sebastian/complexity",
  10503. "version": "4.0.1",
  10504. "source": {
  10505. "type": "git",
  10506. "url": "https://github.com/sebastianbergmann/complexity.git",
  10507. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  10508. },
  10509. "dist": {
  10510. "type": "zip",
  10511. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  10512. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  10513. "shasum": ""
  10514. },
  10515. "require": {
  10516. "nikic/php-parser": "^5.0",
  10517. "php": ">=8.2"
  10518. },
  10519. "require-dev": {
  10520. "phpunit/phpunit": "^11.0"
  10521. },
  10522. "type": "library",
  10523. "extra": {
  10524. "branch-alias": {
  10525. "dev-main": "4.0-dev"
  10526. }
  10527. },
  10528. "autoload": {
  10529. "classmap": [
  10530. "src/"
  10531. ]
  10532. },
  10533. "notification-url": "https://packagist.org/downloads/",
  10534. "license": [
  10535. "BSD-3-Clause"
  10536. ],
  10537. "authors": [
  10538. {
  10539. "name": "Sebastian Bergmann",
  10540. "email": "sebastian@phpunit.de",
  10541. "role": "lead"
  10542. }
  10543. ],
  10544. "description": "Library for calculating the complexity of PHP code units",
  10545. "homepage": "https://github.com/sebastianbergmann/complexity",
  10546. "support": {
  10547. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10548. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10549. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  10550. },
  10551. "funding": [
  10552. {
  10553. "url": "https://github.com/sebastianbergmann",
  10554. "type": "github"
  10555. }
  10556. ],
  10557. "time": "2024-07-03T04:49:50+00:00"
  10558. },
  10559. {
  10560. "name": "sebastian/diff",
  10561. "version": "6.0.2",
  10562. "source": {
  10563. "type": "git",
  10564. "url": "https://github.com/sebastianbergmann/diff.git",
  10565. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  10566. },
  10567. "dist": {
  10568. "type": "zip",
  10569. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  10570. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  10571. "shasum": ""
  10572. },
  10573. "require": {
  10574. "php": ">=8.2"
  10575. },
  10576. "require-dev": {
  10577. "phpunit/phpunit": "^11.0",
  10578. "symfony/process": "^4.2 || ^5"
  10579. },
  10580. "type": "library",
  10581. "extra": {
  10582. "branch-alias": {
  10583. "dev-main": "6.0-dev"
  10584. }
  10585. },
  10586. "autoload": {
  10587. "classmap": [
  10588. "src/"
  10589. ]
  10590. },
  10591. "notification-url": "https://packagist.org/downloads/",
  10592. "license": [
  10593. "BSD-3-Clause"
  10594. ],
  10595. "authors": [
  10596. {
  10597. "name": "Sebastian Bergmann",
  10598. "email": "sebastian@phpunit.de"
  10599. },
  10600. {
  10601. "name": "Kore Nordmann",
  10602. "email": "mail@kore-nordmann.de"
  10603. }
  10604. ],
  10605. "description": "Diff implementation",
  10606. "homepage": "https://github.com/sebastianbergmann/diff",
  10607. "keywords": [
  10608. "diff",
  10609. "udiff",
  10610. "unidiff",
  10611. "unified diff"
  10612. ],
  10613. "support": {
  10614. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10615. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10616. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  10617. },
  10618. "funding": [
  10619. {
  10620. "url": "https://github.com/sebastianbergmann",
  10621. "type": "github"
  10622. }
  10623. ],
  10624. "time": "2024-07-03T04:53:05+00:00"
  10625. },
  10626. {
  10627. "name": "sebastian/environment",
  10628. "version": "7.2.0",
  10629. "source": {
  10630. "type": "git",
  10631. "url": "https://github.com/sebastianbergmann/environment.git",
  10632. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  10633. },
  10634. "dist": {
  10635. "type": "zip",
  10636. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  10637. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  10638. "shasum": ""
  10639. },
  10640. "require": {
  10641. "php": ">=8.2"
  10642. },
  10643. "require-dev": {
  10644. "phpunit/phpunit": "^11.0"
  10645. },
  10646. "suggest": {
  10647. "ext-posix": "*"
  10648. },
  10649. "type": "library",
  10650. "extra": {
  10651. "branch-alias": {
  10652. "dev-main": "7.2-dev"
  10653. }
  10654. },
  10655. "autoload": {
  10656. "classmap": [
  10657. "src/"
  10658. ]
  10659. },
  10660. "notification-url": "https://packagist.org/downloads/",
  10661. "license": [
  10662. "BSD-3-Clause"
  10663. ],
  10664. "authors": [
  10665. {
  10666. "name": "Sebastian Bergmann",
  10667. "email": "sebastian@phpunit.de"
  10668. }
  10669. ],
  10670. "description": "Provides functionality to handle HHVM/PHP environments",
  10671. "homepage": "https://github.com/sebastianbergmann/environment",
  10672. "keywords": [
  10673. "Xdebug",
  10674. "environment",
  10675. "hhvm"
  10676. ],
  10677. "support": {
  10678. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10679. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10680. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  10681. },
  10682. "funding": [
  10683. {
  10684. "url": "https://github.com/sebastianbergmann",
  10685. "type": "github"
  10686. }
  10687. ],
  10688. "time": "2024-07-03T04:54:44+00:00"
  10689. },
  10690. {
  10691. "name": "sebastian/exporter",
  10692. "version": "6.1.3",
  10693. "source": {
  10694. "type": "git",
  10695. "url": "https://github.com/sebastianbergmann/exporter.git",
  10696. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e"
  10697. },
  10698. "dist": {
  10699. "type": "zip",
  10700. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  10701. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  10702. "shasum": ""
  10703. },
  10704. "require": {
  10705. "ext-mbstring": "*",
  10706. "php": ">=8.2",
  10707. "sebastian/recursion-context": "^6.0"
  10708. },
  10709. "require-dev": {
  10710. "phpunit/phpunit": "^11.2"
  10711. },
  10712. "type": "library",
  10713. "extra": {
  10714. "branch-alias": {
  10715. "dev-main": "6.1-dev"
  10716. }
  10717. },
  10718. "autoload": {
  10719. "classmap": [
  10720. "src/"
  10721. ]
  10722. },
  10723. "notification-url": "https://packagist.org/downloads/",
  10724. "license": [
  10725. "BSD-3-Clause"
  10726. ],
  10727. "authors": [
  10728. {
  10729. "name": "Sebastian Bergmann",
  10730. "email": "sebastian@phpunit.de"
  10731. },
  10732. {
  10733. "name": "Jeff Welch",
  10734. "email": "whatthejeff@gmail.com"
  10735. },
  10736. {
  10737. "name": "Volker Dusch",
  10738. "email": "github@wallbash.com"
  10739. },
  10740. {
  10741. "name": "Adam Harvey",
  10742. "email": "aharvey@php.net"
  10743. },
  10744. {
  10745. "name": "Bernhard Schussek",
  10746. "email": "bschussek@gmail.com"
  10747. }
  10748. ],
  10749. "description": "Provides the functionality to export PHP variables for visualization",
  10750. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10751. "keywords": [
  10752. "export",
  10753. "exporter"
  10754. ],
  10755. "support": {
  10756. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10757. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10758. "source": "https://github.com/sebastianbergmann/exporter/tree/6.1.3"
  10759. },
  10760. "funding": [
  10761. {
  10762. "url": "https://github.com/sebastianbergmann",
  10763. "type": "github"
  10764. }
  10765. ],
  10766. "time": "2024-07-03T04:56:19+00:00"
  10767. },
  10768. {
  10769. "name": "sebastian/global-state",
  10770. "version": "7.0.2",
  10771. "source": {
  10772. "type": "git",
  10773. "url": "https://github.com/sebastianbergmann/global-state.git",
  10774. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  10775. },
  10776. "dist": {
  10777. "type": "zip",
  10778. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  10779. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  10780. "shasum": ""
  10781. },
  10782. "require": {
  10783. "php": ">=8.2",
  10784. "sebastian/object-reflector": "^4.0",
  10785. "sebastian/recursion-context": "^6.0"
  10786. },
  10787. "require-dev": {
  10788. "ext-dom": "*",
  10789. "phpunit/phpunit": "^11.0"
  10790. },
  10791. "type": "library",
  10792. "extra": {
  10793. "branch-alias": {
  10794. "dev-main": "7.0-dev"
  10795. }
  10796. },
  10797. "autoload": {
  10798. "classmap": [
  10799. "src/"
  10800. ]
  10801. },
  10802. "notification-url": "https://packagist.org/downloads/",
  10803. "license": [
  10804. "BSD-3-Clause"
  10805. ],
  10806. "authors": [
  10807. {
  10808. "name": "Sebastian Bergmann",
  10809. "email": "sebastian@phpunit.de"
  10810. }
  10811. ],
  10812. "description": "Snapshotting of global state",
  10813. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10814. "keywords": [
  10815. "global state"
  10816. ],
  10817. "support": {
  10818. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10819. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10820. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  10821. },
  10822. "funding": [
  10823. {
  10824. "url": "https://github.com/sebastianbergmann",
  10825. "type": "github"
  10826. }
  10827. ],
  10828. "time": "2024-07-03T04:57:36+00:00"
  10829. },
  10830. {
  10831. "name": "sebastian/lines-of-code",
  10832. "version": "3.0.1",
  10833. "source": {
  10834. "type": "git",
  10835. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10836. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  10837. },
  10838. "dist": {
  10839. "type": "zip",
  10840. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  10841. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  10842. "shasum": ""
  10843. },
  10844. "require": {
  10845. "nikic/php-parser": "^5.0",
  10846. "php": ">=8.2"
  10847. },
  10848. "require-dev": {
  10849. "phpunit/phpunit": "^11.0"
  10850. },
  10851. "type": "library",
  10852. "extra": {
  10853. "branch-alias": {
  10854. "dev-main": "3.0-dev"
  10855. }
  10856. },
  10857. "autoload": {
  10858. "classmap": [
  10859. "src/"
  10860. ]
  10861. },
  10862. "notification-url": "https://packagist.org/downloads/",
  10863. "license": [
  10864. "BSD-3-Clause"
  10865. ],
  10866. "authors": [
  10867. {
  10868. "name": "Sebastian Bergmann",
  10869. "email": "sebastian@phpunit.de",
  10870. "role": "lead"
  10871. }
  10872. ],
  10873. "description": "Library for counting the lines of code in PHP source code",
  10874. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10875. "support": {
  10876. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10877. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10878. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  10879. },
  10880. "funding": [
  10881. {
  10882. "url": "https://github.com/sebastianbergmann",
  10883. "type": "github"
  10884. }
  10885. ],
  10886. "time": "2024-07-03T04:58:38+00:00"
  10887. },
  10888. {
  10889. "name": "sebastian/object-enumerator",
  10890. "version": "6.0.1",
  10891. "source": {
  10892. "type": "git",
  10893. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10894. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  10895. },
  10896. "dist": {
  10897. "type": "zip",
  10898. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  10899. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  10900. "shasum": ""
  10901. },
  10902. "require": {
  10903. "php": ">=8.2",
  10904. "sebastian/object-reflector": "^4.0",
  10905. "sebastian/recursion-context": "^6.0"
  10906. },
  10907. "require-dev": {
  10908. "phpunit/phpunit": "^11.0"
  10909. },
  10910. "type": "library",
  10911. "extra": {
  10912. "branch-alias": {
  10913. "dev-main": "6.0-dev"
  10914. }
  10915. },
  10916. "autoload": {
  10917. "classmap": [
  10918. "src/"
  10919. ]
  10920. },
  10921. "notification-url": "https://packagist.org/downloads/",
  10922. "license": [
  10923. "BSD-3-Clause"
  10924. ],
  10925. "authors": [
  10926. {
  10927. "name": "Sebastian Bergmann",
  10928. "email": "sebastian@phpunit.de"
  10929. }
  10930. ],
  10931. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10932. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10933. "support": {
  10934. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10935. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  10936. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  10937. },
  10938. "funding": [
  10939. {
  10940. "url": "https://github.com/sebastianbergmann",
  10941. "type": "github"
  10942. }
  10943. ],
  10944. "time": "2024-07-03T05:00:13+00:00"
  10945. },
  10946. {
  10947. "name": "sebastian/object-reflector",
  10948. "version": "4.0.1",
  10949. "source": {
  10950. "type": "git",
  10951. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10952. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  10953. },
  10954. "dist": {
  10955. "type": "zip",
  10956. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  10957. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  10958. "shasum": ""
  10959. },
  10960. "require": {
  10961. "php": ">=8.2"
  10962. },
  10963. "require-dev": {
  10964. "phpunit/phpunit": "^11.0"
  10965. },
  10966. "type": "library",
  10967. "extra": {
  10968. "branch-alias": {
  10969. "dev-main": "4.0-dev"
  10970. }
  10971. },
  10972. "autoload": {
  10973. "classmap": [
  10974. "src/"
  10975. ]
  10976. },
  10977. "notification-url": "https://packagist.org/downloads/",
  10978. "license": [
  10979. "BSD-3-Clause"
  10980. ],
  10981. "authors": [
  10982. {
  10983. "name": "Sebastian Bergmann",
  10984. "email": "sebastian@phpunit.de"
  10985. }
  10986. ],
  10987. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10988. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10989. "support": {
  10990. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10991. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  10992. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  10993. },
  10994. "funding": [
  10995. {
  10996. "url": "https://github.com/sebastianbergmann",
  10997. "type": "github"
  10998. }
  10999. ],
  11000. "time": "2024-07-03T05:01:32+00:00"
  11001. },
  11002. {
  11003. "name": "sebastian/recursion-context",
  11004. "version": "6.0.2",
  11005. "source": {
  11006. "type": "git",
  11007. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11008. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  11009. },
  11010. "dist": {
  11011. "type": "zip",
  11012. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  11013. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  11014. "shasum": ""
  11015. },
  11016. "require": {
  11017. "php": ">=8.2"
  11018. },
  11019. "require-dev": {
  11020. "phpunit/phpunit": "^11.0"
  11021. },
  11022. "type": "library",
  11023. "extra": {
  11024. "branch-alias": {
  11025. "dev-main": "6.0-dev"
  11026. }
  11027. },
  11028. "autoload": {
  11029. "classmap": [
  11030. "src/"
  11031. ]
  11032. },
  11033. "notification-url": "https://packagist.org/downloads/",
  11034. "license": [
  11035. "BSD-3-Clause"
  11036. ],
  11037. "authors": [
  11038. {
  11039. "name": "Sebastian Bergmann",
  11040. "email": "sebastian@phpunit.de"
  11041. },
  11042. {
  11043. "name": "Jeff Welch",
  11044. "email": "whatthejeff@gmail.com"
  11045. },
  11046. {
  11047. "name": "Adam Harvey",
  11048. "email": "aharvey@php.net"
  11049. }
  11050. ],
  11051. "description": "Provides functionality to recursively process PHP variables",
  11052. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11053. "support": {
  11054. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11055. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  11056. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  11057. },
  11058. "funding": [
  11059. {
  11060. "url": "https://github.com/sebastianbergmann",
  11061. "type": "github"
  11062. }
  11063. ],
  11064. "time": "2024-07-03T05:10:34+00:00"
  11065. },
  11066. {
  11067. "name": "sebastian/type",
  11068. "version": "5.1.0",
  11069. "source": {
  11070. "type": "git",
  11071. "url": "https://github.com/sebastianbergmann/type.git",
  11072. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  11073. },
  11074. "dist": {
  11075. "type": "zip",
  11076. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  11077. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  11078. "shasum": ""
  11079. },
  11080. "require": {
  11081. "php": ">=8.2"
  11082. },
  11083. "require-dev": {
  11084. "phpunit/phpunit": "^11.3"
  11085. },
  11086. "type": "library",
  11087. "extra": {
  11088. "branch-alias": {
  11089. "dev-main": "5.1-dev"
  11090. }
  11091. },
  11092. "autoload": {
  11093. "classmap": [
  11094. "src/"
  11095. ]
  11096. },
  11097. "notification-url": "https://packagist.org/downloads/",
  11098. "license": [
  11099. "BSD-3-Clause"
  11100. ],
  11101. "authors": [
  11102. {
  11103. "name": "Sebastian Bergmann",
  11104. "email": "sebastian@phpunit.de",
  11105. "role": "lead"
  11106. }
  11107. ],
  11108. "description": "Collection of value objects that represent the types of the PHP type system",
  11109. "homepage": "https://github.com/sebastianbergmann/type",
  11110. "support": {
  11111. "issues": "https://github.com/sebastianbergmann/type/issues",
  11112. "security": "https://github.com/sebastianbergmann/type/security/policy",
  11113. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  11114. },
  11115. "funding": [
  11116. {
  11117. "url": "https://github.com/sebastianbergmann",
  11118. "type": "github"
  11119. }
  11120. ],
  11121. "time": "2024-09-17T13:12:04+00:00"
  11122. },
  11123. {
  11124. "name": "sebastian/version",
  11125. "version": "5.0.2",
  11126. "source": {
  11127. "type": "git",
  11128. "url": "https://github.com/sebastianbergmann/version.git",
  11129. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  11130. },
  11131. "dist": {
  11132. "type": "zip",
  11133. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  11134. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  11135. "shasum": ""
  11136. },
  11137. "require": {
  11138. "php": ">=8.2"
  11139. },
  11140. "type": "library",
  11141. "extra": {
  11142. "branch-alias": {
  11143. "dev-main": "5.0-dev"
  11144. }
  11145. },
  11146. "autoload": {
  11147. "classmap": [
  11148. "src/"
  11149. ]
  11150. },
  11151. "notification-url": "https://packagist.org/downloads/",
  11152. "license": [
  11153. "BSD-3-Clause"
  11154. ],
  11155. "authors": [
  11156. {
  11157. "name": "Sebastian Bergmann",
  11158. "email": "sebastian@phpunit.de",
  11159. "role": "lead"
  11160. }
  11161. ],
  11162. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11163. "homepage": "https://github.com/sebastianbergmann/version",
  11164. "support": {
  11165. "issues": "https://github.com/sebastianbergmann/version/issues",
  11166. "security": "https://github.com/sebastianbergmann/version/security/policy",
  11167. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  11168. },
  11169. "funding": [
  11170. {
  11171. "url": "https://github.com/sebastianbergmann",
  11172. "type": "github"
  11173. }
  11174. ],
  11175. "time": "2024-10-09T05:16:32+00:00"
  11176. },
  11177. {
  11178. "name": "theseer/tokenizer",
  11179. "version": "1.2.3",
  11180. "source": {
  11181. "type": "git",
  11182. "url": "https://github.com/theseer/tokenizer.git",
  11183. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11184. },
  11185. "dist": {
  11186. "type": "zip",
  11187. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11188. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11189. "shasum": ""
  11190. },
  11191. "require": {
  11192. "ext-dom": "*",
  11193. "ext-tokenizer": "*",
  11194. "ext-xmlwriter": "*",
  11195. "php": "^7.2 || ^8.0"
  11196. },
  11197. "type": "library",
  11198. "autoload": {
  11199. "classmap": [
  11200. "src/"
  11201. ]
  11202. },
  11203. "notification-url": "https://packagist.org/downloads/",
  11204. "license": [
  11205. "BSD-3-Clause"
  11206. ],
  11207. "authors": [
  11208. {
  11209. "name": "Arne Blankerts",
  11210. "email": "arne@blankerts.de",
  11211. "role": "Developer"
  11212. }
  11213. ],
  11214. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11215. "support": {
  11216. "issues": "https://github.com/theseer/tokenizer/issues",
  11217. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11218. },
  11219. "funding": [
  11220. {
  11221. "url": "https://github.com/theseer",
  11222. "type": "github"
  11223. }
  11224. ],
  11225. "time": "2024-03-03T12:36:25+00:00"
  11226. }
  11227. ],
  11228. "aliases": [],
  11229. "minimum-stability": "stable",
  11230. "stability-flags": {},
  11231. "prefer-stable": true,
  11232. "prefer-lowest": false,
  11233. "platform": {
  11234. "php": "^8.2"
  11235. },
  11236. "platform-dev": {},
  11237. "plugin-api-version": "2.6.0"
  11238. }