composer.lock 380 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635
  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": "d17c3a6f5a09e5d54d566b5bc4e5dca9",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.8",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  20. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "dasprid/enum": "^1.0.3",
  25. "ext-iconv": "*",
  26. "php": "^7.1 || ^8.0"
  27. },
  28. "require-dev": {
  29. "phly/keep-a-changelog": "^2.1",
  30. "phpunit/phpunit": "^7 | ^8 | ^9",
  31. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  32. "squizlabs/php_codesniffer": "^3.4"
  33. },
  34. "suggest": {
  35. "ext-imagick": "to generate QR code images"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "psr-4": {
  40. "BaconQrCode\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "BSD-2-Clause"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Ben Scholzen 'DASPRiD'",
  50. "email": "mail@dasprids.de",
  51. "homepage": "https://dasprids.de/",
  52. "role": "Developer"
  53. }
  54. ],
  55. "description": "BaconQrCode is a QR code generator for PHP.",
  56. "homepage": "https://github.com/Bacon/BaconQrCode",
  57. "support": {
  58. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  59. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  60. },
  61. "time": "2022-12-07T17:46:57+00:00"
  62. },
  63. {
  64. "name": "brick/math",
  65. "version": "0.12.1",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/brick/math.git",
  69. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  74. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "php": "^8.1"
  79. },
  80. "require-dev": {
  81. "php-coveralls/php-coveralls": "^2.2",
  82. "phpunit/phpunit": "^10.1",
  83. "vimeo/psalm": "5.16.0"
  84. },
  85. "type": "library",
  86. "autoload": {
  87. "psr-4": {
  88. "Brick\\Math\\": "src/"
  89. }
  90. },
  91. "notification-url": "https://packagist.org/downloads/",
  92. "license": [
  93. "MIT"
  94. ],
  95. "description": "Arbitrary-precision arithmetic library",
  96. "keywords": [
  97. "Arbitrary-precision",
  98. "BigInteger",
  99. "BigRational",
  100. "arithmetic",
  101. "bigdecimal",
  102. "bignum",
  103. "bignumber",
  104. "brick",
  105. "decimal",
  106. "integer",
  107. "math",
  108. "mathematics",
  109. "rational"
  110. ],
  111. "support": {
  112. "issues": "https://github.com/brick/math/issues",
  113. "source": "https://github.com/brick/math/tree/0.12.1"
  114. },
  115. "funding": [
  116. {
  117. "url": "https://github.com/BenMorel",
  118. "type": "github"
  119. }
  120. ],
  121. "time": "2023-11-29T23:19:16+00:00"
  122. },
  123. {
  124. "name": "carbonphp/carbon-doctrine-types",
  125. "version": "3.2.0",
  126. "source": {
  127. "type": "git",
  128. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  129. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  130. },
  131. "dist": {
  132. "type": "zip",
  133. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  134. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  135. "shasum": ""
  136. },
  137. "require": {
  138. "php": "^8.1"
  139. },
  140. "conflict": {
  141. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  142. },
  143. "require-dev": {
  144. "doctrine/dbal": "^4.0.0",
  145. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  146. "phpunit/phpunit": "^10.3"
  147. },
  148. "type": "library",
  149. "autoload": {
  150. "psr-4": {
  151. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  152. }
  153. },
  154. "notification-url": "https://packagist.org/downloads/",
  155. "license": [
  156. "MIT"
  157. ],
  158. "authors": [
  159. {
  160. "name": "KyleKatarn",
  161. "email": "kylekatarnls@gmail.com"
  162. }
  163. ],
  164. "description": "Types to use Carbon in Doctrine",
  165. "keywords": [
  166. "carbon",
  167. "date",
  168. "datetime",
  169. "doctrine",
  170. "time"
  171. ],
  172. "support": {
  173. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  174. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  175. },
  176. "funding": [
  177. {
  178. "url": "https://github.com/kylekatarnls",
  179. "type": "github"
  180. },
  181. {
  182. "url": "https://opencollective.com/Carbon",
  183. "type": "open_collective"
  184. },
  185. {
  186. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  187. "type": "tidelift"
  188. }
  189. ],
  190. "time": "2024-02-09T16:56:22+00:00"
  191. },
  192. {
  193. "name": "dasprid/enum",
  194. "version": "1.0.6",
  195. "source": {
  196. "type": "git",
  197. "url": "https://github.com/DASPRiD/Enum.git",
  198. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90"
  199. },
  200. "dist": {
  201. "type": "zip",
  202. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  203. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  204. "shasum": ""
  205. },
  206. "require": {
  207. "php": ">=7.1 <9.0"
  208. },
  209. "require-dev": {
  210. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  211. "squizlabs/php_codesniffer": "*"
  212. },
  213. "type": "library",
  214. "autoload": {
  215. "psr-4": {
  216. "DASPRiD\\Enum\\": "src/"
  217. }
  218. },
  219. "notification-url": "https://packagist.org/downloads/",
  220. "license": [
  221. "BSD-2-Clause"
  222. ],
  223. "authors": [
  224. {
  225. "name": "Ben Scholzen 'DASPRiD'",
  226. "email": "mail@dasprids.de",
  227. "homepage": "https://dasprids.de/",
  228. "role": "Developer"
  229. }
  230. ],
  231. "description": "PHP 7.1 enum implementation",
  232. "keywords": [
  233. "enum",
  234. "map"
  235. ],
  236. "support": {
  237. "issues": "https://github.com/DASPRiD/Enum/issues",
  238. "source": "https://github.com/DASPRiD/Enum/tree/1.0.6"
  239. },
  240. "time": "2024-08-09T14:30:48+00:00"
  241. },
  242. {
  243. "name": "dflydev/dot-access-data",
  244. "version": "v3.0.3",
  245. "source": {
  246. "type": "git",
  247. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  248. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  249. },
  250. "dist": {
  251. "type": "zip",
  252. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  253. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  254. "shasum": ""
  255. },
  256. "require": {
  257. "php": "^7.1 || ^8.0"
  258. },
  259. "require-dev": {
  260. "phpstan/phpstan": "^0.12.42",
  261. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  262. "scrutinizer/ocular": "1.6.0",
  263. "squizlabs/php_codesniffer": "^3.5",
  264. "vimeo/psalm": "^4.0.0"
  265. },
  266. "type": "library",
  267. "extra": {
  268. "branch-alias": {
  269. "dev-main": "3.x-dev"
  270. }
  271. },
  272. "autoload": {
  273. "psr-4": {
  274. "Dflydev\\DotAccessData\\": "src/"
  275. }
  276. },
  277. "notification-url": "https://packagist.org/downloads/",
  278. "license": [
  279. "MIT"
  280. ],
  281. "authors": [
  282. {
  283. "name": "Dragonfly Development Inc.",
  284. "email": "info@dflydev.com",
  285. "homepage": "http://dflydev.com"
  286. },
  287. {
  288. "name": "Beau Simensen",
  289. "email": "beau@dflydev.com",
  290. "homepage": "http://beausimensen.com"
  291. },
  292. {
  293. "name": "Carlos Frutos",
  294. "email": "carlos@kiwing.it",
  295. "homepage": "https://github.com/cfrutos"
  296. },
  297. {
  298. "name": "Colin O'Dell",
  299. "email": "colinodell@gmail.com",
  300. "homepage": "https://www.colinodell.com"
  301. }
  302. ],
  303. "description": "Given a deep data structure, access data by dot notation.",
  304. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  305. "keywords": [
  306. "access",
  307. "data",
  308. "dot",
  309. "notation"
  310. ],
  311. "support": {
  312. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  313. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  314. },
  315. "time": "2024-07-08T12:26:09+00:00"
  316. },
  317. {
  318. "name": "doctrine/inflector",
  319. "version": "2.0.10",
  320. "source": {
  321. "type": "git",
  322. "url": "https://github.com/doctrine/inflector.git",
  323. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  324. },
  325. "dist": {
  326. "type": "zip",
  327. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  328. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  329. "shasum": ""
  330. },
  331. "require": {
  332. "php": "^7.2 || ^8.0"
  333. },
  334. "require-dev": {
  335. "doctrine/coding-standard": "^11.0",
  336. "phpstan/phpstan": "^1.8",
  337. "phpstan/phpstan-phpunit": "^1.1",
  338. "phpstan/phpstan-strict-rules": "^1.3",
  339. "phpunit/phpunit": "^8.5 || ^9.5",
  340. "vimeo/psalm": "^4.25 || ^5.4"
  341. },
  342. "type": "library",
  343. "autoload": {
  344. "psr-4": {
  345. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  346. }
  347. },
  348. "notification-url": "https://packagist.org/downloads/",
  349. "license": [
  350. "MIT"
  351. ],
  352. "authors": [
  353. {
  354. "name": "Guilherme Blanco",
  355. "email": "guilhermeblanco@gmail.com"
  356. },
  357. {
  358. "name": "Roman Borschel",
  359. "email": "roman@code-factory.org"
  360. },
  361. {
  362. "name": "Benjamin Eberlei",
  363. "email": "kontakt@beberlei.de"
  364. },
  365. {
  366. "name": "Jonathan Wage",
  367. "email": "jonwage@gmail.com"
  368. },
  369. {
  370. "name": "Johannes Schmitt",
  371. "email": "schmittjoh@gmail.com"
  372. }
  373. ],
  374. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  375. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  376. "keywords": [
  377. "inflection",
  378. "inflector",
  379. "lowercase",
  380. "manipulation",
  381. "php",
  382. "plural",
  383. "singular",
  384. "strings",
  385. "uppercase",
  386. "words"
  387. ],
  388. "support": {
  389. "issues": "https://github.com/doctrine/inflector/issues",
  390. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  391. },
  392. "funding": [
  393. {
  394. "url": "https://www.doctrine-project.org/sponsorship.html",
  395. "type": "custom"
  396. },
  397. {
  398. "url": "https://www.patreon.com/phpdoctrine",
  399. "type": "patreon"
  400. },
  401. {
  402. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  403. "type": "tidelift"
  404. }
  405. ],
  406. "time": "2024-02-18T20:23:39+00:00"
  407. },
  408. {
  409. "name": "doctrine/lexer",
  410. "version": "3.0.1",
  411. "source": {
  412. "type": "git",
  413. "url": "https://github.com/doctrine/lexer.git",
  414. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  415. },
  416. "dist": {
  417. "type": "zip",
  418. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  419. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  420. "shasum": ""
  421. },
  422. "require": {
  423. "php": "^8.1"
  424. },
  425. "require-dev": {
  426. "doctrine/coding-standard": "^12",
  427. "phpstan/phpstan": "^1.10",
  428. "phpunit/phpunit": "^10.5",
  429. "psalm/plugin-phpunit": "^0.18.3",
  430. "vimeo/psalm": "^5.21"
  431. },
  432. "type": "library",
  433. "autoload": {
  434. "psr-4": {
  435. "Doctrine\\Common\\Lexer\\": "src"
  436. }
  437. },
  438. "notification-url": "https://packagist.org/downloads/",
  439. "license": [
  440. "MIT"
  441. ],
  442. "authors": [
  443. {
  444. "name": "Guilherme Blanco",
  445. "email": "guilhermeblanco@gmail.com"
  446. },
  447. {
  448. "name": "Roman Borschel",
  449. "email": "roman@code-factory.org"
  450. },
  451. {
  452. "name": "Johannes Schmitt",
  453. "email": "schmittjoh@gmail.com"
  454. }
  455. ],
  456. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  457. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  458. "keywords": [
  459. "annotations",
  460. "docblock",
  461. "lexer",
  462. "parser",
  463. "php"
  464. ],
  465. "support": {
  466. "issues": "https://github.com/doctrine/lexer/issues",
  467. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  468. },
  469. "funding": [
  470. {
  471. "url": "https://www.doctrine-project.org/sponsorship.html",
  472. "type": "custom"
  473. },
  474. {
  475. "url": "https://www.patreon.com/phpdoctrine",
  476. "type": "patreon"
  477. },
  478. {
  479. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  480. "type": "tidelift"
  481. }
  482. ],
  483. "time": "2024-02-05T11:56:58+00:00"
  484. },
  485. {
  486. "name": "dragonmantank/cron-expression",
  487. "version": "v3.4.0",
  488. "source": {
  489. "type": "git",
  490. "url": "https://github.com/dragonmantank/cron-expression.git",
  491. "reference": "8c784d071debd117328803d86b2097615b457500"
  492. },
  493. "dist": {
  494. "type": "zip",
  495. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  496. "reference": "8c784d071debd117328803d86b2097615b457500",
  497. "shasum": ""
  498. },
  499. "require": {
  500. "php": "^7.2|^8.0",
  501. "webmozart/assert": "^1.0"
  502. },
  503. "replace": {
  504. "mtdowling/cron-expression": "^1.0"
  505. },
  506. "require-dev": {
  507. "phpstan/extension-installer": "^1.0",
  508. "phpstan/phpstan": "^1.0",
  509. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  510. },
  511. "type": "library",
  512. "extra": {
  513. "branch-alias": {
  514. "dev-master": "3.x-dev"
  515. }
  516. },
  517. "autoload": {
  518. "psr-4": {
  519. "Cron\\": "src/Cron/"
  520. }
  521. },
  522. "notification-url": "https://packagist.org/downloads/",
  523. "license": [
  524. "MIT"
  525. ],
  526. "authors": [
  527. {
  528. "name": "Chris Tankersley",
  529. "email": "chris@ctankersley.com",
  530. "homepage": "https://github.com/dragonmantank"
  531. }
  532. ],
  533. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  534. "keywords": [
  535. "cron",
  536. "schedule"
  537. ],
  538. "support": {
  539. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  540. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  541. },
  542. "funding": [
  543. {
  544. "url": "https://github.com/dragonmantank",
  545. "type": "github"
  546. }
  547. ],
  548. "time": "2024-10-09T13:47:03+00:00"
  549. },
  550. {
  551. "name": "egulias/email-validator",
  552. "version": "4.0.2",
  553. "source": {
  554. "type": "git",
  555. "url": "https://github.com/egulias/EmailValidator.git",
  556. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  557. },
  558. "dist": {
  559. "type": "zip",
  560. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  561. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  562. "shasum": ""
  563. },
  564. "require": {
  565. "doctrine/lexer": "^2.0 || ^3.0",
  566. "php": ">=8.1",
  567. "symfony/polyfill-intl-idn": "^1.26"
  568. },
  569. "require-dev": {
  570. "phpunit/phpunit": "^10.2",
  571. "vimeo/psalm": "^5.12"
  572. },
  573. "suggest": {
  574. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  575. },
  576. "type": "library",
  577. "extra": {
  578. "branch-alias": {
  579. "dev-master": "4.0.x-dev"
  580. }
  581. },
  582. "autoload": {
  583. "psr-4": {
  584. "Egulias\\EmailValidator\\": "src"
  585. }
  586. },
  587. "notification-url": "https://packagist.org/downloads/",
  588. "license": [
  589. "MIT"
  590. ],
  591. "authors": [
  592. {
  593. "name": "Eduardo Gulias Davis"
  594. }
  595. ],
  596. "description": "A library for validating emails against several RFCs",
  597. "homepage": "https://github.com/egulias/EmailValidator",
  598. "keywords": [
  599. "email",
  600. "emailvalidation",
  601. "emailvalidator",
  602. "validation",
  603. "validator"
  604. ],
  605. "support": {
  606. "issues": "https://github.com/egulias/EmailValidator/issues",
  607. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  608. },
  609. "funding": [
  610. {
  611. "url": "https://github.com/egulias",
  612. "type": "github"
  613. }
  614. ],
  615. "time": "2023-10-06T06:47:41+00:00"
  616. },
  617. {
  618. "name": "erusev/parsedown",
  619. "version": "1.7.4",
  620. "source": {
  621. "type": "git",
  622. "url": "https://github.com/erusev/parsedown.git",
  623. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  624. },
  625. "dist": {
  626. "type": "zip",
  627. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  628. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  629. "shasum": ""
  630. },
  631. "require": {
  632. "ext-mbstring": "*",
  633. "php": ">=5.3.0"
  634. },
  635. "require-dev": {
  636. "phpunit/phpunit": "^4.8.35"
  637. },
  638. "type": "library",
  639. "autoload": {
  640. "psr-0": {
  641. "Parsedown": ""
  642. }
  643. },
  644. "notification-url": "https://packagist.org/downloads/",
  645. "license": [
  646. "MIT"
  647. ],
  648. "authors": [
  649. {
  650. "name": "Emanuil Rusev",
  651. "email": "hello@erusev.com",
  652. "homepage": "http://erusev.com"
  653. }
  654. ],
  655. "description": "Parser for Markdown.",
  656. "homepage": "http://parsedown.org",
  657. "keywords": [
  658. "markdown",
  659. "parser"
  660. ],
  661. "support": {
  662. "issues": "https://github.com/erusev/parsedown/issues",
  663. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  664. },
  665. "time": "2019-12-30T22:54:17+00:00"
  666. },
  667. {
  668. "name": "fakerphp/faker",
  669. "version": "v1.24.0",
  670. "source": {
  671. "type": "git",
  672. "url": "https://github.com/FakerPHP/Faker.git",
  673. "reference": "a136842a532bac9ecd8a1c723852b09915d7db50"
  674. },
  675. "dist": {
  676. "type": "zip",
  677. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/a136842a532bac9ecd8a1c723852b09915d7db50",
  678. "reference": "a136842a532bac9ecd8a1c723852b09915d7db50",
  679. "shasum": ""
  680. },
  681. "require": {
  682. "php": "^7.4 || ^8.0",
  683. "psr/container": "^1.0 || ^2.0",
  684. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  685. },
  686. "conflict": {
  687. "fzaninotto/faker": "*"
  688. },
  689. "require-dev": {
  690. "bamarni/composer-bin-plugin": "^1.4.1",
  691. "doctrine/persistence": "^1.3 || ^2.0",
  692. "ext-intl": "*",
  693. "phpunit/phpunit": "^9.5.26",
  694. "symfony/phpunit-bridge": "^5.4.16"
  695. },
  696. "suggest": {
  697. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  698. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  699. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  700. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  701. "ext-mbstring": "Required for multibyte Unicode string functionality."
  702. },
  703. "type": "library",
  704. "autoload": {
  705. "psr-4": {
  706. "Faker\\": "src/Faker/"
  707. }
  708. },
  709. "notification-url": "https://packagist.org/downloads/",
  710. "license": [
  711. "MIT"
  712. ],
  713. "authors": [
  714. {
  715. "name": "François Zaninotto"
  716. }
  717. ],
  718. "description": "Faker is a PHP library that generates fake data for you.",
  719. "keywords": [
  720. "data",
  721. "faker",
  722. "fixtures"
  723. ],
  724. "support": {
  725. "issues": "https://github.com/FakerPHP/Faker/issues",
  726. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.0"
  727. },
  728. "time": "2024-11-07T15:11:20+00:00"
  729. },
  730. {
  731. "name": "filp/whoops",
  732. "version": "2.16.0",
  733. "source": {
  734. "type": "git",
  735. "url": "https://github.com/filp/whoops.git",
  736. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  737. },
  738. "dist": {
  739. "type": "zip",
  740. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  741. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  742. "shasum": ""
  743. },
  744. "require": {
  745. "php": "^7.1 || ^8.0",
  746. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  747. },
  748. "require-dev": {
  749. "mockery/mockery": "^1.0",
  750. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  751. "symfony/var-dumper": "^4.0 || ^5.0"
  752. },
  753. "suggest": {
  754. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  755. "whoops/soap": "Formats errors as SOAP responses"
  756. },
  757. "type": "library",
  758. "extra": {
  759. "branch-alias": {
  760. "dev-master": "2.7-dev"
  761. }
  762. },
  763. "autoload": {
  764. "psr-4": {
  765. "Whoops\\": "src/Whoops/"
  766. }
  767. },
  768. "notification-url": "https://packagist.org/downloads/",
  769. "license": [
  770. "MIT"
  771. ],
  772. "authors": [
  773. {
  774. "name": "Filipe Dobreira",
  775. "homepage": "https://github.com/filp",
  776. "role": "Developer"
  777. }
  778. ],
  779. "description": "php error handling for cool kids",
  780. "homepage": "https://filp.github.io/whoops/",
  781. "keywords": [
  782. "error",
  783. "exception",
  784. "handling",
  785. "library",
  786. "throwable",
  787. "whoops"
  788. ],
  789. "support": {
  790. "issues": "https://github.com/filp/whoops/issues",
  791. "source": "https://github.com/filp/whoops/tree/2.16.0"
  792. },
  793. "funding": [
  794. {
  795. "url": "https://github.com/denis-sokolov",
  796. "type": "github"
  797. }
  798. ],
  799. "time": "2024-09-25T12:00:00+00:00"
  800. },
  801. {
  802. "name": "fruitcake/php-cors",
  803. "version": "v1.3.0",
  804. "source": {
  805. "type": "git",
  806. "url": "https://github.com/fruitcake/php-cors.git",
  807. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  808. },
  809. "dist": {
  810. "type": "zip",
  811. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  812. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  813. "shasum": ""
  814. },
  815. "require": {
  816. "php": "^7.4|^8.0",
  817. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  818. },
  819. "require-dev": {
  820. "phpstan/phpstan": "^1.4",
  821. "phpunit/phpunit": "^9",
  822. "squizlabs/php_codesniffer": "^3.5"
  823. },
  824. "type": "library",
  825. "extra": {
  826. "branch-alias": {
  827. "dev-master": "1.2-dev"
  828. }
  829. },
  830. "autoload": {
  831. "psr-4": {
  832. "Fruitcake\\Cors\\": "src/"
  833. }
  834. },
  835. "notification-url": "https://packagist.org/downloads/",
  836. "license": [
  837. "MIT"
  838. ],
  839. "authors": [
  840. {
  841. "name": "Fruitcake",
  842. "homepage": "https://fruitcake.nl"
  843. },
  844. {
  845. "name": "Barryvdh",
  846. "email": "barryvdh@gmail.com"
  847. }
  848. ],
  849. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  850. "homepage": "https://github.com/fruitcake/php-cors",
  851. "keywords": [
  852. "cors",
  853. "laravel",
  854. "symfony"
  855. ],
  856. "support": {
  857. "issues": "https://github.com/fruitcake/php-cors/issues",
  858. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  859. },
  860. "funding": [
  861. {
  862. "url": "https://fruitcake.nl",
  863. "type": "custom"
  864. },
  865. {
  866. "url": "https://github.com/barryvdh",
  867. "type": "github"
  868. }
  869. ],
  870. "time": "2023-10-12T05:21:21+00:00"
  871. },
  872. {
  873. "name": "graham-campbell/result-type",
  874. "version": "v1.1.3",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  878. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  883. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  884. "shasum": ""
  885. },
  886. "require": {
  887. "php": "^7.2.5 || ^8.0",
  888. "phpoption/phpoption": "^1.9.3"
  889. },
  890. "require-dev": {
  891. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  892. },
  893. "type": "library",
  894. "autoload": {
  895. "psr-4": {
  896. "GrahamCampbell\\ResultType\\": "src/"
  897. }
  898. },
  899. "notification-url": "https://packagist.org/downloads/",
  900. "license": [
  901. "MIT"
  902. ],
  903. "authors": [
  904. {
  905. "name": "Graham Campbell",
  906. "email": "hello@gjcampbell.co.uk",
  907. "homepage": "https://github.com/GrahamCampbell"
  908. }
  909. ],
  910. "description": "An Implementation Of The Result Type",
  911. "keywords": [
  912. "Graham Campbell",
  913. "GrahamCampbell",
  914. "Result Type",
  915. "Result-Type",
  916. "result"
  917. ],
  918. "support": {
  919. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  920. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  921. },
  922. "funding": [
  923. {
  924. "url": "https://github.com/GrahamCampbell",
  925. "type": "github"
  926. },
  927. {
  928. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  929. "type": "tidelift"
  930. }
  931. ],
  932. "time": "2024-07-20T21:45:45+00:00"
  933. },
  934. {
  935. "name": "guzzlehttp/guzzle",
  936. "version": "7.9.2",
  937. "source": {
  938. "type": "git",
  939. "url": "https://github.com/guzzle/guzzle.git",
  940. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  941. },
  942. "dist": {
  943. "type": "zip",
  944. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  945. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  946. "shasum": ""
  947. },
  948. "require": {
  949. "ext-json": "*",
  950. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  951. "guzzlehttp/psr7": "^2.7.0",
  952. "php": "^7.2.5 || ^8.0",
  953. "psr/http-client": "^1.0",
  954. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  955. },
  956. "provide": {
  957. "psr/http-client-implementation": "1.0"
  958. },
  959. "require-dev": {
  960. "bamarni/composer-bin-plugin": "^1.8.2",
  961. "ext-curl": "*",
  962. "guzzle/client-integration-tests": "3.0.2",
  963. "php-http/message-factory": "^1.1",
  964. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  965. "psr/log": "^1.1 || ^2.0 || ^3.0"
  966. },
  967. "suggest": {
  968. "ext-curl": "Required for CURL handler support",
  969. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  970. "psr/log": "Required for using the Log middleware"
  971. },
  972. "type": "library",
  973. "extra": {
  974. "bamarni-bin": {
  975. "bin-links": true,
  976. "forward-command": false
  977. }
  978. },
  979. "autoload": {
  980. "files": [
  981. "src/functions_include.php"
  982. ],
  983. "psr-4": {
  984. "GuzzleHttp\\": "src/"
  985. }
  986. },
  987. "notification-url": "https://packagist.org/downloads/",
  988. "license": [
  989. "MIT"
  990. ],
  991. "authors": [
  992. {
  993. "name": "Graham Campbell",
  994. "email": "hello@gjcampbell.co.uk",
  995. "homepage": "https://github.com/GrahamCampbell"
  996. },
  997. {
  998. "name": "Michael Dowling",
  999. "email": "mtdowling@gmail.com",
  1000. "homepage": "https://github.com/mtdowling"
  1001. },
  1002. {
  1003. "name": "Jeremy Lindblom",
  1004. "email": "jeremeamia@gmail.com",
  1005. "homepage": "https://github.com/jeremeamia"
  1006. },
  1007. {
  1008. "name": "George Mponos",
  1009. "email": "gmponos@gmail.com",
  1010. "homepage": "https://github.com/gmponos"
  1011. },
  1012. {
  1013. "name": "Tobias Nyholm",
  1014. "email": "tobias.nyholm@gmail.com",
  1015. "homepage": "https://github.com/Nyholm"
  1016. },
  1017. {
  1018. "name": "Márk Sági-Kazár",
  1019. "email": "mark.sagikazar@gmail.com",
  1020. "homepage": "https://github.com/sagikazarmark"
  1021. },
  1022. {
  1023. "name": "Tobias Schultze",
  1024. "email": "webmaster@tubo-world.de",
  1025. "homepage": "https://github.com/Tobion"
  1026. }
  1027. ],
  1028. "description": "Guzzle is a PHP HTTP client library",
  1029. "keywords": [
  1030. "client",
  1031. "curl",
  1032. "framework",
  1033. "http",
  1034. "http client",
  1035. "psr-18",
  1036. "psr-7",
  1037. "rest",
  1038. "web service"
  1039. ],
  1040. "support": {
  1041. "issues": "https://github.com/guzzle/guzzle/issues",
  1042. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1043. },
  1044. "funding": [
  1045. {
  1046. "url": "https://github.com/GrahamCampbell",
  1047. "type": "github"
  1048. },
  1049. {
  1050. "url": "https://github.com/Nyholm",
  1051. "type": "github"
  1052. },
  1053. {
  1054. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1055. "type": "tidelift"
  1056. }
  1057. ],
  1058. "time": "2024-07-24T11:22:20+00:00"
  1059. },
  1060. {
  1061. "name": "guzzlehttp/promises",
  1062. "version": "2.0.4",
  1063. "source": {
  1064. "type": "git",
  1065. "url": "https://github.com/guzzle/promises.git",
  1066. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  1067. },
  1068. "dist": {
  1069. "type": "zip",
  1070. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1071. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1072. "shasum": ""
  1073. },
  1074. "require": {
  1075. "php": "^7.2.5 || ^8.0"
  1076. },
  1077. "require-dev": {
  1078. "bamarni/composer-bin-plugin": "^1.8.2",
  1079. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1080. },
  1081. "type": "library",
  1082. "extra": {
  1083. "bamarni-bin": {
  1084. "bin-links": true,
  1085. "forward-command": false
  1086. }
  1087. },
  1088. "autoload": {
  1089. "psr-4": {
  1090. "GuzzleHttp\\Promise\\": "src/"
  1091. }
  1092. },
  1093. "notification-url": "https://packagist.org/downloads/",
  1094. "license": [
  1095. "MIT"
  1096. ],
  1097. "authors": [
  1098. {
  1099. "name": "Graham Campbell",
  1100. "email": "hello@gjcampbell.co.uk",
  1101. "homepage": "https://github.com/GrahamCampbell"
  1102. },
  1103. {
  1104. "name": "Michael Dowling",
  1105. "email": "mtdowling@gmail.com",
  1106. "homepage": "https://github.com/mtdowling"
  1107. },
  1108. {
  1109. "name": "Tobias Nyholm",
  1110. "email": "tobias.nyholm@gmail.com",
  1111. "homepage": "https://github.com/Nyholm"
  1112. },
  1113. {
  1114. "name": "Tobias Schultze",
  1115. "email": "webmaster@tubo-world.de",
  1116. "homepage": "https://github.com/Tobion"
  1117. }
  1118. ],
  1119. "description": "Guzzle promises library",
  1120. "keywords": [
  1121. "promise"
  1122. ],
  1123. "support": {
  1124. "issues": "https://github.com/guzzle/promises/issues",
  1125. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  1126. },
  1127. "funding": [
  1128. {
  1129. "url": "https://github.com/GrahamCampbell",
  1130. "type": "github"
  1131. },
  1132. {
  1133. "url": "https://github.com/Nyholm",
  1134. "type": "github"
  1135. },
  1136. {
  1137. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1138. "type": "tidelift"
  1139. }
  1140. ],
  1141. "time": "2024-10-17T10:06:22+00:00"
  1142. },
  1143. {
  1144. "name": "guzzlehttp/psr7",
  1145. "version": "2.7.0",
  1146. "source": {
  1147. "type": "git",
  1148. "url": "https://github.com/guzzle/psr7.git",
  1149. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1150. },
  1151. "dist": {
  1152. "type": "zip",
  1153. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1154. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1155. "shasum": ""
  1156. },
  1157. "require": {
  1158. "php": "^7.2.5 || ^8.0",
  1159. "psr/http-factory": "^1.0",
  1160. "psr/http-message": "^1.1 || ^2.0",
  1161. "ralouphie/getallheaders": "^3.0"
  1162. },
  1163. "provide": {
  1164. "psr/http-factory-implementation": "1.0",
  1165. "psr/http-message-implementation": "1.0"
  1166. },
  1167. "require-dev": {
  1168. "bamarni/composer-bin-plugin": "^1.8.2",
  1169. "http-interop/http-factory-tests": "0.9.0",
  1170. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1171. },
  1172. "suggest": {
  1173. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1174. },
  1175. "type": "library",
  1176. "extra": {
  1177. "bamarni-bin": {
  1178. "bin-links": true,
  1179. "forward-command": false
  1180. }
  1181. },
  1182. "autoload": {
  1183. "psr-4": {
  1184. "GuzzleHttp\\Psr7\\": "src/"
  1185. }
  1186. },
  1187. "notification-url": "https://packagist.org/downloads/",
  1188. "license": [
  1189. "MIT"
  1190. ],
  1191. "authors": [
  1192. {
  1193. "name": "Graham Campbell",
  1194. "email": "hello@gjcampbell.co.uk",
  1195. "homepage": "https://github.com/GrahamCampbell"
  1196. },
  1197. {
  1198. "name": "Michael Dowling",
  1199. "email": "mtdowling@gmail.com",
  1200. "homepage": "https://github.com/mtdowling"
  1201. },
  1202. {
  1203. "name": "George Mponos",
  1204. "email": "gmponos@gmail.com",
  1205. "homepage": "https://github.com/gmponos"
  1206. },
  1207. {
  1208. "name": "Tobias Nyholm",
  1209. "email": "tobias.nyholm@gmail.com",
  1210. "homepage": "https://github.com/Nyholm"
  1211. },
  1212. {
  1213. "name": "Márk Sági-Kazár",
  1214. "email": "mark.sagikazar@gmail.com",
  1215. "homepage": "https://github.com/sagikazarmark"
  1216. },
  1217. {
  1218. "name": "Tobias Schultze",
  1219. "email": "webmaster@tubo-world.de",
  1220. "homepage": "https://github.com/Tobion"
  1221. },
  1222. {
  1223. "name": "Márk Sági-Kazár",
  1224. "email": "mark.sagikazar@gmail.com",
  1225. "homepage": "https://sagikazarmark.hu"
  1226. }
  1227. ],
  1228. "description": "PSR-7 message implementation that also provides common utility methods",
  1229. "keywords": [
  1230. "http",
  1231. "message",
  1232. "psr-7",
  1233. "request",
  1234. "response",
  1235. "stream",
  1236. "uri",
  1237. "url"
  1238. ],
  1239. "support": {
  1240. "issues": "https://github.com/guzzle/psr7/issues",
  1241. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1242. },
  1243. "funding": [
  1244. {
  1245. "url": "https://github.com/GrahamCampbell",
  1246. "type": "github"
  1247. },
  1248. {
  1249. "url": "https://github.com/Nyholm",
  1250. "type": "github"
  1251. },
  1252. {
  1253. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1254. "type": "tidelift"
  1255. }
  1256. ],
  1257. "time": "2024-07-18T11:15:46+00:00"
  1258. },
  1259. {
  1260. "name": "guzzlehttp/uri-template",
  1261. "version": "v1.0.3",
  1262. "source": {
  1263. "type": "git",
  1264. "url": "https://github.com/guzzle/uri-template.git",
  1265. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1266. },
  1267. "dist": {
  1268. "type": "zip",
  1269. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1270. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1271. "shasum": ""
  1272. },
  1273. "require": {
  1274. "php": "^7.2.5 || ^8.0",
  1275. "symfony/polyfill-php80": "^1.24"
  1276. },
  1277. "require-dev": {
  1278. "bamarni/composer-bin-plugin": "^1.8.2",
  1279. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1280. "uri-template/tests": "1.0.0"
  1281. },
  1282. "type": "library",
  1283. "extra": {
  1284. "bamarni-bin": {
  1285. "bin-links": true,
  1286. "forward-command": false
  1287. }
  1288. },
  1289. "autoload": {
  1290. "psr-4": {
  1291. "GuzzleHttp\\UriTemplate\\": "src"
  1292. }
  1293. },
  1294. "notification-url": "https://packagist.org/downloads/",
  1295. "license": [
  1296. "MIT"
  1297. ],
  1298. "authors": [
  1299. {
  1300. "name": "Graham Campbell",
  1301. "email": "hello@gjcampbell.co.uk",
  1302. "homepage": "https://github.com/GrahamCampbell"
  1303. },
  1304. {
  1305. "name": "Michael Dowling",
  1306. "email": "mtdowling@gmail.com",
  1307. "homepage": "https://github.com/mtdowling"
  1308. },
  1309. {
  1310. "name": "George Mponos",
  1311. "email": "gmponos@gmail.com",
  1312. "homepage": "https://github.com/gmponos"
  1313. },
  1314. {
  1315. "name": "Tobias Nyholm",
  1316. "email": "tobias.nyholm@gmail.com",
  1317. "homepage": "https://github.com/Nyholm"
  1318. }
  1319. ],
  1320. "description": "A polyfill class for uri_template of PHP",
  1321. "keywords": [
  1322. "guzzlehttp",
  1323. "uri-template"
  1324. ],
  1325. "support": {
  1326. "issues": "https://github.com/guzzle/uri-template/issues",
  1327. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  1328. },
  1329. "funding": [
  1330. {
  1331. "url": "https://github.com/GrahamCampbell",
  1332. "type": "github"
  1333. },
  1334. {
  1335. "url": "https://github.com/Nyholm",
  1336. "type": "github"
  1337. },
  1338. {
  1339. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1340. "type": "tidelift"
  1341. }
  1342. ],
  1343. "time": "2023-12-03T19:50:20+00:00"
  1344. },
  1345. {
  1346. "name": "iconify/json",
  1347. "version": "2.2.276",
  1348. "source": {
  1349. "type": "git",
  1350. "url": "https://github.com/iconify/icon-sets.git",
  1351. "reference": "aea1e648b6d28c7f95c3afb0eaf1338cffb0d980"
  1352. },
  1353. "dist": {
  1354. "type": "zip",
  1355. "url": "https://api.github.com/repos/iconify/icon-sets/zipball/aea1e648b6d28c7f95c3afb0eaf1338cffb0d980",
  1356. "reference": "aea1e648b6d28c7f95c3afb0eaf1338cffb0d980",
  1357. "shasum": ""
  1358. },
  1359. "type": "library",
  1360. "autoload": {
  1361. "psr-4": {
  1362. "Iconify\\IconsJSON\\": "lib"
  1363. }
  1364. },
  1365. "notification-url": "https://packagist.org/downloads/",
  1366. "license": [
  1367. "MIT"
  1368. ],
  1369. "description": "Iconify icons collection in JSON format",
  1370. "homepage": "https://iconify.design/icon-sets/",
  1371. "support": {
  1372. "issues": "https://github.com/iconify/icon-sets/issues",
  1373. "source": "https://github.com/iconify/icon-sets/tree/2.2.276"
  1374. },
  1375. "time": "2024-11-25T06:57:03+00:00"
  1376. },
  1377. {
  1378. "name": "iwzh/owl-scheduling",
  1379. "version": "1.0.2",
  1380. "source": {
  1381. "type": "git",
  1382. "url": "https://gitee.com/wzhec/owl-scheduling",
  1383. "reference": "61478147d286fddb2e0634c4d11acda862db851d"
  1384. },
  1385. "require": {
  1386. "php": ">=8.0",
  1387. "slowlyo/owl-admin": "*"
  1388. },
  1389. "type": "library",
  1390. "extra": {
  1391. "owl-admin": "Iwzh\\owlScheduling\\OwlSchedulingServiceProvider",
  1392. "laravel": {
  1393. "providers": [
  1394. "Iwzh\\owlScheduling\\OwlSchedulingServiceProvider"
  1395. ]
  1396. }
  1397. },
  1398. "autoload": {
  1399. "psr-4": {
  1400. "Iwzh\\owlScheduling\\": "src/"
  1401. }
  1402. },
  1403. "notification-url": "https://packagist.org/downloads/",
  1404. "license": [
  1405. "MIT"
  1406. ],
  1407. "authors": [
  1408. {
  1409. "name": "wzh",
  1410. "email": "wzhec@foxmail.com"
  1411. }
  1412. ],
  1413. "description": "OwlAdmin扩展:方便管理 laravel 的定时任务",
  1414. "homepage": "https://gitee.com/wzhec/owl-scheduling",
  1415. "keywords": [
  1416. "extension",
  1417. "owl-admin"
  1418. ],
  1419. "time": "2023-05-12T02:57:41+00:00"
  1420. },
  1421. {
  1422. "name": "knuckleswtf/scribe",
  1423. "version": "4.38.0",
  1424. "source": {
  1425. "type": "git",
  1426. "url": "https://github.com/knuckleswtf/scribe.git",
  1427. "reference": "da667aafb6804b4b599ac6506bb178bfa5434802"
  1428. },
  1429. "dist": {
  1430. "type": "zip",
  1431. "url": "https://api.github.com/repos/knuckleswtf/scribe/zipball/da667aafb6804b4b599ac6506bb178bfa5434802",
  1432. "reference": "da667aafb6804b4b599ac6506bb178bfa5434802",
  1433. "shasum": ""
  1434. },
  1435. "require": {
  1436. "erusev/parsedown": "1.7.4",
  1437. "ext-fileinfo": "*",
  1438. "ext-json": "*",
  1439. "ext-pdo": "*",
  1440. "fakerphp/faker": "^1.9.1",
  1441. "illuminate/console": "^8.0|^9.0|^10.0|^11.0",
  1442. "illuminate/routing": "^8.0|^9.0|^10.0|^11.0",
  1443. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1444. "league/flysystem": "^1.1.4|^2.1.1|^3.0",
  1445. "mpociot/reflection-docblock": "^1.0.1",
  1446. "nikic/php-parser": "^5.0",
  1447. "nunomaduro/collision": "^5.10|^6.0|^7.0|^8.0",
  1448. "php": ">=8.0",
  1449. "ramsey/uuid": "^4.2.2",
  1450. "shalvah/clara": "^3.1.0",
  1451. "shalvah/upgrader": ">=0.6.0",
  1452. "spatie/data-transfer-object": "^2.6|^3.0",
  1453. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  1454. "symfony/yaml": "^5.4|^6.0|^7.0"
  1455. },
  1456. "replace": {
  1457. "mpociot/laravel-apidoc-generator": "*"
  1458. },
  1459. "require-dev": {
  1460. "brianium/paratest": "^6.0",
  1461. "dms/phpunit-arraysubset-asserts": "^0.4",
  1462. "laravel/legacy-factories": "^1.3.0",
  1463. "laravel/lumen-framework": "^8.0|^9.0|^10.0",
  1464. "league/fractal": "^0.20",
  1465. "nikic/fast-route": "^1.3",
  1466. "orchestra/testbench": "^6.0|^7.0|^8.0",
  1467. "pestphp/pest": "^1.21",
  1468. "phpstan/phpstan": "^1.0",
  1469. "phpunit/phpunit": "^9.0|^10.0",
  1470. "symfony/css-selector": "^5.4|^6.0",
  1471. "symfony/dom-crawler": "^5.4|^6.0"
  1472. },
  1473. "type": "library",
  1474. "extra": {
  1475. "laravel": {
  1476. "providers": [
  1477. "Knuckles\\Scribe\\ScribeServiceProvider"
  1478. ]
  1479. }
  1480. },
  1481. "autoload": {
  1482. "psr-4": {
  1483. "Knuckles\\Camel\\": "camel/",
  1484. "Knuckles\\Scribe\\": "src/"
  1485. }
  1486. },
  1487. "notification-url": "https://packagist.org/downloads/",
  1488. "license": [
  1489. "MIT"
  1490. ],
  1491. "authors": [
  1492. {
  1493. "name": "Shalvah"
  1494. }
  1495. ],
  1496. "description": "Generate API documentation for humans from your Laravel codebase.✍",
  1497. "homepage": "http://github.com/knuckleswtf/scribe",
  1498. "keywords": [
  1499. "api",
  1500. "dingo",
  1501. "documentation",
  1502. "laravel"
  1503. ],
  1504. "support": {
  1505. "issues": "https://github.com/knuckleswtf/scribe/issues",
  1506. "source": "https://github.com/knuckleswtf/scribe/tree/4.38.0"
  1507. },
  1508. "funding": [
  1509. {
  1510. "url": "https://patreon.com/shalvah",
  1511. "type": "patreon"
  1512. }
  1513. ],
  1514. "time": "2024-10-18T20:16:40+00:00"
  1515. },
  1516. {
  1517. "name": "laravel/framework",
  1518. "version": "v11.30.0",
  1519. "source": {
  1520. "type": "git",
  1521. "url": "https://github.com/laravel/framework.git",
  1522. "reference": "dff716442d9c229d716be82ccc9a7de52eb97193"
  1523. },
  1524. "dist": {
  1525. "type": "zip",
  1526. "url": "https://api.github.com/repos/laravel/framework/zipball/dff716442d9c229d716be82ccc9a7de52eb97193",
  1527. "reference": "dff716442d9c229d716be82ccc9a7de52eb97193",
  1528. "shasum": ""
  1529. },
  1530. "require": {
  1531. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  1532. "composer-runtime-api": "^2.2",
  1533. "doctrine/inflector": "^2.0.5",
  1534. "dragonmantank/cron-expression": "^3.3.2",
  1535. "egulias/email-validator": "^3.2.1|^4.0",
  1536. "ext-ctype": "*",
  1537. "ext-filter": "*",
  1538. "ext-hash": "*",
  1539. "ext-mbstring": "*",
  1540. "ext-openssl": "*",
  1541. "ext-session": "*",
  1542. "ext-tokenizer": "*",
  1543. "fruitcake/php-cors": "^1.3",
  1544. "guzzlehttp/guzzle": "^7.8",
  1545. "guzzlehttp/uri-template": "^1.0",
  1546. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  1547. "laravel/serializable-closure": "^1.3",
  1548. "league/commonmark": "^2.2.1",
  1549. "league/flysystem": "^3.8.0",
  1550. "monolog/monolog": "^3.0",
  1551. "nesbot/carbon": "^2.72.2|^3.0",
  1552. "nunomaduro/termwind": "^2.0",
  1553. "php": "^8.2",
  1554. "psr/container": "^1.1.1|^2.0.1",
  1555. "psr/log": "^1.0|^2.0|^3.0",
  1556. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1557. "ramsey/uuid": "^4.7",
  1558. "symfony/console": "^7.0",
  1559. "symfony/error-handler": "^7.0",
  1560. "symfony/finder": "^7.0",
  1561. "symfony/http-foundation": "^7.0",
  1562. "symfony/http-kernel": "^7.0",
  1563. "symfony/mailer": "^7.0",
  1564. "symfony/mime": "^7.0",
  1565. "symfony/polyfill-php83": "^1.28",
  1566. "symfony/process": "^7.0",
  1567. "symfony/routing": "^7.0",
  1568. "symfony/uid": "^7.0",
  1569. "symfony/var-dumper": "^7.0",
  1570. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1571. "vlucas/phpdotenv": "^5.4.1",
  1572. "voku/portable-ascii": "^2.0"
  1573. },
  1574. "conflict": {
  1575. "mockery/mockery": "1.6.8",
  1576. "tightenco/collect": "<5.5.33"
  1577. },
  1578. "provide": {
  1579. "psr/container-implementation": "1.1|2.0",
  1580. "psr/log-implementation": "1.0|2.0|3.0",
  1581. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1582. },
  1583. "replace": {
  1584. "illuminate/auth": "self.version",
  1585. "illuminate/broadcasting": "self.version",
  1586. "illuminate/bus": "self.version",
  1587. "illuminate/cache": "self.version",
  1588. "illuminate/collections": "self.version",
  1589. "illuminate/concurrency": "self.version",
  1590. "illuminate/conditionable": "self.version",
  1591. "illuminate/config": "self.version",
  1592. "illuminate/console": "self.version",
  1593. "illuminate/container": "self.version",
  1594. "illuminate/contracts": "self.version",
  1595. "illuminate/cookie": "self.version",
  1596. "illuminate/database": "self.version",
  1597. "illuminate/encryption": "self.version",
  1598. "illuminate/events": "self.version",
  1599. "illuminate/filesystem": "self.version",
  1600. "illuminate/hashing": "self.version",
  1601. "illuminate/http": "self.version",
  1602. "illuminate/log": "self.version",
  1603. "illuminate/macroable": "self.version",
  1604. "illuminate/mail": "self.version",
  1605. "illuminate/notifications": "self.version",
  1606. "illuminate/pagination": "self.version",
  1607. "illuminate/pipeline": "self.version",
  1608. "illuminate/process": "self.version",
  1609. "illuminate/queue": "self.version",
  1610. "illuminate/redis": "self.version",
  1611. "illuminate/routing": "self.version",
  1612. "illuminate/session": "self.version",
  1613. "illuminate/support": "self.version",
  1614. "illuminate/testing": "self.version",
  1615. "illuminate/translation": "self.version",
  1616. "illuminate/validation": "self.version",
  1617. "illuminate/view": "self.version",
  1618. "spatie/once": "*"
  1619. },
  1620. "require-dev": {
  1621. "ably/ably-php": "^1.0",
  1622. "aws/aws-sdk-php": "^3.235.5",
  1623. "ext-gmp": "*",
  1624. "fakerphp/faker": "^1.23",
  1625. "league/flysystem-aws-s3-v3": "^3.0",
  1626. "league/flysystem-ftp": "^3.0",
  1627. "league/flysystem-path-prefixing": "^3.3",
  1628. "league/flysystem-read-only": "^3.3",
  1629. "league/flysystem-sftp-v3": "^3.0",
  1630. "mockery/mockery": "^1.6",
  1631. "nyholm/psr7": "^1.2",
  1632. "orchestra/testbench-core": "^9.5",
  1633. "pda/pheanstalk": "^5.0",
  1634. "phpstan/phpstan": "^1.11.5",
  1635. "phpunit/phpunit": "^10.5|^11.0",
  1636. "predis/predis": "^2.0.2",
  1637. "resend/resend-php": "^0.10.0",
  1638. "symfony/cache": "^7.0",
  1639. "symfony/http-client": "^7.0",
  1640. "symfony/psr-http-message-bridge": "^7.0"
  1641. },
  1642. "suggest": {
  1643. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1644. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  1645. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  1646. "ext-apcu": "Required to use the APC cache driver.",
  1647. "ext-fileinfo": "Required to use the Filesystem class.",
  1648. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1649. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1650. "ext-memcached": "Required to use the memcache cache driver.",
  1651. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  1652. "ext-pdo": "Required to use all database features.",
  1653. "ext-posix": "Required to use all features of the queue worker.",
  1654. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  1655. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1656. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1657. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1658. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1659. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1660. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1661. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1662. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1663. "mockery/mockery": "Required to use mocking (^1.6).",
  1664. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1665. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  1666. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  1667. "predis/predis": "Required to use the predis connector (^2.0.2).",
  1668. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1669. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1670. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  1671. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  1672. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  1673. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  1674. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  1675. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  1676. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  1677. },
  1678. "type": "library",
  1679. "extra": {
  1680. "branch-alias": {
  1681. "dev-master": "11.x-dev"
  1682. }
  1683. },
  1684. "autoload": {
  1685. "files": [
  1686. "src/Illuminate/Collections/helpers.php",
  1687. "src/Illuminate/Events/functions.php",
  1688. "src/Illuminate/Filesystem/functions.php",
  1689. "src/Illuminate/Foundation/helpers.php",
  1690. "src/Illuminate/Log/functions.php",
  1691. "src/Illuminate/Support/functions.php",
  1692. "src/Illuminate/Support/helpers.php"
  1693. ],
  1694. "psr-4": {
  1695. "Illuminate\\": "src/Illuminate/",
  1696. "Illuminate\\Support\\": [
  1697. "src/Illuminate/Macroable/",
  1698. "src/Illuminate/Collections/",
  1699. "src/Illuminate/Conditionable/"
  1700. ]
  1701. }
  1702. },
  1703. "notification-url": "https://packagist.org/downloads/",
  1704. "license": [
  1705. "MIT"
  1706. ],
  1707. "authors": [
  1708. {
  1709. "name": "Taylor Otwell",
  1710. "email": "taylor@laravel.com"
  1711. }
  1712. ],
  1713. "description": "The Laravel Framework.",
  1714. "homepage": "https://laravel.com",
  1715. "keywords": [
  1716. "framework",
  1717. "laravel"
  1718. ],
  1719. "support": {
  1720. "issues": "https://github.com/laravel/framework/issues",
  1721. "source": "https://github.com/laravel/framework"
  1722. },
  1723. "time": "2024-10-30T15:00:34+00:00"
  1724. },
  1725. {
  1726. "name": "laravel/prompts",
  1727. "version": "v0.3.2",
  1728. "source": {
  1729. "type": "git",
  1730. "url": "https://github.com/laravel/prompts.git",
  1731. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f"
  1732. },
  1733. "dist": {
  1734. "type": "zip",
  1735. "url": "https://api.github.com/repos/laravel/prompts/zipball/0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  1736. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  1737. "shasum": ""
  1738. },
  1739. "require": {
  1740. "composer-runtime-api": "^2.2",
  1741. "ext-mbstring": "*",
  1742. "php": "^8.1",
  1743. "symfony/console": "^6.2|^7.0"
  1744. },
  1745. "conflict": {
  1746. "illuminate/console": ">=10.17.0 <10.25.0",
  1747. "laravel/framework": ">=10.17.0 <10.25.0"
  1748. },
  1749. "require-dev": {
  1750. "illuminate/collections": "^10.0|^11.0",
  1751. "mockery/mockery": "^1.5",
  1752. "pestphp/pest": "^2.3|^3.4",
  1753. "phpstan/phpstan": "^1.11",
  1754. "phpstan/phpstan-mockery": "^1.1"
  1755. },
  1756. "suggest": {
  1757. "ext-pcntl": "Required for the spinner to be animated."
  1758. },
  1759. "type": "library",
  1760. "extra": {
  1761. "branch-alias": {
  1762. "dev-main": "0.3.x-dev"
  1763. }
  1764. },
  1765. "autoload": {
  1766. "files": [
  1767. "src/helpers.php"
  1768. ],
  1769. "psr-4": {
  1770. "Laravel\\Prompts\\": "src/"
  1771. }
  1772. },
  1773. "notification-url": "https://packagist.org/downloads/",
  1774. "license": [
  1775. "MIT"
  1776. ],
  1777. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  1778. "support": {
  1779. "issues": "https://github.com/laravel/prompts/issues",
  1780. "source": "https://github.com/laravel/prompts/tree/v0.3.2"
  1781. },
  1782. "time": "2024-11-12T14:59:47+00:00"
  1783. },
  1784. {
  1785. "name": "laravel/sanctum",
  1786. "version": "v4.0.3",
  1787. "source": {
  1788. "type": "git",
  1789. "url": "https://github.com/laravel/sanctum.git",
  1790. "reference": "54aea9d13743ae8a6cdd3c28dbef128a17adecab"
  1791. },
  1792. "dist": {
  1793. "type": "zip",
  1794. "url": "https://api.github.com/repos/laravel/sanctum/zipball/54aea9d13743ae8a6cdd3c28dbef128a17adecab",
  1795. "reference": "54aea9d13743ae8a6cdd3c28dbef128a17adecab",
  1796. "shasum": ""
  1797. },
  1798. "require": {
  1799. "ext-json": "*",
  1800. "illuminate/console": "^11.0",
  1801. "illuminate/contracts": "^11.0",
  1802. "illuminate/database": "^11.0",
  1803. "illuminate/support": "^11.0",
  1804. "php": "^8.2",
  1805. "symfony/console": "^7.0"
  1806. },
  1807. "require-dev": {
  1808. "mockery/mockery": "^1.6",
  1809. "orchestra/testbench": "^9.0",
  1810. "phpstan/phpstan": "^1.10",
  1811. "phpunit/phpunit": "^10.5"
  1812. },
  1813. "type": "library",
  1814. "extra": {
  1815. "laravel": {
  1816. "providers": [
  1817. "Laravel\\Sanctum\\SanctumServiceProvider"
  1818. ]
  1819. }
  1820. },
  1821. "autoload": {
  1822. "psr-4": {
  1823. "Laravel\\Sanctum\\": "src/"
  1824. }
  1825. },
  1826. "notification-url": "https://packagist.org/downloads/",
  1827. "license": [
  1828. "MIT"
  1829. ],
  1830. "authors": [
  1831. {
  1832. "name": "Taylor Otwell",
  1833. "email": "taylor@laravel.com"
  1834. }
  1835. ],
  1836. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  1837. "keywords": [
  1838. "auth",
  1839. "laravel",
  1840. "sanctum"
  1841. ],
  1842. "support": {
  1843. "issues": "https://github.com/laravel/sanctum/issues",
  1844. "source": "https://github.com/laravel/sanctum"
  1845. },
  1846. "time": "2024-09-27T14:55:41+00:00"
  1847. },
  1848. {
  1849. "name": "laravel/serializable-closure",
  1850. "version": "v1.3.6",
  1851. "source": {
  1852. "type": "git",
  1853. "url": "https://github.com/laravel/serializable-closure.git",
  1854. "reference": "f865a58ea3a0107c336b7045104c75243fa59d96"
  1855. },
  1856. "dist": {
  1857. "type": "zip",
  1858. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f865a58ea3a0107c336b7045104c75243fa59d96",
  1859. "reference": "f865a58ea3a0107c336b7045104c75243fa59d96",
  1860. "shasum": ""
  1861. },
  1862. "require": {
  1863. "php": "^7.3|^8.0"
  1864. },
  1865. "require-dev": {
  1866. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1867. "nesbot/carbon": "^2.61|^3.0",
  1868. "pestphp/pest": "^1.21.3",
  1869. "phpstan/phpstan": "^1.8.2",
  1870. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  1871. },
  1872. "type": "library",
  1873. "extra": {
  1874. "branch-alias": {
  1875. "dev-master": "1.x-dev"
  1876. }
  1877. },
  1878. "autoload": {
  1879. "psr-4": {
  1880. "Laravel\\SerializableClosure\\": "src/"
  1881. }
  1882. },
  1883. "notification-url": "https://packagist.org/downloads/",
  1884. "license": [
  1885. "MIT"
  1886. ],
  1887. "authors": [
  1888. {
  1889. "name": "Taylor Otwell",
  1890. "email": "taylor@laravel.com"
  1891. },
  1892. {
  1893. "name": "Nuno Maduro",
  1894. "email": "nuno@laravel.com"
  1895. }
  1896. ],
  1897. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1898. "keywords": [
  1899. "closure",
  1900. "laravel",
  1901. "serializable"
  1902. ],
  1903. "support": {
  1904. "issues": "https://github.com/laravel/serializable-closure/issues",
  1905. "source": "https://github.com/laravel/serializable-closure"
  1906. },
  1907. "time": "2024-11-11T17:06:04+00:00"
  1908. },
  1909. {
  1910. "name": "laravel/tinker",
  1911. "version": "v2.10.0",
  1912. "source": {
  1913. "type": "git",
  1914. "url": "https://github.com/laravel/tinker.git",
  1915. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  1916. },
  1917. "dist": {
  1918. "type": "zip",
  1919. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  1920. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  1921. "shasum": ""
  1922. },
  1923. "require": {
  1924. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1925. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1926. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1927. "php": "^7.2.5|^8.0",
  1928. "psy/psysh": "^0.11.1|^0.12.0",
  1929. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  1930. },
  1931. "require-dev": {
  1932. "mockery/mockery": "~1.3.3|^1.4.2",
  1933. "phpstan/phpstan": "^1.10",
  1934. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1935. },
  1936. "suggest": {
  1937. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  1938. },
  1939. "type": "library",
  1940. "extra": {
  1941. "laravel": {
  1942. "providers": [
  1943. "Laravel\\Tinker\\TinkerServiceProvider"
  1944. ]
  1945. }
  1946. },
  1947. "autoload": {
  1948. "psr-4": {
  1949. "Laravel\\Tinker\\": "src/"
  1950. }
  1951. },
  1952. "notification-url": "https://packagist.org/downloads/",
  1953. "license": [
  1954. "MIT"
  1955. ],
  1956. "authors": [
  1957. {
  1958. "name": "Taylor Otwell",
  1959. "email": "taylor@laravel.com"
  1960. }
  1961. ],
  1962. "description": "Powerful REPL for the Laravel framework.",
  1963. "keywords": [
  1964. "REPL",
  1965. "Tinker",
  1966. "laravel",
  1967. "psysh"
  1968. ],
  1969. "support": {
  1970. "issues": "https://github.com/laravel/tinker/issues",
  1971. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  1972. },
  1973. "time": "2024-09-23T13:32:56+00:00"
  1974. },
  1975. {
  1976. "name": "league/commonmark",
  1977. "version": "2.5.3",
  1978. "source": {
  1979. "type": "git",
  1980. "url": "https://github.com/thephpleague/commonmark.git",
  1981. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  1982. },
  1983. "dist": {
  1984. "type": "zip",
  1985. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  1986. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  1987. "shasum": ""
  1988. },
  1989. "require": {
  1990. "ext-mbstring": "*",
  1991. "league/config": "^1.1.1",
  1992. "php": "^7.4 || ^8.0",
  1993. "psr/event-dispatcher": "^1.0",
  1994. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1995. "symfony/polyfill-php80": "^1.16"
  1996. },
  1997. "require-dev": {
  1998. "cebe/markdown": "^1.0",
  1999. "commonmark/cmark": "0.31.1",
  2000. "commonmark/commonmark.js": "0.31.1",
  2001. "composer/package-versions-deprecated": "^1.8",
  2002. "embed/embed": "^4.4",
  2003. "erusev/parsedown": "^1.0",
  2004. "ext-json": "*",
  2005. "github/gfm": "0.29.0",
  2006. "michelf/php-markdown": "^1.4 || ^2.0",
  2007. "nyholm/psr7": "^1.5",
  2008. "phpstan/phpstan": "^1.8.2",
  2009. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2010. "scrutinizer/ocular": "^1.8.1",
  2011. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  2012. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  2013. "unleashedtech/php-coding-standard": "^3.1.1",
  2014. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2015. },
  2016. "suggest": {
  2017. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2018. },
  2019. "type": "library",
  2020. "extra": {
  2021. "branch-alias": {
  2022. "dev-main": "2.6-dev"
  2023. }
  2024. },
  2025. "autoload": {
  2026. "psr-4": {
  2027. "League\\CommonMark\\": "src"
  2028. }
  2029. },
  2030. "notification-url": "https://packagist.org/downloads/",
  2031. "license": [
  2032. "BSD-3-Clause"
  2033. ],
  2034. "authors": [
  2035. {
  2036. "name": "Colin O'Dell",
  2037. "email": "colinodell@gmail.com",
  2038. "homepage": "https://www.colinodell.com",
  2039. "role": "Lead Developer"
  2040. }
  2041. ],
  2042. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2043. "homepage": "https://commonmark.thephpleague.com",
  2044. "keywords": [
  2045. "commonmark",
  2046. "flavored",
  2047. "gfm",
  2048. "github",
  2049. "github-flavored",
  2050. "markdown",
  2051. "md",
  2052. "parser"
  2053. ],
  2054. "support": {
  2055. "docs": "https://commonmark.thephpleague.com/",
  2056. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2057. "issues": "https://github.com/thephpleague/commonmark/issues",
  2058. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2059. "source": "https://github.com/thephpleague/commonmark"
  2060. },
  2061. "funding": [
  2062. {
  2063. "url": "https://www.colinodell.com/sponsor",
  2064. "type": "custom"
  2065. },
  2066. {
  2067. "url": "https://www.paypal.me/colinpodell/10.00",
  2068. "type": "custom"
  2069. },
  2070. {
  2071. "url": "https://github.com/colinodell",
  2072. "type": "github"
  2073. },
  2074. {
  2075. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2076. "type": "tidelift"
  2077. }
  2078. ],
  2079. "time": "2024-08-16T11:46:16+00:00"
  2080. },
  2081. {
  2082. "name": "league/config",
  2083. "version": "v1.2.0",
  2084. "source": {
  2085. "type": "git",
  2086. "url": "https://github.com/thephpleague/config.git",
  2087. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2088. },
  2089. "dist": {
  2090. "type": "zip",
  2091. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2092. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2093. "shasum": ""
  2094. },
  2095. "require": {
  2096. "dflydev/dot-access-data": "^3.0.1",
  2097. "nette/schema": "^1.2",
  2098. "php": "^7.4 || ^8.0"
  2099. },
  2100. "require-dev": {
  2101. "phpstan/phpstan": "^1.8.2",
  2102. "phpunit/phpunit": "^9.5.5",
  2103. "scrutinizer/ocular": "^1.8.1",
  2104. "unleashedtech/php-coding-standard": "^3.1",
  2105. "vimeo/psalm": "^4.7.3"
  2106. },
  2107. "type": "library",
  2108. "extra": {
  2109. "branch-alias": {
  2110. "dev-main": "1.2-dev"
  2111. }
  2112. },
  2113. "autoload": {
  2114. "psr-4": {
  2115. "League\\Config\\": "src"
  2116. }
  2117. },
  2118. "notification-url": "https://packagist.org/downloads/",
  2119. "license": [
  2120. "BSD-3-Clause"
  2121. ],
  2122. "authors": [
  2123. {
  2124. "name": "Colin O'Dell",
  2125. "email": "colinodell@gmail.com",
  2126. "homepage": "https://www.colinodell.com",
  2127. "role": "Lead Developer"
  2128. }
  2129. ],
  2130. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2131. "homepage": "https://config.thephpleague.com",
  2132. "keywords": [
  2133. "array",
  2134. "config",
  2135. "configuration",
  2136. "dot",
  2137. "dot-access",
  2138. "nested",
  2139. "schema"
  2140. ],
  2141. "support": {
  2142. "docs": "https://config.thephpleague.com/",
  2143. "issues": "https://github.com/thephpleague/config/issues",
  2144. "rss": "https://github.com/thephpleague/config/releases.atom",
  2145. "source": "https://github.com/thephpleague/config"
  2146. },
  2147. "funding": [
  2148. {
  2149. "url": "https://www.colinodell.com/sponsor",
  2150. "type": "custom"
  2151. },
  2152. {
  2153. "url": "https://www.paypal.me/colinpodell/10.00",
  2154. "type": "custom"
  2155. },
  2156. {
  2157. "url": "https://github.com/colinodell",
  2158. "type": "github"
  2159. }
  2160. ],
  2161. "time": "2022-12-11T20:36:23+00:00"
  2162. },
  2163. {
  2164. "name": "league/flysystem",
  2165. "version": "3.29.1",
  2166. "source": {
  2167. "type": "git",
  2168. "url": "https://github.com/thephpleague/flysystem.git",
  2169. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  2170. },
  2171. "dist": {
  2172. "type": "zip",
  2173. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2174. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2175. "shasum": ""
  2176. },
  2177. "require": {
  2178. "league/flysystem-local": "^3.0.0",
  2179. "league/mime-type-detection": "^1.0.0",
  2180. "php": "^8.0.2"
  2181. },
  2182. "conflict": {
  2183. "async-aws/core": "<1.19.0",
  2184. "async-aws/s3": "<1.14.0",
  2185. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2186. "guzzlehttp/guzzle": "<7.0",
  2187. "guzzlehttp/ringphp": "<1.1.1",
  2188. "phpseclib/phpseclib": "3.0.15",
  2189. "symfony/http-client": "<5.2"
  2190. },
  2191. "require-dev": {
  2192. "async-aws/s3": "^1.5 || ^2.0",
  2193. "async-aws/simple-s3": "^1.1 || ^2.0",
  2194. "aws/aws-sdk-php": "^3.295.10",
  2195. "composer/semver": "^3.0",
  2196. "ext-fileinfo": "*",
  2197. "ext-ftp": "*",
  2198. "ext-mongodb": "^1.3",
  2199. "ext-zip": "*",
  2200. "friendsofphp/php-cs-fixer": "^3.5",
  2201. "google/cloud-storage": "^1.23",
  2202. "guzzlehttp/psr7": "^2.6",
  2203. "microsoft/azure-storage-blob": "^1.1",
  2204. "mongodb/mongodb": "^1.2",
  2205. "phpseclib/phpseclib": "^3.0.36",
  2206. "phpstan/phpstan": "^1.10",
  2207. "phpunit/phpunit": "^9.5.11|^10.0",
  2208. "sabre/dav": "^4.6.0"
  2209. },
  2210. "type": "library",
  2211. "autoload": {
  2212. "psr-4": {
  2213. "League\\Flysystem\\": "src"
  2214. }
  2215. },
  2216. "notification-url": "https://packagist.org/downloads/",
  2217. "license": [
  2218. "MIT"
  2219. ],
  2220. "authors": [
  2221. {
  2222. "name": "Frank de Jonge",
  2223. "email": "info@frankdejonge.nl"
  2224. }
  2225. ],
  2226. "description": "File storage abstraction for PHP",
  2227. "keywords": [
  2228. "WebDAV",
  2229. "aws",
  2230. "cloud",
  2231. "file",
  2232. "files",
  2233. "filesystem",
  2234. "filesystems",
  2235. "ftp",
  2236. "s3",
  2237. "sftp",
  2238. "storage"
  2239. ],
  2240. "support": {
  2241. "issues": "https://github.com/thephpleague/flysystem/issues",
  2242. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  2243. },
  2244. "time": "2024-10-08T08:58:34+00:00"
  2245. },
  2246. {
  2247. "name": "league/flysystem-local",
  2248. "version": "3.29.0",
  2249. "source": {
  2250. "type": "git",
  2251. "url": "https://github.com/thephpleague/flysystem-local.git",
  2252. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  2253. },
  2254. "dist": {
  2255. "type": "zip",
  2256. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2257. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2258. "shasum": ""
  2259. },
  2260. "require": {
  2261. "ext-fileinfo": "*",
  2262. "league/flysystem": "^3.0.0",
  2263. "league/mime-type-detection": "^1.0.0",
  2264. "php": "^8.0.2"
  2265. },
  2266. "type": "library",
  2267. "autoload": {
  2268. "psr-4": {
  2269. "League\\Flysystem\\Local\\": ""
  2270. }
  2271. },
  2272. "notification-url": "https://packagist.org/downloads/",
  2273. "license": [
  2274. "MIT"
  2275. ],
  2276. "authors": [
  2277. {
  2278. "name": "Frank de Jonge",
  2279. "email": "info@frankdejonge.nl"
  2280. }
  2281. ],
  2282. "description": "Local filesystem adapter for Flysystem.",
  2283. "keywords": [
  2284. "Flysystem",
  2285. "file",
  2286. "files",
  2287. "filesystem",
  2288. "local"
  2289. ],
  2290. "support": {
  2291. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  2292. },
  2293. "time": "2024-08-09T21:24:39+00:00"
  2294. },
  2295. {
  2296. "name": "league/mime-type-detection",
  2297. "version": "1.16.0",
  2298. "source": {
  2299. "type": "git",
  2300. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2301. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  2302. },
  2303. "dist": {
  2304. "type": "zip",
  2305. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  2306. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  2307. "shasum": ""
  2308. },
  2309. "require": {
  2310. "ext-fileinfo": "*",
  2311. "php": "^7.4 || ^8.0"
  2312. },
  2313. "require-dev": {
  2314. "friendsofphp/php-cs-fixer": "^3.2",
  2315. "phpstan/phpstan": "^0.12.68",
  2316. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2317. },
  2318. "type": "library",
  2319. "autoload": {
  2320. "psr-4": {
  2321. "League\\MimeTypeDetection\\": "src"
  2322. }
  2323. },
  2324. "notification-url": "https://packagist.org/downloads/",
  2325. "license": [
  2326. "MIT"
  2327. ],
  2328. "authors": [
  2329. {
  2330. "name": "Frank de Jonge",
  2331. "email": "info@frankdejonge.nl"
  2332. }
  2333. ],
  2334. "description": "Mime-type detection for Flysystem",
  2335. "support": {
  2336. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2337. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  2338. },
  2339. "funding": [
  2340. {
  2341. "url": "https://github.com/frankdejonge",
  2342. "type": "github"
  2343. },
  2344. {
  2345. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2346. "type": "tidelift"
  2347. }
  2348. ],
  2349. "time": "2024-09-21T08:32:55+00:00"
  2350. },
  2351. {
  2352. "name": "monolog/monolog",
  2353. "version": "3.8.0",
  2354. "source": {
  2355. "type": "git",
  2356. "url": "https://github.com/Seldaek/monolog.git",
  2357. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67"
  2358. },
  2359. "dist": {
  2360. "type": "zip",
  2361. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67",
  2362. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67",
  2363. "shasum": ""
  2364. },
  2365. "require": {
  2366. "php": ">=8.1",
  2367. "psr/log": "^2.0 || ^3.0"
  2368. },
  2369. "provide": {
  2370. "psr/log-implementation": "3.0.0"
  2371. },
  2372. "require-dev": {
  2373. "aws/aws-sdk-php": "^3.0",
  2374. "doctrine/couchdb": "~1.0@dev",
  2375. "elasticsearch/elasticsearch": "^7 || ^8",
  2376. "ext-json": "*",
  2377. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2378. "guzzlehttp/guzzle": "^7.4.5",
  2379. "guzzlehttp/psr7": "^2.2",
  2380. "mongodb/mongodb": "^1.8",
  2381. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2382. "php-console/php-console": "^3.1.8",
  2383. "phpstan/phpstan": "^2",
  2384. "phpstan/phpstan-deprecation-rules": "^2",
  2385. "phpstan/phpstan-strict-rules": "^2",
  2386. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  2387. "predis/predis": "^1.1 || ^2",
  2388. "rollbar/rollbar": "^4.0",
  2389. "ruflin/elastica": "^7 || ^8",
  2390. "symfony/mailer": "^5.4 || ^6",
  2391. "symfony/mime": "^5.4 || ^6"
  2392. },
  2393. "suggest": {
  2394. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2395. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2396. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2397. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2398. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2399. "ext-mbstring": "Allow to work properly with unicode symbols",
  2400. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2401. "ext-openssl": "Required to send log messages using SSL",
  2402. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2403. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2404. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2405. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2406. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2407. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2408. },
  2409. "type": "library",
  2410. "extra": {
  2411. "branch-alias": {
  2412. "dev-main": "3.x-dev"
  2413. }
  2414. },
  2415. "autoload": {
  2416. "psr-4": {
  2417. "Monolog\\": "src/Monolog"
  2418. }
  2419. },
  2420. "notification-url": "https://packagist.org/downloads/",
  2421. "license": [
  2422. "MIT"
  2423. ],
  2424. "authors": [
  2425. {
  2426. "name": "Jordi Boggiano",
  2427. "email": "j.boggiano@seld.be",
  2428. "homepage": "https://seld.be"
  2429. }
  2430. ],
  2431. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2432. "homepage": "https://github.com/Seldaek/monolog",
  2433. "keywords": [
  2434. "log",
  2435. "logging",
  2436. "psr-3"
  2437. ],
  2438. "support": {
  2439. "issues": "https://github.com/Seldaek/monolog/issues",
  2440. "source": "https://github.com/Seldaek/monolog/tree/3.8.0"
  2441. },
  2442. "funding": [
  2443. {
  2444. "url": "https://github.com/Seldaek",
  2445. "type": "github"
  2446. },
  2447. {
  2448. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2449. "type": "tidelift"
  2450. }
  2451. ],
  2452. "time": "2024-11-12T13:57:08+00:00"
  2453. },
  2454. {
  2455. "name": "mpociot/reflection-docblock",
  2456. "version": "1.0.1",
  2457. "source": {
  2458. "type": "git",
  2459. "url": "https://github.com/mpociot/reflection-docblock.git",
  2460. "reference": "c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587"
  2461. },
  2462. "dist": {
  2463. "type": "zip",
  2464. "url": "https://api.github.com/repos/mpociot/reflection-docblock/zipball/c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587",
  2465. "reference": "c8b2e2b1f5cebbb06e2b5ccbf2958f2198867587",
  2466. "shasum": ""
  2467. },
  2468. "require": {
  2469. "php": ">=5.3.3"
  2470. },
  2471. "require-dev": {
  2472. "phpunit/phpunit": "~4.0"
  2473. },
  2474. "suggest": {
  2475. "dflydev/markdown": "~1.0",
  2476. "erusev/parsedown": "~1.0"
  2477. },
  2478. "type": "library",
  2479. "extra": {
  2480. "branch-alias": {
  2481. "dev-master": "2.0.x-dev"
  2482. }
  2483. },
  2484. "autoload": {
  2485. "psr-0": {
  2486. "Mpociot": [
  2487. "src/"
  2488. ]
  2489. }
  2490. },
  2491. "notification-url": "https://packagist.org/downloads/",
  2492. "license": [
  2493. "MIT"
  2494. ],
  2495. "authors": [
  2496. {
  2497. "name": "Mike van Riel",
  2498. "email": "mike.vanriel@naenius.com"
  2499. }
  2500. ],
  2501. "support": {
  2502. "issues": "https://github.com/mpociot/reflection-docblock/issues",
  2503. "source": "https://github.com/mpociot/reflection-docblock/tree/master"
  2504. },
  2505. "time": "2016-06-20T20:53:12+00:00"
  2506. },
  2507. {
  2508. "name": "nesbot/carbon",
  2509. "version": "3.8.2",
  2510. "source": {
  2511. "type": "git",
  2512. "url": "https://github.com/briannesbitt/Carbon.git",
  2513. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947"
  2514. },
  2515. "dist": {
  2516. "type": "zip",
  2517. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  2518. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  2519. "shasum": ""
  2520. },
  2521. "require": {
  2522. "carbonphp/carbon-doctrine-types": "<100.0",
  2523. "ext-json": "*",
  2524. "php": "^8.1",
  2525. "psr/clock": "^1.0",
  2526. "symfony/clock": "^6.3 || ^7.0",
  2527. "symfony/polyfill-mbstring": "^1.0",
  2528. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  2529. },
  2530. "provide": {
  2531. "psr/clock-implementation": "1.0"
  2532. },
  2533. "require-dev": {
  2534. "doctrine/dbal": "^3.6.3 || ^4.0",
  2535. "doctrine/orm": "^2.15.2 || ^3.0",
  2536. "friendsofphp/php-cs-fixer": "^3.57.2",
  2537. "kylekatarnls/multi-tester": "^2.5.3",
  2538. "ondrejmirtes/better-reflection": "^6.25.0.4",
  2539. "phpmd/phpmd": "^2.15.0",
  2540. "phpstan/extension-installer": "^1.3.1",
  2541. "phpstan/phpstan": "^1.11.2",
  2542. "phpunit/phpunit": "^10.5.20",
  2543. "squizlabs/php_codesniffer": "^3.9.0"
  2544. },
  2545. "bin": [
  2546. "bin/carbon"
  2547. ],
  2548. "type": "library",
  2549. "extra": {
  2550. "branch-alias": {
  2551. "dev-master": "3.x-dev",
  2552. "dev-2.x": "2.x-dev"
  2553. },
  2554. "laravel": {
  2555. "providers": [
  2556. "Carbon\\Laravel\\ServiceProvider"
  2557. ]
  2558. },
  2559. "phpstan": {
  2560. "includes": [
  2561. "extension.neon"
  2562. ]
  2563. }
  2564. },
  2565. "autoload": {
  2566. "psr-4": {
  2567. "Carbon\\": "src/Carbon/"
  2568. }
  2569. },
  2570. "notification-url": "https://packagist.org/downloads/",
  2571. "license": [
  2572. "MIT"
  2573. ],
  2574. "authors": [
  2575. {
  2576. "name": "Brian Nesbitt",
  2577. "email": "brian@nesbot.com",
  2578. "homepage": "https://markido.com"
  2579. },
  2580. {
  2581. "name": "kylekatarnls",
  2582. "homepage": "https://github.com/kylekatarnls"
  2583. }
  2584. ],
  2585. "description": "An API extension for DateTime that supports 281 different languages.",
  2586. "homepage": "https://carbon.nesbot.com",
  2587. "keywords": [
  2588. "date",
  2589. "datetime",
  2590. "time"
  2591. ],
  2592. "support": {
  2593. "docs": "https://carbon.nesbot.com/docs",
  2594. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2595. "source": "https://github.com/briannesbitt/Carbon"
  2596. },
  2597. "funding": [
  2598. {
  2599. "url": "https://github.com/sponsors/kylekatarnls",
  2600. "type": "github"
  2601. },
  2602. {
  2603. "url": "https://opencollective.com/Carbon#sponsor",
  2604. "type": "opencollective"
  2605. },
  2606. {
  2607. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2608. "type": "tidelift"
  2609. }
  2610. ],
  2611. "time": "2024-11-07T17:46:48+00:00"
  2612. },
  2613. {
  2614. "name": "nette/schema",
  2615. "version": "v1.3.2",
  2616. "source": {
  2617. "type": "git",
  2618. "url": "https://github.com/nette/schema.git",
  2619. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  2620. },
  2621. "dist": {
  2622. "type": "zip",
  2623. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  2624. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  2625. "shasum": ""
  2626. },
  2627. "require": {
  2628. "nette/utils": "^4.0",
  2629. "php": "8.1 - 8.4"
  2630. },
  2631. "require-dev": {
  2632. "nette/tester": "^2.5.2",
  2633. "phpstan/phpstan-nette": "^1.0",
  2634. "tracy/tracy": "^2.8"
  2635. },
  2636. "type": "library",
  2637. "extra": {
  2638. "branch-alias": {
  2639. "dev-master": "1.3-dev"
  2640. }
  2641. },
  2642. "autoload": {
  2643. "classmap": [
  2644. "src/"
  2645. ]
  2646. },
  2647. "notification-url": "https://packagist.org/downloads/",
  2648. "license": [
  2649. "BSD-3-Clause",
  2650. "GPL-2.0-only",
  2651. "GPL-3.0-only"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "David Grudl",
  2656. "homepage": "https://davidgrudl.com"
  2657. },
  2658. {
  2659. "name": "Nette Community",
  2660. "homepage": "https://nette.org/contributors"
  2661. }
  2662. ],
  2663. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2664. "homepage": "https://nette.org",
  2665. "keywords": [
  2666. "config",
  2667. "nette"
  2668. ],
  2669. "support": {
  2670. "issues": "https://github.com/nette/schema/issues",
  2671. "source": "https://github.com/nette/schema/tree/v1.3.2"
  2672. },
  2673. "time": "2024-10-06T23:10:23+00:00"
  2674. },
  2675. {
  2676. "name": "nette/utils",
  2677. "version": "v4.0.5",
  2678. "source": {
  2679. "type": "git",
  2680. "url": "https://github.com/nette/utils.git",
  2681. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  2682. },
  2683. "dist": {
  2684. "type": "zip",
  2685. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2686. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2687. "shasum": ""
  2688. },
  2689. "require": {
  2690. "php": "8.0 - 8.4"
  2691. },
  2692. "conflict": {
  2693. "nette/finder": "<3",
  2694. "nette/schema": "<1.2.2"
  2695. },
  2696. "require-dev": {
  2697. "jetbrains/phpstorm-attributes": "dev-master",
  2698. "nette/tester": "^2.5",
  2699. "phpstan/phpstan": "^1.0",
  2700. "tracy/tracy": "^2.9"
  2701. },
  2702. "suggest": {
  2703. "ext-gd": "to use Image",
  2704. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2705. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2706. "ext-json": "to use Nette\\Utils\\Json",
  2707. "ext-mbstring": "to use Strings::lower() etc...",
  2708. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2709. },
  2710. "type": "library",
  2711. "extra": {
  2712. "branch-alias": {
  2713. "dev-master": "4.0-dev"
  2714. }
  2715. },
  2716. "autoload": {
  2717. "classmap": [
  2718. "src/"
  2719. ]
  2720. },
  2721. "notification-url": "https://packagist.org/downloads/",
  2722. "license": [
  2723. "BSD-3-Clause",
  2724. "GPL-2.0-only",
  2725. "GPL-3.0-only"
  2726. ],
  2727. "authors": [
  2728. {
  2729. "name": "David Grudl",
  2730. "homepage": "https://davidgrudl.com"
  2731. },
  2732. {
  2733. "name": "Nette Community",
  2734. "homepage": "https://nette.org/contributors"
  2735. }
  2736. ],
  2737. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2738. "homepage": "https://nette.org",
  2739. "keywords": [
  2740. "array",
  2741. "core",
  2742. "datetime",
  2743. "images",
  2744. "json",
  2745. "nette",
  2746. "paginator",
  2747. "password",
  2748. "slugify",
  2749. "string",
  2750. "unicode",
  2751. "utf-8",
  2752. "utility",
  2753. "validation"
  2754. ],
  2755. "support": {
  2756. "issues": "https://github.com/nette/utils/issues",
  2757. "source": "https://github.com/nette/utils/tree/v4.0.5"
  2758. },
  2759. "time": "2024-08-07T15:39:19+00:00"
  2760. },
  2761. {
  2762. "name": "nikic/php-parser",
  2763. "version": "v5.3.1",
  2764. "source": {
  2765. "type": "git",
  2766. "url": "https://github.com/nikic/PHP-Parser.git",
  2767. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  2768. },
  2769. "dist": {
  2770. "type": "zip",
  2771. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  2772. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  2773. "shasum": ""
  2774. },
  2775. "require": {
  2776. "ext-ctype": "*",
  2777. "ext-json": "*",
  2778. "ext-tokenizer": "*",
  2779. "php": ">=7.4"
  2780. },
  2781. "require-dev": {
  2782. "ircmaxell/php-yacc": "^0.0.7",
  2783. "phpunit/phpunit": "^9.0"
  2784. },
  2785. "bin": [
  2786. "bin/php-parse"
  2787. ],
  2788. "type": "library",
  2789. "extra": {
  2790. "branch-alias": {
  2791. "dev-master": "5.0-dev"
  2792. }
  2793. },
  2794. "autoload": {
  2795. "psr-4": {
  2796. "PhpParser\\": "lib/PhpParser"
  2797. }
  2798. },
  2799. "notification-url": "https://packagist.org/downloads/",
  2800. "license": [
  2801. "BSD-3-Clause"
  2802. ],
  2803. "authors": [
  2804. {
  2805. "name": "Nikita Popov"
  2806. }
  2807. ],
  2808. "description": "A PHP parser written in PHP",
  2809. "keywords": [
  2810. "parser",
  2811. "php"
  2812. ],
  2813. "support": {
  2814. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2815. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  2816. },
  2817. "time": "2024-10-08T18:51:32+00:00"
  2818. },
  2819. {
  2820. "name": "nunomaduro/collision",
  2821. "version": "v8.5.0",
  2822. "source": {
  2823. "type": "git",
  2824. "url": "https://github.com/nunomaduro/collision.git",
  2825. "reference": "f5c101b929c958e849a633283adff296ed5f38f5"
  2826. },
  2827. "dist": {
  2828. "type": "zip",
  2829. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f5c101b929c958e849a633283adff296ed5f38f5",
  2830. "reference": "f5c101b929c958e849a633283adff296ed5f38f5",
  2831. "shasum": ""
  2832. },
  2833. "require": {
  2834. "filp/whoops": "^2.16.0",
  2835. "nunomaduro/termwind": "^2.1.0",
  2836. "php": "^8.2.0",
  2837. "symfony/console": "^7.1.5"
  2838. },
  2839. "conflict": {
  2840. "laravel/framework": "<11.0.0 || >=12.0.0",
  2841. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  2842. },
  2843. "require-dev": {
  2844. "larastan/larastan": "^2.9.8",
  2845. "laravel/framework": "^11.28.0",
  2846. "laravel/pint": "^1.18.1",
  2847. "laravel/sail": "^1.36.0",
  2848. "laravel/sanctum": "^4.0.3",
  2849. "laravel/tinker": "^2.10.0",
  2850. "orchestra/testbench-core": "^9.5.3",
  2851. "pestphp/pest": "^2.36.0 || ^3.4.0",
  2852. "sebastian/environment": "^6.1.0 || ^7.2.0"
  2853. },
  2854. "type": "library",
  2855. "extra": {
  2856. "laravel": {
  2857. "providers": [
  2858. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  2859. ]
  2860. },
  2861. "branch-alias": {
  2862. "dev-8.x": "8.x-dev"
  2863. }
  2864. },
  2865. "autoload": {
  2866. "files": [
  2867. "./src/Adapters/Phpunit/Autoload.php"
  2868. ],
  2869. "psr-4": {
  2870. "NunoMaduro\\Collision\\": "src/"
  2871. }
  2872. },
  2873. "notification-url": "https://packagist.org/downloads/",
  2874. "license": [
  2875. "MIT"
  2876. ],
  2877. "authors": [
  2878. {
  2879. "name": "Nuno Maduro",
  2880. "email": "enunomaduro@gmail.com"
  2881. }
  2882. ],
  2883. "description": "Cli error handling for console/command-line PHP applications.",
  2884. "keywords": [
  2885. "artisan",
  2886. "cli",
  2887. "command-line",
  2888. "console",
  2889. "error",
  2890. "handling",
  2891. "laravel",
  2892. "laravel-zero",
  2893. "php",
  2894. "symfony"
  2895. ],
  2896. "support": {
  2897. "issues": "https://github.com/nunomaduro/collision/issues",
  2898. "source": "https://github.com/nunomaduro/collision"
  2899. },
  2900. "funding": [
  2901. {
  2902. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2903. "type": "custom"
  2904. },
  2905. {
  2906. "url": "https://github.com/nunomaduro",
  2907. "type": "github"
  2908. },
  2909. {
  2910. "url": "https://www.patreon.com/nunomaduro",
  2911. "type": "patreon"
  2912. }
  2913. ],
  2914. "time": "2024-10-15T16:06:32+00:00"
  2915. },
  2916. {
  2917. "name": "nunomaduro/termwind",
  2918. "version": "v2.2.0",
  2919. "source": {
  2920. "type": "git",
  2921. "url": "https://github.com/nunomaduro/termwind.git",
  2922. "reference": "42c84e4e8090766bbd6445d06cd6e57650626ea3"
  2923. },
  2924. "dist": {
  2925. "type": "zip",
  2926. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/42c84e4e8090766bbd6445d06cd6e57650626ea3",
  2927. "reference": "42c84e4e8090766bbd6445d06cd6e57650626ea3",
  2928. "shasum": ""
  2929. },
  2930. "require": {
  2931. "ext-mbstring": "*",
  2932. "php": "^8.2",
  2933. "symfony/console": "^7.1.5"
  2934. },
  2935. "require-dev": {
  2936. "illuminate/console": "^11.28.0",
  2937. "laravel/pint": "^1.18.1",
  2938. "mockery/mockery": "^1.6.12",
  2939. "pestphp/pest": "^2.36.0",
  2940. "phpstan/phpstan": "^1.12.6",
  2941. "phpstan/phpstan-strict-rules": "^1.6.1",
  2942. "symfony/var-dumper": "^7.1.5",
  2943. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  2944. },
  2945. "type": "library",
  2946. "extra": {
  2947. "laravel": {
  2948. "providers": [
  2949. "Termwind\\Laravel\\TermwindServiceProvider"
  2950. ]
  2951. },
  2952. "branch-alias": {
  2953. "dev-2.x": "2.x-dev"
  2954. }
  2955. },
  2956. "autoload": {
  2957. "files": [
  2958. "src/Functions.php"
  2959. ],
  2960. "psr-4": {
  2961. "Termwind\\": "src/"
  2962. }
  2963. },
  2964. "notification-url": "https://packagist.org/downloads/",
  2965. "license": [
  2966. "MIT"
  2967. ],
  2968. "authors": [
  2969. {
  2970. "name": "Nuno Maduro",
  2971. "email": "enunomaduro@gmail.com"
  2972. }
  2973. ],
  2974. "description": "Its like Tailwind CSS, but for the console.",
  2975. "keywords": [
  2976. "cli",
  2977. "console",
  2978. "css",
  2979. "package",
  2980. "php",
  2981. "style"
  2982. ],
  2983. "support": {
  2984. "issues": "https://github.com/nunomaduro/termwind/issues",
  2985. "source": "https://github.com/nunomaduro/termwind/tree/v2.2.0"
  2986. },
  2987. "funding": [
  2988. {
  2989. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2990. "type": "custom"
  2991. },
  2992. {
  2993. "url": "https://github.com/nunomaduro",
  2994. "type": "github"
  2995. },
  2996. {
  2997. "url": "https://github.com/xiCO2k",
  2998. "type": "github"
  2999. }
  3000. ],
  3001. "time": "2024-10-15T16:15:16+00:00"
  3002. },
  3003. {
  3004. "name": "nyholm/psr7",
  3005. "version": "1.8.2",
  3006. "source": {
  3007. "type": "git",
  3008. "url": "https://github.com/Nyholm/psr7.git",
  3009. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3"
  3010. },
  3011. "dist": {
  3012. "type": "zip",
  3013. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  3014. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  3015. "shasum": ""
  3016. },
  3017. "require": {
  3018. "php": ">=7.2",
  3019. "psr/http-factory": "^1.0",
  3020. "psr/http-message": "^1.1 || ^2.0"
  3021. },
  3022. "provide": {
  3023. "php-http/message-factory-implementation": "1.0",
  3024. "psr/http-factory-implementation": "1.0",
  3025. "psr/http-message-implementation": "1.0"
  3026. },
  3027. "require-dev": {
  3028. "http-interop/http-factory-tests": "^0.9",
  3029. "php-http/message-factory": "^1.0",
  3030. "php-http/psr7-integration-tests": "^1.0",
  3031. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  3032. "symfony/error-handler": "^4.4"
  3033. },
  3034. "type": "library",
  3035. "extra": {
  3036. "branch-alias": {
  3037. "dev-master": "1.8-dev"
  3038. }
  3039. },
  3040. "autoload": {
  3041. "psr-4": {
  3042. "Nyholm\\Psr7\\": "src/"
  3043. }
  3044. },
  3045. "notification-url": "https://packagist.org/downloads/",
  3046. "license": [
  3047. "MIT"
  3048. ],
  3049. "authors": [
  3050. {
  3051. "name": "Tobias Nyholm",
  3052. "email": "tobias.nyholm@gmail.com"
  3053. },
  3054. {
  3055. "name": "Martijn van der Ven",
  3056. "email": "martijn@vanderven.se"
  3057. }
  3058. ],
  3059. "description": "A fast PHP7 implementation of PSR-7",
  3060. "homepage": "https://tnyholm.se",
  3061. "keywords": [
  3062. "psr-17",
  3063. "psr-7"
  3064. ],
  3065. "support": {
  3066. "issues": "https://github.com/Nyholm/psr7/issues",
  3067. "source": "https://github.com/Nyholm/psr7/tree/1.8.2"
  3068. },
  3069. "funding": [
  3070. {
  3071. "url": "https://github.com/Zegnat",
  3072. "type": "github"
  3073. },
  3074. {
  3075. "url": "https://github.com/nyholm",
  3076. "type": "github"
  3077. }
  3078. ],
  3079. "time": "2024-09-09T07:06:30+00:00"
  3080. },
  3081. {
  3082. "name": "nyholm/psr7-server",
  3083. "version": "1.1.0",
  3084. "source": {
  3085. "type": "git",
  3086. "url": "https://github.com/Nyholm/psr7-server.git",
  3087. "reference": "4335801d851f554ca43fa6e7d2602141538854dc"
  3088. },
  3089. "dist": {
  3090. "type": "zip",
  3091. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/4335801d851f554ca43fa6e7d2602141538854dc",
  3092. "reference": "4335801d851f554ca43fa6e7d2602141538854dc",
  3093. "shasum": ""
  3094. },
  3095. "require": {
  3096. "php": "^7.1 || ^8.0",
  3097. "psr/http-factory": "^1.0",
  3098. "psr/http-message": "^1.0 || ^2.0"
  3099. },
  3100. "require-dev": {
  3101. "nyholm/nsa": "^1.1",
  3102. "nyholm/psr7": "^1.3",
  3103. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  3104. },
  3105. "type": "library",
  3106. "autoload": {
  3107. "psr-4": {
  3108. "Nyholm\\Psr7Server\\": "src/"
  3109. }
  3110. },
  3111. "notification-url": "https://packagist.org/downloads/",
  3112. "license": [
  3113. "MIT"
  3114. ],
  3115. "authors": [
  3116. {
  3117. "name": "Tobias Nyholm",
  3118. "email": "tobias.nyholm@gmail.com"
  3119. },
  3120. {
  3121. "name": "Martijn van der Ven",
  3122. "email": "martijn@vanderven.se"
  3123. }
  3124. ],
  3125. "description": "Helper classes to handle PSR-7 server requests",
  3126. "homepage": "http://tnyholm.se",
  3127. "keywords": [
  3128. "psr-17",
  3129. "psr-7"
  3130. ],
  3131. "support": {
  3132. "issues": "https://github.com/Nyholm/psr7-server/issues",
  3133. "source": "https://github.com/Nyholm/psr7-server/tree/1.1.0"
  3134. },
  3135. "funding": [
  3136. {
  3137. "url": "https://github.com/Zegnat",
  3138. "type": "github"
  3139. },
  3140. {
  3141. "url": "https://github.com/nyholm",
  3142. "type": "github"
  3143. }
  3144. ],
  3145. "time": "2023-11-08T09:30:43+00:00"
  3146. },
  3147. {
  3148. "name": "overtrue/easy-sms",
  3149. "version": "3.0.1",
  3150. "source": {
  3151. "type": "git",
  3152. "url": "https://github.com/overtrue/easy-sms.git",
  3153. "reference": "b97d8b785ae07fe8c181de8d9d1f7f146a5977f7"
  3154. },
  3155. "dist": {
  3156. "type": "zip",
  3157. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/b97d8b785ae07fe8c181de8d9d1f7f146a5977f7",
  3158. "reference": "b97d8b785ae07fe8c181de8d9d1f7f146a5977f7",
  3159. "shasum": ""
  3160. },
  3161. "require": {
  3162. "ext-json": "*",
  3163. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3164. "php": ">=8.0"
  3165. },
  3166. "require-dev": {
  3167. "friendsofphp/php-cs-fixer": "^3.54",
  3168. "jetbrains/phpstorm-attributes": "^1.0",
  3169. "mockery/mockery": "^1.4.2",
  3170. "phpunit/phpunit": "^9.5.8"
  3171. },
  3172. "type": "library",
  3173. "autoload": {
  3174. "psr-4": {
  3175. "Overtrue\\EasySms\\": "src"
  3176. }
  3177. },
  3178. "notification-url": "https://packagist.org/downloads/",
  3179. "license": [
  3180. "MIT"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "overtrue",
  3185. "email": "i@overtrue.me"
  3186. }
  3187. ],
  3188. "description": "The easiest way to send short message.",
  3189. "support": {
  3190. "issues": "https://github.com/overtrue/easy-sms/issues",
  3191. "source": "https://github.com/overtrue/easy-sms/tree/3.0.1"
  3192. },
  3193. "funding": [
  3194. {
  3195. "url": "https://github.com/overtrue",
  3196. "type": "github"
  3197. }
  3198. ],
  3199. "time": "2024-07-16T06:07:02+00:00"
  3200. },
  3201. {
  3202. "name": "overtrue/laravel-wechat",
  3203. "version": "7.3.0",
  3204. "source": {
  3205. "type": "git",
  3206. "url": "https://github.com/overtrue/laravel-wechat.git",
  3207. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579"
  3208. },
  3209. "dist": {
  3210. "type": "zip",
  3211. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3212. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3213. "shasum": ""
  3214. },
  3215. "require": {
  3216. "illuminate/container": "^9.0|^10.0|^11.0",
  3217. "w7corp/easywechat": "^6.0.0"
  3218. },
  3219. "require-dev": {
  3220. "brainmaestro/composer-git-hooks": "dev-master",
  3221. "jetbrains/phpstorm-attributes": "^1.0",
  3222. "laravel/framework": "^10.0",
  3223. "laravel/pint": "^1.5"
  3224. },
  3225. "type": "library",
  3226. "extra": {
  3227. "laravel": {
  3228. "providers": [
  3229. "Overtrue\\LaravelWeChat\\ServiceProvider"
  3230. ]
  3231. },
  3232. "hooks": {
  3233. "pre-commit": [
  3234. "composer check-style"
  3235. ],
  3236. "pre-push": [
  3237. "composer check-style"
  3238. ]
  3239. }
  3240. },
  3241. "autoload": {
  3242. "psr-4": {
  3243. "Overtrue\\LaravelWeChat\\": "src/"
  3244. }
  3245. },
  3246. "notification-url": "https://packagist.org/downloads/",
  3247. "license": [
  3248. "MIT"
  3249. ],
  3250. "authors": [
  3251. {
  3252. "name": "overtrue",
  3253. "email": "anzhengchao@gmail.com"
  3254. }
  3255. ],
  3256. "description": "微信 SDK for Laravel",
  3257. "keywords": [
  3258. "laravel",
  3259. "sdk",
  3260. "wechat",
  3261. "weixin"
  3262. ],
  3263. "support": {
  3264. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  3265. "source": "https://github.com/overtrue/laravel-wechat/tree/7.3.0"
  3266. },
  3267. "funding": [
  3268. {
  3269. "url": "https://github.com/overtrue",
  3270. "type": "github"
  3271. }
  3272. ],
  3273. "time": "2024-03-13T02:06:36+00:00"
  3274. },
  3275. {
  3276. "name": "overtrue/socialite",
  3277. "version": "4.11.2",
  3278. "source": {
  3279. "type": "git",
  3280. "url": "https://github.com/overtrue/socialite.git",
  3281. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66"
  3282. },
  3283. "dist": {
  3284. "type": "zip",
  3285. "url": "https://api.github.com/repos/overtrue/socialite/zipball/83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3286. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3287. "shasum": ""
  3288. },
  3289. "require": {
  3290. "ext-json": "*",
  3291. "ext-openssl": "*",
  3292. "guzzlehttp/guzzle": "^7.0",
  3293. "php": ">=8.0.2"
  3294. },
  3295. "require-dev": {
  3296. "jetbrains/phpstorm-attributes": "^1.0",
  3297. "laravel/pint": "^1.2",
  3298. "mockery/mockery": "^1.3",
  3299. "phpstan/phpstan": "^1.7",
  3300. "phpunit/phpunit": "^11.3"
  3301. },
  3302. "type": "library",
  3303. "autoload": {
  3304. "files": [
  3305. "src/Contracts/FactoryInterface.php",
  3306. "src/Contracts/UserInterface.php",
  3307. "src/Contracts/ProviderInterface.php"
  3308. ],
  3309. "psr-4": {
  3310. "Overtrue\\Socialite\\": "src/"
  3311. }
  3312. },
  3313. "notification-url": "https://packagist.org/downloads/",
  3314. "license": [
  3315. "MIT"
  3316. ],
  3317. "authors": [
  3318. {
  3319. "name": "overtrue",
  3320. "email": "anzhengchao@gmail.com"
  3321. }
  3322. ],
  3323. "description": "A collection of OAuth 2 packages.",
  3324. "keywords": [
  3325. "Feishu",
  3326. "login",
  3327. "oauth",
  3328. "qcloud",
  3329. "qq",
  3330. "social",
  3331. "wechat",
  3332. "weibo"
  3333. ],
  3334. "support": {
  3335. "issues": "https://github.com/overtrue/socialite/issues",
  3336. "source": "https://github.com/overtrue/socialite/tree/4.11.2"
  3337. },
  3338. "funding": [
  3339. {
  3340. "url": "https://github.com/overtrue",
  3341. "type": "github"
  3342. }
  3343. ],
  3344. "time": "2024-10-08T16:23:14+00:00"
  3345. },
  3346. {
  3347. "name": "phpoption/phpoption",
  3348. "version": "1.9.3",
  3349. "source": {
  3350. "type": "git",
  3351. "url": "https://github.com/schmittjoh/php-option.git",
  3352. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3353. },
  3354. "dist": {
  3355. "type": "zip",
  3356. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3357. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3358. "shasum": ""
  3359. },
  3360. "require": {
  3361. "php": "^7.2.5 || ^8.0"
  3362. },
  3363. "require-dev": {
  3364. "bamarni/composer-bin-plugin": "^1.8.2",
  3365. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3366. },
  3367. "type": "library",
  3368. "extra": {
  3369. "bamarni-bin": {
  3370. "bin-links": true,
  3371. "forward-command": false
  3372. },
  3373. "branch-alias": {
  3374. "dev-master": "1.9-dev"
  3375. }
  3376. },
  3377. "autoload": {
  3378. "psr-4": {
  3379. "PhpOption\\": "src/PhpOption/"
  3380. }
  3381. },
  3382. "notification-url": "https://packagist.org/downloads/",
  3383. "license": [
  3384. "Apache-2.0"
  3385. ],
  3386. "authors": [
  3387. {
  3388. "name": "Johannes M. Schmitt",
  3389. "email": "schmittjoh@gmail.com",
  3390. "homepage": "https://github.com/schmittjoh"
  3391. },
  3392. {
  3393. "name": "Graham Campbell",
  3394. "email": "hello@gjcampbell.co.uk",
  3395. "homepage": "https://github.com/GrahamCampbell"
  3396. }
  3397. ],
  3398. "description": "Option Type for PHP",
  3399. "keywords": [
  3400. "language",
  3401. "option",
  3402. "php",
  3403. "type"
  3404. ],
  3405. "support": {
  3406. "issues": "https://github.com/schmittjoh/php-option/issues",
  3407. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3408. },
  3409. "funding": [
  3410. {
  3411. "url": "https://github.com/GrahamCampbell",
  3412. "type": "github"
  3413. },
  3414. {
  3415. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3416. "type": "tidelift"
  3417. }
  3418. ],
  3419. "time": "2024-07-20T21:41:07+00:00"
  3420. },
  3421. {
  3422. "name": "psr/cache",
  3423. "version": "3.0.0",
  3424. "source": {
  3425. "type": "git",
  3426. "url": "https://github.com/php-fig/cache.git",
  3427. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3428. },
  3429. "dist": {
  3430. "type": "zip",
  3431. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3432. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3433. "shasum": ""
  3434. },
  3435. "require": {
  3436. "php": ">=8.0.0"
  3437. },
  3438. "type": "library",
  3439. "extra": {
  3440. "branch-alias": {
  3441. "dev-master": "1.0.x-dev"
  3442. }
  3443. },
  3444. "autoload": {
  3445. "psr-4": {
  3446. "Psr\\Cache\\": "src/"
  3447. }
  3448. },
  3449. "notification-url": "https://packagist.org/downloads/",
  3450. "license": [
  3451. "MIT"
  3452. ],
  3453. "authors": [
  3454. {
  3455. "name": "PHP-FIG",
  3456. "homepage": "https://www.php-fig.org/"
  3457. }
  3458. ],
  3459. "description": "Common interface for caching libraries",
  3460. "keywords": [
  3461. "cache",
  3462. "psr",
  3463. "psr-6"
  3464. ],
  3465. "support": {
  3466. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3467. },
  3468. "time": "2021-02-03T23:26:27+00:00"
  3469. },
  3470. {
  3471. "name": "psr/clock",
  3472. "version": "1.0.0",
  3473. "source": {
  3474. "type": "git",
  3475. "url": "https://github.com/php-fig/clock.git",
  3476. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3477. },
  3478. "dist": {
  3479. "type": "zip",
  3480. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3481. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3482. "shasum": ""
  3483. },
  3484. "require": {
  3485. "php": "^7.0 || ^8.0"
  3486. },
  3487. "type": "library",
  3488. "autoload": {
  3489. "psr-4": {
  3490. "Psr\\Clock\\": "src/"
  3491. }
  3492. },
  3493. "notification-url": "https://packagist.org/downloads/",
  3494. "license": [
  3495. "MIT"
  3496. ],
  3497. "authors": [
  3498. {
  3499. "name": "PHP-FIG",
  3500. "homepage": "https://www.php-fig.org/"
  3501. }
  3502. ],
  3503. "description": "Common interface for reading the clock.",
  3504. "homepage": "https://github.com/php-fig/clock",
  3505. "keywords": [
  3506. "clock",
  3507. "now",
  3508. "psr",
  3509. "psr-20",
  3510. "time"
  3511. ],
  3512. "support": {
  3513. "issues": "https://github.com/php-fig/clock/issues",
  3514. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3515. },
  3516. "time": "2022-11-25T14:36:26+00:00"
  3517. },
  3518. {
  3519. "name": "psr/container",
  3520. "version": "2.0.2",
  3521. "source": {
  3522. "type": "git",
  3523. "url": "https://github.com/php-fig/container.git",
  3524. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3525. },
  3526. "dist": {
  3527. "type": "zip",
  3528. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3529. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3530. "shasum": ""
  3531. },
  3532. "require": {
  3533. "php": ">=7.4.0"
  3534. },
  3535. "type": "library",
  3536. "extra": {
  3537. "branch-alias": {
  3538. "dev-master": "2.0.x-dev"
  3539. }
  3540. },
  3541. "autoload": {
  3542. "psr-4": {
  3543. "Psr\\Container\\": "src/"
  3544. }
  3545. },
  3546. "notification-url": "https://packagist.org/downloads/",
  3547. "license": [
  3548. "MIT"
  3549. ],
  3550. "authors": [
  3551. {
  3552. "name": "PHP-FIG",
  3553. "homepage": "https://www.php-fig.org/"
  3554. }
  3555. ],
  3556. "description": "Common Container Interface (PHP FIG PSR-11)",
  3557. "homepage": "https://github.com/php-fig/container",
  3558. "keywords": [
  3559. "PSR-11",
  3560. "container",
  3561. "container-interface",
  3562. "container-interop",
  3563. "psr"
  3564. ],
  3565. "support": {
  3566. "issues": "https://github.com/php-fig/container/issues",
  3567. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3568. },
  3569. "time": "2021-11-05T16:47:00+00:00"
  3570. },
  3571. {
  3572. "name": "psr/event-dispatcher",
  3573. "version": "1.0.0",
  3574. "source": {
  3575. "type": "git",
  3576. "url": "https://github.com/php-fig/event-dispatcher.git",
  3577. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3578. },
  3579. "dist": {
  3580. "type": "zip",
  3581. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3582. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3583. "shasum": ""
  3584. },
  3585. "require": {
  3586. "php": ">=7.2.0"
  3587. },
  3588. "type": "library",
  3589. "extra": {
  3590. "branch-alias": {
  3591. "dev-master": "1.0.x-dev"
  3592. }
  3593. },
  3594. "autoload": {
  3595. "psr-4": {
  3596. "Psr\\EventDispatcher\\": "src/"
  3597. }
  3598. },
  3599. "notification-url": "https://packagist.org/downloads/",
  3600. "license": [
  3601. "MIT"
  3602. ],
  3603. "authors": [
  3604. {
  3605. "name": "PHP-FIG",
  3606. "homepage": "http://www.php-fig.org/"
  3607. }
  3608. ],
  3609. "description": "Standard interfaces for event handling.",
  3610. "keywords": [
  3611. "events",
  3612. "psr",
  3613. "psr-14"
  3614. ],
  3615. "support": {
  3616. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3617. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3618. },
  3619. "time": "2019-01-08T18:20:26+00:00"
  3620. },
  3621. {
  3622. "name": "psr/http-client",
  3623. "version": "1.0.3",
  3624. "source": {
  3625. "type": "git",
  3626. "url": "https://github.com/php-fig/http-client.git",
  3627. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3628. },
  3629. "dist": {
  3630. "type": "zip",
  3631. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3632. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3633. "shasum": ""
  3634. },
  3635. "require": {
  3636. "php": "^7.0 || ^8.0",
  3637. "psr/http-message": "^1.0 || ^2.0"
  3638. },
  3639. "type": "library",
  3640. "extra": {
  3641. "branch-alias": {
  3642. "dev-master": "1.0.x-dev"
  3643. }
  3644. },
  3645. "autoload": {
  3646. "psr-4": {
  3647. "Psr\\Http\\Client\\": "src/"
  3648. }
  3649. },
  3650. "notification-url": "https://packagist.org/downloads/",
  3651. "license": [
  3652. "MIT"
  3653. ],
  3654. "authors": [
  3655. {
  3656. "name": "PHP-FIG",
  3657. "homepage": "https://www.php-fig.org/"
  3658. }
  3659. ],
  3660. "description": "Common interface for HTTP clients",
  3661. "homepage": "https://github.com/php-fig/http-client",
  3662. "keywords": [
  3663. "http",
  3664. "http-client",
  3665. "psr",
  3666. "psr-18"
  3667. ],
  3668. "support": {
  3669. "source": "https://github.com/php-fig/http-client"
  3670. },
  3671. "time": "2023-09-23T14:17:50+00:00"
  3672. },
  3673. {
  3674. "name": "psr/http-factory",
  3675. "version": "1.1.0",
  3676. "source": {
  3677. "type": "git",
  3678. "url": "https://github.com/php-fig/http-factory.git",
  3679. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  3680. },
  3681. "dist": {
  3682. "type": "zip",
  3683. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3684. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3685. "shasum": ""
  3686. },
  3687. "require": {
  3688. "php": ">=7.1",
  3689. "psr/http-message": "^1.0 || ^2.0"
  3690. },
  3691. "type": "library",
  3692. "extra": {
  3693. "branch-alias": {
  3694. "dev-master": "1.0.x-dev"
  3695. }
  3696. },
  3697. "autoload": {
  3698. "psr-4": {
  3699. "Psr\\Http\\Message\\": "src/"
  3700. }
  3701. },
  3702. "notification-url": "https://packagist.org/downloads/",
  3703. "license": [
  3704. "MIT"
  3705. ],
  3706. "authors": [
  3707. {
  3708. "name": "PHP-FIG",
  3709. "homepage": "https://www.php-fig.org/"
  3710. }
  3711. ],
  3712. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  3713. "keywords": [
  3714. "factory",
  3715. "http",
  3716. "message",
  3717. "psr",
  3718. "psr-17",
  3719. "psr-7",
  3720. "request",
  3721. "response"
  3722. ],
  3723. "support": {
  3724. "source": "https://github.com/php-fig/http-factory"
  3725. },
  3726. "time": "2024-04-15T12:06:14+00:00"
  3727. },
  3728. {
  3729. "name": "psr/http-message",
  3730. "version": "2.0",
  3731. "source": {
  3732. "type": "git",
  3733. "url": "https://github.com/php-fig/http-message.git",
  3734. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  3735. },
  3736. "dist": {
  3737. "type": "zip",
  3738. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3739. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3740. "shasum": ""
  3741. },
  3742. "require": {
  3743. "php": "^7.2 || ^8.0"
  3744. },
  3745. "type": "library",
  3746. "extra": {
  3747. "branch-alias": {
  3748. "dev-master": "2.0.x-dev"
  3749. }
  3750. },
  3751. "autoload": {
  3752. "psr-4": {
  3753. "Psr\\Http\\Message\\": "src/"
  3754. }
  3755. },
  3756. "notification-url": "https://packagist.org/downloads/",
  3757. "license": [
  3758. "MIT"
  3759. ],
  3760. "authors": [
  3761. {
  3762. "name": "PHP-FIG",
  3763. "homepage": "https://www.php-fig.org/"
  3764. }
  3765. ],
  3766. "description": "Common interface for HTTP messages",
  3767. "homepage": "https://github.com/php-fig/http-message",
  3768. "keywords": [
  3769. "http",
  3770. "http-message",
  3771. "psr",
  3772. "psr-7",
  3773. "request",
  3774. "response"
  3775. ],
  3776. "support": {
  3777. "source": "https://github.com/php-fig/http-message/tree/2.0"
  3778. },
  3779. "time": "2023-04-04T09:54:51+00:00"
  3780. },
  3781. {
  3782. "name": "psr/log",
  3783. "version": "3.0.2",
  3784. "source": {
  3785. "type": "git",
  3786. "url": "https://github.com/php-fig/log.git",
  3787. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  3788. },
  3789. "dist": {
  3790. "type": "zip",
  3791. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3792. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3793. "shasum": ""
  3794. },
  3795. "require": {
  3796. "php": ">=8.0.0"
  3797. },
  3798. "type": "library",
  3799. "extra": {
  3800. "branch-alias": {
  3801. "dev-master": "3.x-dev"
  3802. }
  3803. },
  3804. "autoload": {
  3805. "psr-4": {
  3806. "Psr\\Log\\": "src"
  3807. }
  3808. },
  3809. "notification-url": "https://packagist.org/downloads/",
  3810. "license": [
  3811. "MIT"
  3812. ],
  3813. "authors": [
  3814. {
  3815. "name": "PHP-FIG",
  3816. "homepage": "https://www.php-fig.org/"
  3817. }
  3818. ],
  3819. "description": "Common interface for logging libraries",
  3820. "homepage": "https://github.com/php-fig/log",
  3821. "keywords": [
  3822. "log",
  3823. "psr",
  3824. "psr-3"
  3825. ],
  3826. "support": {
  3827. "source": "https://github.com/php-fig/log/tree/3.0.2"
  3828. },
  3829. "time": "2024-09-11T13:17:53+00:00"
  3830. },
  3831. {
  3832. "name": "psr/simple-cache",
  3833. "version": "3.0.0",
  3834. "source": {
  3835. "type": "git",
  3836. "url": "https://github.com/php-fig/simple-cache.git",
  3837. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  3838. },
  3839. "dist": {
  3840. "type": "zip",
  3841. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3842. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3843. "shasum": ""
  3844. },
  3845. "require": {
  3846. "php": ">=8.0.0"
  3847. },
  3848. "type": "library",
  3849. "extra": {
  3850. "branch-alias": {
  3851. "dev-master": "3.0.x-dev"
  3852. }
  3853. },
  3854. "autoload": {
  3855. "psr-4": {
  3856. "Psr\\SimpleCache\\": "src/"
  3857. }
  3858. },
  3859. "notification-url": "https://packagist.org/downloads/",
  3860. "license": [
  3861. "MIT"
  3862. ],
  3863. "authors": [
  3864. {
  3865. "name": "PHP-FIG",
  3866. "homepage": "https://www.php-fig.org/"
  3867. }
  3868. ],
  3869. "description": "Common interfaces for simple caching",
  3870. "keywords": [
  3871. "cache",
  3872. "caching",
  3873. "psr",
  3874. "psr-16",
  3875. "simple-cache"
  3876. ],
  3877. "support": {
  3878. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3879. },
  3880. "time": "2021-10-29T13:26:27+00:00"
  3881. },
  3882. {
  3883. "name": "psy/psysh",
  3884. "version": "v0.12.4",
  3885. "source": {
  3886. "type": "git",
  3887. "url": "https://github.com/bobthecow/psysh.git",
  3888. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  3889. },
  3890. "dist": {
  3891. "type": "zip",
  3892. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  3893. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  3894. "shasum": ""
  3895. },
  3896. "require": {
  3897. "ext-json": "*",
  3898. "ext-tokenizer": "*",
  3899. "nikic/php-parser": "^5.0 || ^4.0",
  3900. "php": "^8.0 || ^7.4",
  3901. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  3902. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  3903. },
  3904. "conflict": {
  3905. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  3906. },
  3907. "require-dev": {
  3908. "bamarni/composer-bin-plugin": "^1.2"
  3909. },
  3910. "suggest": {
  3911. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3912. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3913. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  3914. },
  3915. "bin": [
  3916. "bin/psysh"
  3917. ],
  3918. "type": "library",
  3919. "extra": {
  3920. "branch-alias": {
  3921. "dev-main": "0.12.x-dev"
  3922. },
  3923. "bamarni-bin": {
  3924. "bin-links": false,
  3925. "forward-command": false
  3926. }
  3927. },
  3928. "autoload": {
  3929. "files": [
  3930. "src/functions.php"
  3931. ],
  3932. "psr-4": {
  3933. "Psy\\": "src/"
  3934. }
  3935. },
  3936. "notification-url": "https://packagist.org/downloads/",
  3937. "license": [
  3938. "MIT"
  3939. ],
  3940. "authors": [
  3941. {
  3942. "name": "Justin Hileman",
  3943. "email": "justin@justinhileman.info",
  3944. "homepage": "http://justinhileman.com"
  3945. }
  3946. ],
  3947. "description": "An interactive shell for modern PHP.",
  3948. "homepage": "http://psysh.org",
  3949. "keywords": [
  3950. "REPL",
  3951. "console",
  3952. "interactive",
  3953. "shell"
  3954. ],
  3955. "support": {
  3956. "issues": "https://github.com/bobthecow/psysh/issues",
  3957. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  3958. },
  3959. "time": "2024-06-10T01:18:23+00:00"
  3960. },
  3961. {
  3962. "name": "ralouphie/getallheaders",
  3963. "version": "3.0.3",
  3964. "source": {
  3965. "type": "git",
  3966. "url": "https://github.com/ralouphie/getallheaders.git",
  3967. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3968. },
  3969. "dist": {
  3970. "type": "zip",
  3971. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3972. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3973. "shasum": ""
  3974. },
  3975. "require": {
  3976. "php": ">=5.6"
  3977. },
  3978. "require-dev": {
  3979. "php-coveralls/php-coveralls": "^2.1",
  3980. "phpunit/phpunit": "^5 || ^6.5"
  3981. },
  3982. "type": "library",
  3983. "autoload": {
  3984. "files": [
  3985. "src/getallheaders.php"
  3986. ]
  3987. },
  3988. "notification-url": "https://packagist.org/downloads/",
  3989. "license": [
  3990. "MIT"
  3991. ],
  3992. "authors": [
  3993. {
  3994. "name": "Ralph Khattar",
  3995. "email": "ralph.khattar@gmail.com"
  3996. }
  3997. ],
  3998. "description": "A polyfill for getallheaders.",
  3999. "support": {
  4000. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4001. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4002. },
  4003. "time": "2019-03-08T08:55:37+00:00"
  4004. },
  4005. {
  4006. "name": "ramsey/collection",
  4007. "version": "2.0.0",
  4008. "source": {
  4009. "type": "git",
  4010. "url": "https://github.com/ramsey/collection.git",
  4011. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4012. },
  4013. "dist": {
  4014. "type": "zip",
  4015. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4016. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4017. "shasum": ""
  4018. },
  4019. "require": {
  4020. "php": "^8.1"
  4021. },
  4022. "require-dev": {
  4023. "captainhook/plugin-composer": "^5.3",
  4024. "ergebnis/composer-normalize": "^2.28.3",
  4025. "fakerphp/faker": "^1.21",
  4026. "hamcrest/hamcrest-php": "^2.0",
  4027. "jangregor/phpstan-prophecy": "^1.0",
  4028. "mockery/mockery": "^1.5",
  4029. "php-parallel-lint/php-console-highlighter": "^1.0",
  4030. "php-parallel-lint/php-parallel-lint": "^1.3",
  4031. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4032. "phpspec/prophecy-phpunit": "^2.0",
  4033. "phpstan/extension-installer": "^1.2",
  4034. "phpstan/phpstan": "^1.9",
  4035. "phpstan/phpstan-mockery": "^1.1",
  4036. "phpstan/phpstan-phpunit": "^1.3",
  4037. "phpunit/phpunit": "^9.5",
  4038. "psalm/plugin-mockery": "^1.1",
  4039. "psalm/plugin-phpunit": "^0.18.4",
  4040. "ramsey/coding-standard": "^2.0.3",
  4041. "ramsey/conventional-commits": "^1.3",
  4042. "vimeo/psalm": "^5.4"
  4043. },
  4044. "type": "library",
  4045. "extra": {
  4046. "captainhook": {
  4047. "force-install": true
  4048. },
  4049. "ramsey/conventional-commits": {
  4050. "configFile": "conventional-commits.json"
  4051. }
  4052. },
  4053. "autoload": {
  4054. "psr-4": {
  4055. "Ramsey\\Collection\\": "src/"
  4056. }
  4057. },
  4058. "notification-url": "https://packagist.org/downloads/",
  4059. "license": [
  4060. "MIT"
  4061. ],
  4062. "authors": [
  4063. {
  4064. "name": "Ben Ramsey",
  4065. "email": "ben@benramsey.com",
  4066. "homepage": "https://benramsey.com"
  4067. }
  4068. ],
  4069. "description": "A PHP library for representing and manipulating collections.",
  4070. "keywords": [
  4071. "array",
  4072. "collection",
  4073. "hash",
  4074. "map",
  4075. "queue",
  4076. "set"
  4077. ],
  4078. "support": {
  4079. "issues": "https://github.com/ramsey/collection/issues",
  4080. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4081. },
  4082. "funding": [
  4083. {
  4084. "url": "https://github.com/ramsey",
  4085. "type": "github"
  4086. },
  4087. {
  4088. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4089. "type": "tidelift"
  4090. }
  4091. ],
  4092. "time": "2022-12-31T21:50:55+00:00"
  4093. },
  4094. {
  4095. "name": "ramsey/uuid",
  4096. "version": "4.7.6",
  4097. "source": {
  4098. "type": "git",
  4099. "url": "https://github.com/ramsey/uuid.git",
  4100. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  4101. },
  4102. "dist": {
  4103. "type": "zip",
  4104. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  4105. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  4106. "shasum": ""
  4107. },
  4108. "require": {
  4109. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  4110. "ext-json": "*",
  4111. "php": "^8.0",
  4112. "ramsey/collection": "^1.2 || ^2.0"
  4113. },
  4114. "replace": {
  4115. "rhumsaa/uuid": "self.version"
  4116. },
  4117. "require-dev": {
  4118. "captainhook/captainhook": "^5.10",
  4119. "captainhook/plugin-composer": "^5.3",
  4120. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4121. "doctrine/annotations": "^1.8",
  4122. "ergebnis/composer-normalize": "^2.15",
  4123. "mockery/mockery": "^1.3",
  4124. "paragonie/random-lib": "^2",
  4125. "php-mock/php-mock": "^2.2",
  4126. "php-mock/php-mock-mockery": "^1.3",
  4127. "php-parallel-lint/php-parallel-lint": "^1.1",
  4128. "phpbench/phpbench": "^1.0",
  4129. "phpstan/extension-installer": "^1.1",
  4130. "phpstan/phpstan": "^1.8",
  4131. "phpstan/phpstan-mockery": "^1.1",
  4132. "phpstan/phpstan-phpunit": "^1.1",
  4133. "phpunit/phpunit": "^8.5 || ^9",
  4134. "ramsey/composer-repl": "^1.4",
  4135. "slevomat/coding-standard": "^8.4",
  4136. "squizlabs/php_codesniffer": "^3.5",
  4137. "vimeo/psalm": "^4.9"
  4138. },
  4139. "suggest": {
  4140. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4141. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4142. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4143. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4144. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4145. },
  4146. "type": "library",
  4147. "extra": {
  4148. "captainhook": {
  4149. "force-install": true
  4150. }
  4151. },
  4152. "autoload": {
  4153. "files": [
  4154. "src/functions.php"
  4155. ],
  4156. "psr-4": {
  4157. "Ramsey\\Uuid\\": "src/"
  4158. }
  4159. },
  4160. "notification-url": "https://packagist.org/downloads/",
  4161. "license": [
  4162. "MIT"
  4163. ],
  4164. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4165. "keywords": [
  4166. "guid",
  4167. "identifier",
  4168. "uuid"
  4169. ],
  4170. "support": {
  4171. "issues": "https://github.com/ramsey/uuid/issues",
  4172. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  4173. },
  4174. "funding": [
  4175. {
  4176. "url": "https://github.com/ramsey",
  4177. "type": "github"
  4178. },
  4179. {
  4180. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4181. "type": "tidelift"
  4182. }
  4183. ],
  4184. "time": "2024-04-27T21:32:50+00:00"
  4185. },
  4186. {
  4187. "name": "rap2hpoutre/laravel-log-viewer",
  4188. "version": "v2.4.0",
  4189. "source": {
  4190. "type": "git",
  4191. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4192. "reference": "49c52ae197b3d4f7f9e43d328628edc4bc529afa"
  4193. },
  4194. "dist": {
  4195. "type": "zip",
  4196. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/49c52ae197b3d4f7f9e43d328628edc4bc529afa",
  4197. "reference": "49c52ae197b3d4f7f9e43d328628edc4bc529afa",
  4198. "shasum": ""
  4199. },
  4200. "require": {
  4201. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  4202. "php": "^7.2|^8.0"
  4203. },
  4204. "require-dev": {
  4205. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  4206. "phpunit/phpunit": "^7||^8.4|^9.3.3|^10.1"
  4207. },
  4208. "type": "laravel-package",
  4209. "extra": {
  4210. "laravel": {
  4211. "providers": [
  4212. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4213. ]
  4214. }
  4215. },
  4216. "autoload": {
  4217. "psr-0": {
  4218. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4219. },
  4220. "classmap": [
  4221. "src/controllers"
  4222. ]
  4223. },
  4224. "notification-url": "https://packagist.org/downloads/",
  4225. "license": [
  4226. "MIT"
  4227. ],
  4228. "authors": [
  4229. {
  4230. "name": "rap2hpoutre",
  4231. "email": "raphaelht@gmail.com"
  4232. }
  4233. ],
  4234. "description": "A Laravel log reader",
  4235. "keywords": [
  4236. "laravel",
  4237. "log",
  4238. "log-reader",
  4239. "log-viewer",
  4240. "logging",
  4241. "lumen"
  4242. ],
  4243. "support": {
  4244. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4245. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/v2.4.0"
  4246. },
  4247. "time": "2024-03-20T08:49:53+00:00"
  4248. },
  4249. {
  4250. "name": "shalvah/clara",
  4251. "version": "3.2.0",
  4252. "source": {
  4253. "type": "git",
  4254. "url": "https://github.com/shalvah/clara.git",
  4255. "reference": "cdbb5737cbdd101756d97dd2279a979a1af7710b"
  4256. },
  4257. "dist": {
  4258. "type": "zip",
  4259. "url": "https://api.github.com/repos/shalvah/clara/zipball/cdbb5737cbdd101756d97dd2279a979a1af7710b",
  4260. "reference": "cdbb5737cbdd101756d97dd2279a979a1af7710b",
  4261. "shasum": ""
  4262. },
  4263. "require": {
  4264. "php": ">=7.4",
  4265. "symfony/console": "^4.0|^5.0|^6.0|^7.0"
  4266. },
  4267. "require-dev": {
  4268. "eloquent/phony-phpunit": "^7.0",
  4269. "phpunit/phpunit": "^9.1"
  4270. },
  4271. "type": "library",
  4272. "autoload": {
  4273. "files": [
  4274. "helpers.php"
  4275. ],
  4276. "psr-4": {
  4277. "Shalvah\\Clara\\": "src/"
  4278. }
  4279. },
  4280. "notification-url": "https://packagist.org/downloads/",
  4281. "license": [
  4282. "MIT"
  4283. ],
  4284. "description": "🔊 Simple, pretty, testable console output for CLI apps.",
  4285. "keywords": [
  4286. "cli",
  4287. "log",
  4288. "logging"
  4289. ],
  4290. "support": {
  4291. "issues": "https://github.com/shalvah/clara/issues",
  4292. "source": "https://github.com/shalvah/clara/tree/3.2.0"
  4293. },
  4294. "time": "2024-02-27T20:30:59+00:00"
  4295. },
  4296. {
  4297. "name": "shalvah/upgrader",
  4298. "version": "0.6.0",
  4299. "source": {
  4300. "type": "git",
  4301. "url": "https://github.com/shalvah/upgrader.git",
  4302. "reference": "d95ed17fe9f5e1ee7d47ad835595f1af080a867f"
  4303. },
  4304. "dist": {
  4305. "type": "zip",
  4306. "url": "https://api.github.com/repos/shalvah/upgrader/zipball/d95ed17fe9f5e1ee7d47ad835595f1af080a867f",
  4307. "reference": "d95ed17fe9f5e1ee7d47ad835595f1af080a867f",
  4308. "shasum": ""
  4309. },
  4310. "require": {
  4311. "illuminate/support": ">=8.0",
  4312. "nikic/php-parser": "^5.0",
  4313. "php": ">=8.0"
  4314. },
  4315. "require-dev": {
  4316. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  4317. "pestphp/pest": "^1.21",
  4318. "phpstan/phpstan": "^1.0",
  4319. "spatie/ray": "^1.33"
  4320. },
  4321. "type": "library",
  4322. "autoload": {
  4323. "psr-4": {
  4324. "Shalvah\\Upgrader\\": "src/"
  4325. }
  4326. },
  4327. "notification-url": "https://packagist.org/downloads/",
  4328. "license": [
  4329. "MIT"
  4330. ],
  4331. "authors": [
  4332. {
  4333. "name": "Shalvah",
  4334. "email": "hello@shalvah.me"
  4335. }
  4336. ],
  4337. "description": "Create automatic upgrades for your package.",
  4338. "homepage": "http://github.com/shalvah/upgrader",
  4339. "keywords": [
  4340. "upgrade"
  4341. ],
  4342. "support": {
  4343. "issues": "https://github.com/shalvah/upgrader/issues",
  4344. "source": "https://github.com/shalvah/upgrader/tree/0.6.0"
  4345. },
  4346. "funding": [
  4347. {
  4348. "url": "https://patreon.com/shalvah",
  4349. "type": "patreon"
  4350. }
  4351. ],
  4352. "time": "2024-02-20T11:51:46+00:00"
  4353. },
  4354. {
  4355. "name": "simplesoftwareio/simple-qrcode",
  4356. "version": "4.2.0",
  4357. "source": {
  4358. "type": "git",
  4359. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  4360. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537"
  4361. },
  4362. "dist": {
  4363. "type": "zip",
  4364. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/916db7948ca6772d54bb617259c768c9cdc8d537",
  4365. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537",
  4366. "shasum": ""
  4367. },
  4368. "require": {
  4369. "bacon/bacon-qr-code": "^2.0",
  4370. "ext-gd": "*",
  4371. "php": ">=7.2|^8.0"
  4372. },
  4373. "require-dev": {
  4374. "mockery/mockery": "~1",
  4375. "phpunit/phpunit": "~9"
  4376. },
  4377. "suggest": {
  4378. "ext-imagick": "Allows the generation of PNG QrCodes.",
  4379. "illuminate/support": "Allows for use within Laravel."
  4380. },
  4381. "type": "library",
  4382. "extra": {
  4383. "laravel": {
  4384. "providers": [
  4385. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  4386. ],
  4387. "aliases": {
  4388. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  4389. }
  4390. }
  4391. },
  4392. "autoload": {
  4393. "psr-4": {
  4394. "SimpleSoftwareIO\\QrCode\\": "src"
  4395. }
  4396. },
  4397. "notification-url": "https://packagist.org/downloads/",
  4398. "license": [
  4399. "MIT"
  4400. ],
  4401. "authors": [
  4402. {
  4403. "name": "Simple Software LLC",
  4404. "email": "support@simplesoftware.io"
  4405. }
  4406. ],
  4407. "description": "Simple QrCode is a QR code generator made for Laravel.",
  4408. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  4409. "keywords": [
  4410. "Simple",
  4411. "generator",
  4412. "laravel",
  4413. "qrcode",
  4414. "wrapper"
  4415. ],
  4416. "support": {
  4417. "issues": "https://github.com/SimpleSoftwareIO/simple-qrcode/issues",
  4418. "source": "https://github.com/SimpleSoftwareIO/simple-qrcode/tree/4.2.0"
  4419. },
  4420. "time": "2021-02-08T20:43:55+00:00"
  4421. },
  4422. {
  4423. "name": "slowlyo/laravel-support",
  4424. "version": "v0.0.5",
  4425. "source": {
  4426. "type": "git",
  4427. "url": "https://github.com/slowlyo/laravel-support.git",
  4428. "reference": "8ad7d9d12f3c6e9180593812e1f472f225cd42b2"
  4429. },
  4430. "dist": {
  4431. "type": "zip",
  4432. "url": "https://api.github.com/repos/slowlyo/laravel-support/zipball/8ad7d9d12f3c6e9180593812e1f472f225cd42b2",
  4433. "reference": "8ad7d9d12f3c6e9180593812e1f472f225cd42b2",
  4434. "shasum": ""
  4435. },
  4436. "require": {
  4437. "ext-bcmath": "*",
  4438. "ext-json": "*",
  4439. "laravel/framework": ">=8",
  4440. "php": ">=7.4.0"
  4441. },
  4442. "type": "library",
  4443. "extra": {
  4444. "laravel": {
  4445. "providers": [
  4446. "Slowlyo\\Support\\SupportServiceProvider"
  4447. ]
  4448. }
  4449. },
  4450. "autoload": {
  4451. "files": [
  4452. "./src/functions.php"
  4453. ],
  4454. "psr-4": {
  4455. "Slowlyo\\Support\\": "src/"
  4456. }
  4457. },
  4458. "notification-url": "https://packagist.org/downloads/",
  4459. "license": [
  4460. "MIT"
  4461. ],
  4462. "authors": [
  4463. {
  4464. "name": "Slowlyo",
  4465. "email": "slowlyo_email@qq.com"
  4466. }
  4467. ],
  4468. "description": "php/laravel部分代码封装",
  4469. "support": {
  4470. "issues": "https://github.com/slowlyo/laravel-support/issues",
  4471. "source": "https://github.com/slowlyo/laravel-support/tree/v0.0.5"
  4472. },
  4473. "time": "2024-07-20T16:48:21+00:00"
  4474. },
  4475. {
  4476. "name": "slowlyo/owl-admin",
  4477. "version": "v4.0.5",
  4478. "source": {
  4479. "type": "git",
  4480. "url": "https://github.com/slowlyo/owl-admin.git",
  4481. "reference": "843fbe5be86fbd396c690a41583d247c131398dc"
  4482. },
  4483. "dist": {
  4484. "type": "zip",
  4485. "url": "https://api.github.com/repos/slowlyo/owl-admin/zipball/843fbe5be86fbd396c690a41583d247c131398dc",
  4486. "reference": "843fbe5be86fbd396c690a41583d247c131398dc",
  4487. "shasum": ""
  4488. },
  4489. "require": {
  4490. "ext-gd": "*",
  4491. "ext-zip": "*",
  4492. "illuminate/support": ">=11",
  4493. "php": ">=8.2",
  4494. "slowlyo/laravel-support": "*"
  4495. },
  4496. "type": "library",
  4497. "extra": {
  4498. "laravel": {
  4499. "providers": [
  4500. "Slowlyo\\OwlAdmin\\AdminServiceProvider"
  4501. ],
  4502. "aliases": {
  4503. "OwlAdmin": "Slowlyo\\OwlAdmin\\Facades\\OwlAdmin"
  4504. }
  4505. }
  4506. },
  4507. "autoload": {
  4508. "files": [
  4509. "src/Support/helpers.php"
  4510. ],
  4511. "psr-4": {
  4512. "Slowlyo\\OwlAdmin\\": "src/"
  4513. }
  4514. },
  4515. "notification-url": "https://packagist.org/downloads/",
  4516. "license": [
  4517. "MIT"
  4518. ],
  4519. "authors": [
  4520. {
  4521. "name": "slowlyo",
  4522. "email": "slowlyo_email@qq.com",
  4523. "homepage": "https://github.com/slowlyo"
  4524. }
  4525. ],
  4526. "description": "基于 laravel、amis 开发的后台框架~",
  4527. "homepage": "https://github.com/slowlyo/owl-admin",
  4528. "keywords": [
  4529. "admin",
  4530. "amis",
  4531. "laravel",
  4532. "owl-admin"
  4533. ],
  4534. "support": {
  4535. "email": "slowlyo_email@qq.com",
  4536. "forum": "https://github.com/orgs/owl-admin/discussions",
  4537. "issues": "https://github.com/Slowlyo/owl-admin/issues",
  4538. "source": "https://github.com/slowlyo/owl-admin/tree/v4.0.5",
  4539. "wiki": "https://doc.owladmin.com/"
  4540. },
  4541. "time": "2024-11-05T14:02:41+00:00"
  4542. },
  4543. {
  4544. "name": "slowlyo/owl-dict",
  4545. "version": "v1.3.2",
  4546. "source": {
  4547. "type": "git",
  4548. "url": "https://github.com/owl-admin/dict.git",
  4549. "reference": "8754d9258a11175ec17f30e698b6489abade11ef"
  4550. },
  4551. "dist": {
  4552. "type": "zip",
  4553. "url": "https://api.github.com/repos/owl-admin/dict/zipball/8754d9258a11175ec17f30e698b6489abade11ef",
  4554. "reference": "8754d9258a11175ec17f30e698b6489abade11ef",
  4555. "shasum": ""
  4556. },
  4557. "require": {
  4558. "php": ">=8.0",
  4559. "slowlyo/owl-admin": "*"
  4560. },
  4561. "type": "library",
  4562. "extra": {
  4563. "owl-admin": "Slowlyo\\OwlDict\\OwlDictServiceProvider",
  4564. "laravel": {
  4565. "providers": [
  4566. "Slowlyo\\OwlDict\\OwlDictServiceProvider"
  4567. ]
  4568. }
  4569. },
  4570. "autoload": {
  4571. "files": [
  4572. "src/helpers.php"
  4573. ],
  4574. "psr-4": {
  4575. "Slowlyo\\OwlDict\\": "src/"
  4576. }
  4577. },
  4578. "notification-url": "https://packagist.org/downloads/",
  4579. "license": [
  4580. "MIT"
  4581. ],
  4582. "authors": [
  4583. {
  4584. "name": "slowlyo",
  4585. "email": "slowlyo_email@qq.com"
  4586. }
  4587. ],
  4588. "description": "OwlAdmin 数据字典扩展",
  4589. "homepage": "https://gitee.com/slowlyo/owl-dict",
  4590. "keywords": [
  4591. "Dict",
  4592. "extension",
  4593. "owl-admin"
  4594. ],
  4595. "support": {
  4596. "issues": "https://github.com/owl-admin/dict/issues",
  4597. "source": "https://github.com/owl-admin/dict/tree/v1.3.2"
  4598. },
  4599. "time": "2024-07-08T03:05:14+00:00"
  4600. },
  4601. {
  4602. "name": "slowlyo/owl-icon-cache",
  4603. "version": "v0.1.0",
  4604. "source": {
  4605. "type": "git",
  4606. "url": "https://github.com/slowlyo/owl-icon-cache.git",
  4607. "reference": "696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28"
  4608. },
  4609. "dist": {
  4610. "type": "zip",
  4611. "url": "https://api.github.com/repos/slowlyo/owl-icon-cache/zipball/696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28",
  4612. "reference": "696a2b48ce2c5dbee0dad1f0a76622ad9bac8a28",
  4613. "shasum": ""
  4614. },
  4615. "require": {
  4616. "iconify/json": "*",
  4617. "php": ">=8.0",
  4618. "slowlyo/owl-admin": "*"
  4619. },
  4620. "type": "library",
  4621. "extra": {
  4622. "owl-admin": "Slowlyo\\OwlIconCache\\OwlIconCacheServiceProvider",
  4623. "laravel": {
  4624. "providers": [
  4625. "Slowlyo\\OwlIconCache\\OwlIconCacheServiceProvider"
  4626. ]
  4627. }
  4628. },
  4629. "autoload": {
  4630. "psr-4": {
  4631. "Slowlyo\\OwlIconCache\\": "src/"
  4632. }
  4633. },
  4634. "notification-url": "https://packagist.org/downloads/",
  4635. "license": [
  4636. "MIT"
  4637. ],
  4638. "authors": [
  4639. {
  4640. "name": "slowlyo",
  4641. "email": "slowlyo_email@qq.com"
  4642. }
  4643. ],
  4644. "description": "让 iconify 图标可以离线使用",
  4645. "homepage": "https://github.com/slowlyo/owl-icon-cache",
  4646. "keywords": [
  4647. "extension",
  4648. "icon",
  4649. "owl-admin"
  4650. ],
  4651. "support": {
  4652. "issues": "https://github.com/slowlyo/owl-icon-cache/issues",
  4653. "source": "https://github.com/slowlyo/owl-icon-cache/tree/v0.1.0"
  4654. },
  4655. "time": "2024-05-01T08:30:19+00:00"
  4656. },
  4657. {
  4658. "name": "slowlyo/owl-log-viewer",
  4659. "version": "1.0.0",
  4660. "source": {
  4661. "type": "git",
  4662. "url": "https://github.com/owl-admin/log-viewer.git",
  4663. "reference": "d249c011dd7febe2f7be5bf800b42ed325b02d40"
  4664. },
  4665. "dist": {
  4666. "type": "zip",
  4667. "url": "https://api.github.com/repos/owl-admin/log-viewer/zipball/d249c011dd7febe2f7be5bf800b42ed325b02d40",
  4668. "reference": "d249c011dd7febe2f7be5bf800b42ed325b02d40",
  4669. "shasum": ""
  4670. },
  4671. "require": {
  4672. "php": ">=8.0",
  4673. "slowlyo/owl-admin": "*"
  4674. },
  4675. "type": "library",
  4676. "extra": {
  4677. "owl-admin": "Slowlyo\\OwlLogViewer\\OwlLogViewerServiceProvider",
  4678. "laravel": {
  4679. "providers": [
  4680. "Slowlyo\\OwlLogViewer\\OwlLogViewerServiceProvider"
  4681. ]
  4682. }
  4683. },
  4684. "autoload": {
  4685. "psr-4": {
  4686. "Slowlyo\\OwlLogViewer\\": "src/"
  4687. }
  4688. },
  4689. "notification-url": "https://packagist.org/downloads/",
  4690. "license": [
  4691. "MIT"
  4692. ],
  4693. "authors": [
  4694. {
  4695. "name": "slowlyo",
  4696. "email": "slowlyo_email@qq.com"
  4697. }
  4698. ],
  4699. "description": "更方便的查看laravel日志",
  4700. "homepage": "https://github.com/slowlyo/owl-log-viewer",
  4701. "keywords": [
  4702. "extension",
  4703. "owl-admin"
  4704. ],
  4705. "support": {
  4706. "issues": "https://github.com/owl-admin/log-viewer/issues",
  4707. "source": "https://github.com/owl-admin/log-viewer/tree/v1.0.0"
  4708. },
  4709. "time": "2024-03-10T13:57:59+00:00"
  4710. },
  4711. {
  4712. "name": "slowlyo/owl-module-notice",
  4713. "version": "v1.1.3",
  4714. "source": {
  4715. "type": "git",
  4716. "url": "https://gitee.com/slowlyo/owl-module-notice",
  4717. "reference": "8410e77a08cee435055f8d8cf6f57cfac5b86e3f"
  4718. },
  4719. "require": {
  4720. "php": ">=8.0",
  4721. "slowlyo/owl-admin": "*"
  4722. },
  4723. "type": "library",
  4724. "extra": {
  4725. "owl-admin": "Slowlyo\\Notice\\NoticeServiceProvider",
  4726. "laravel": {
  4727. "providers": [
  4728. "Slowlyo\\Notice\\NoticeServiceProvider"
  4729. ]
  4730. }
  4731. },
  4732. "autoload": {
  4733. "psr-4": {
  4734. "Slowlyo\\Notice\\": "src/"
  4735. }
  4736. },
  4737. "notification-url": "https://packagist.org/downloads/",
  4738. "license": [
  4739. "MIT"
  4740. ],
  4741. "authors": [
  4742. {
  4743. "name": "slowlyo",
  4744. "email": "slowlyo_email@qq.com"
  4745. }
  4746. ],
  4747. "description": "OwlAdmin 扩展: 后台功能-通知公告管理",
  4748. "homepage": "https://gitee.com/slowlyo/notice",
  4749. "keywords": [
  4750. "extension",
  4751. "notice",
  4752. "owl-admin"
  4753. ],
  4754. "time": "2023-04-10T06:25:51+00:00"
  4755. },
  4756. {
  4757. "name": "slowlyo/owl-operation-log",
  4758. "version": "v0.2.3",
  4759. "source": {
  4760. "type": "git",
  4761. "url": "https://github.com/slowlyo/owl-operation-log.git",
  4762. "reference": "fe03f85e940e069ebc024f8c257da2c44939c78d"
  4763. },
  4764. "dist": {
  4765. "type": "zip",
  4766. "url": "https://api.github.com/repos/slowlyo/owl-operation-log/zipball/fe03f85e940e069ebc024f8c257da2c44939c78d",
  4767. "reference": "fe03f85e940e069ebc024f8c257da2c44939c78d",
  4768. "shasum": ""
  4769. },
  4770. "require": {
  4771. "php": ">=8.0",
  4772. "slowlyo/owl-admin": "*"
  4773. },
  4774. "type": "library",
  4775. "extra": {
  4776. "owl-admin": "Slowlyo\\OwlOperationLog\\OwlOperationLogServiceProvider",
  4777. "laravel": {
  4778. "providers": [
  4779. "Slowlyo\\OwlOperationLog\\OwlOperationLogServiceProvider"
  4780. ]
  4781. }
  4782. },
  4783. "autoload": {
  4784. "psr-4": {
  4785. "Slowlyo\\OwlOperationLog\\": "src/"
  4786. }
  4787. },
  4788. "notification-url": "https://packagist.org/downloads/",
  4789. "license": [
  4790. "MIT"
  4791. ],
  4792. "authors": [
  4793. {
  4794. "name": "slowlyo",
  4795. "email": "slowlyo_email@qq.com"
  4796. }
  4797. ],
  4798. "description": "OwlAdmin 扩展包,用于记录用户操作日志",
  4799. "homepage": "https://github.com/slowlyo/owl-operation-log",
  4800. "keywords": [
  4801. "extension",
  4802. "owl-admin"
  4803. ],
  4804. "support": {
  4805. "issues": "https://github.com/slowlyo/owl-operation-log/issues",
  4806. "source": "https://github.com/slowlyo/owl-operation-log/tree/v0.2.3"
  4807. },
  4808. "time": "2024-03-28T06:49:24+00:00"
  4809. },
  4810. {
  4811. "name": "slowlyo/owl-system-backup",
  4812. "version": "v0.3.1",
  4813. "source": {
  4814. "type": "git",
  4815. "url": "https://github.com/owl-admin/system-backup.git",
  4816. "reference": "3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3"
  4817. },
  4818. "dist": {
  4819. "type": "zip",
  4820. "url": "https://api.github.com/repos/owl-admin/system-backup/zipball/3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3",
  4821. "reference": "3ee64fc9ac0411f400f9d25b6e2c5bc409b5f9f3",
  4822. "shasum": ""
  4823. },
  4824. "require": {
  4825. "php": ">=8.0",
  4826. "slowlyo/owl-admin": "*"
  4827. },
  4828. "type": "library",
  4829. "extra": {
  4830. "owl-admin": "Slowlyo\\OwlSystemBackup\\OwlSystemBackupServiceProvider",
  4831. "laravel": {
  4832. "providers": [
  4833. "Slowlyo\\OwlSystemBackup\\OwlSystemBackupServiceProvider"
  4834. ]
  4835. }
  4836. },
  4837. "autoload": {
  4838. "psr-4": {
  4839. "Slowlyo\\OwlSystemBackup\\": "src/"
  4840. }
  4841. },
  4842. "notification-url": "https://packagist.org/downloads/",
  4843. "license": [
  4844. "MIT"
  4845. ],
  4846. "authors": [
  4847. {
  4848. "name": "slowlyo",
  4849. "email": "slowlyo_email@qq.com"
  4850. }
  4851. ],
  4852. "description": "Owl Admin 系统备份扩展",
  4853. "homepage": "https://github.com/slowlyo/owl-system-backup",
  4854. "keywords": [
  4855. "extension",
  4856. "owl-admin"
  4857. ],
  4858. "support": {
  4859. "issues": "https://github.com/owl-admin/system-backup/issues",
  4860. "source": "https://github.com/owl-admin/system-backup/tree/v0.3.1"
  4861. },
  4862. "time": "2024-05-22T02:58:47+00:00"
  4863. },
  4864. {
  4865. "name": "spatie/data-transfer-object",
  4866. "version": "3.9.1",
  4867. "source": {
  4868. "type": "git",
  4869. "url": "https://github.com/spatie/data-transfer-object.git",
  4870. "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8"
  4871. },
  4872. "dist": {
  4873. "type": "zip",
  4874. "url": "https://api.github.com/repos/spatie/data-transfer-object/zipball/1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8",
  4875. "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8",
  4876. "shasum": ""
  4877. },
  4878. "require": {
  4879. "php": "^8.0"
  4880. },
  4881. "require-dev": {
  4882. "illuminate/collections": "^8.36",
  4883. "jetbrains/phpstorm-attributes": "^1.0",
  4884. "larapack/dd": "^1.1",
  4885. "phpunit/phpunit": "^9.5.5"
  4886. },
  4887. "type": "library",
  4888. "autoload": {
  4889. "psr-4": {
  4890. "Spatie\\DataTransferObject\\": "src"
  4891. }
  4892. },
  4893. "notification-url": "https://packagist.org/downloads/",
  4894. "license": [
  4895. "MIT"
  4896. ],
  4897. "authors": [
  4898. {
  4899. "name": "Brent Roose",
  4900. "email": "brent@spatie.be",
  4901. "homepage": "https://spatie.be",
  4902. "role": "Developer"
  4903. }
  4904. ],
  4905. "description": "Data transfer objects with batteries included",
  4906. "homepage": "https://github.com/spatie/data-transfer-object",
  4907. "keywords": [
  4908. "data-transfer-object",
  4909. "spatie"
  4910. ],
  4911. "support": {
  4912. "issues": "https://github.com/spatie/data-transfer-object/issues",
  4913. "source": "https://github.com/spatie/data-transfer-object/tree/3.9.1"
  4914. },
  4915. "funding": [
  4916. {
  4917. "url": "https://spatie.be/open-source/support-us",
  4918. "type": "custom"
  4919. },
  4920. {
  4921. "url": "https://github.com/spatie",
  4922. "type": "github"
  4923. }
  4924. ],
  4925. "abandoned": "spatie/laravel-data",
  4926. "time": "2022-09-16T13:34:38+00:00"
  4927. },
  4928. {
  4929. "name": "symfony/cache",
  4930. "version": "v7.1.7",
  4931. "source": {
  4932. "type": "git",
  4933. "url": "https://github.com/symfony/cache.git",
  4934. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928"
  4935. },
  4936. "dist": {
  4937. "type": "zip",
  4938. "url": "https://api.github.com/repos/symfony/cache/zipball/23b61c9592ee72233c31625f0ae805dd1571e928",
  4939. "reference": "23b61c9592ee72233c31625f0ae805dd1571e928",
  4940. "shasum": ""
  4941. },
  4942. "require": {
  4943. "php": ">=8.2",
  4944. "psr/cache": "^2.0|^3.0",
  4945. "psr/log": "^1.1|^2|^3",
  4946. "symfony/cache-contracts": "^2.5|^3",
  4947. "symfony/deprecation-contracts": "^2.5|^3.0",
  4948. "symfony/service-contracts": "^2.5|^3",
  4949. "symfony/var-exporter": "^6.4|^7.0"
  4950. },
  4951. "conflict": {
  4952. "doctrine/dbal": "<3.6",
  4953. "symfony/dependency-injection": "<6.4",
  4954. "symfony/http-kernel": "<6.4",
  4955. "symfony/var-dumper": "<6.4"
  4956. },
  4957. "provide": {
  4958. "psr/cache-implementation": "2.0|3.0",
  4959. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  4960. "symfony/cache-implementation": "1.1|2.0|3.0"
  4961. },
  4962. "require-dev": {
  4963. "cache/integration-tests": "dev-master",
  4964. "doctrine/dbal": "^3.6|^4",
  4965. "predis/predis": "^1.1|^2.0",
  4966. "psr/simple-cache": "^1.0|^2.0|^3.0",
  4967. "symfony/config": "^6.4|^7.0",
  4968. "symfony/dependency-injection": "^6.4|^7.0",
  4969. "symfony/filesystem": "^6.4|^7.0",
  4970. "symfony/http-kernel": "^6.4|^7.0",
  4971. "symfony/messenger": "^6.4|^7.0",
  4972. "symfony/var-dumper": "^6.4|^7.0"
  4973. },
  4974. "type": "library",
  4975. "autoload": {
  4976. "psr-4": {
  4977. "Symfony\\Component\\Cache\\": ""
  4978. },
  4979. "classmap": [
  4980. "Traits/ValueWrapper.php"
  4981. ],
  4982. "exclude-from-classmap": [
  4983. "/Tests/"
  4984. ]
  4985. },
  4986. "notification-url": "https://packagist.org/downloads/",
  4987. "license": [
  4988. "MIT"
  4989. ],
  4990. "authors": [
  4991. {
  4992. "name": "Nicolas Grekas",
  4993. "email": "p@tchwork.com"
  4994. },
  4995. {
  4996. "name": "Symfony Community",
  4997. "homepage": "https://symfony.com/contributors"
  4998. }
  4999. ],
  5000. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5001. "homepage": "https://symfony.com",
  5002. "keywords": [
  5003. "caching",
  5004. "psr6"
  5005. ],
  5006. "support": {
  5007. "source": "https://github.com/symfony/cache/tree/v7.1.7"
  5008. },
  5009. "funding": [
  5010. {
  5011. "url": "https://symfony.com/sponsor",
  5012. "type": "custom"
  5013. },
  5014. {
  5015. "url": "https://github.com/fabpot",
  5016. "type": "github"
  5017. },
  5018. {
  5019. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5020. "type": "tidelift"
  5021. }
  5022. ],
  5023. "time": "2024-11-05T15:34:55+00:00"
  5024. },
  5025. {
  5026. "name": "symfony/cache-contracts",
  5027. "version": "v3.5.0",
  5028. "source": {
  5029. "type": "git",
  5030. "url": "https://github.com/symfony/cache-contracts.git",
  5031. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  5032. },
  5033. "dist": {
  5034. "type": "zip",
  5035. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  5036. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  5037. "shasum": ""
  5038. },
  5039. "require": {
  5040. "php": ">=8.1",
  5041. "psr/cache": "^3.0"
  5042. },
  5043. "type": "library",
  5044. "extra": {
  5045. "branch-alias": {
  5046. "dev-main": "3.5-dev"
  5047. },
  5048. "thanks": {
  5049. "name": "symfony/contracts",
  5050. "url": "https://github.com/symfony/contracts"
  5051. }
  5052. },
  5053. "autoload": {
  5054. "psr-4": {
  5055. "Symfony\\Contracts\\Cache\\": ""
  5056. }
  5057. },
  5058. "notification-url": "https://packagist.org/downloads/",
  5059. "license": [
  5060. "MIT"
  5061. ],
  5062. "authors": [
  5063. {
  5064. "name": "Nicolas Grekas",
  5065. "email": "p@tchwork.com"
  5066. },
  5067. {
  5068. "name": "Symfony Community",
  5069. "homepage": "https://symfony.com/contributors"
  5070. }
  5071. ],
  5072. "description": "Generic abstractions related to caching",
  5073. "homepage": "https://symfony.com",
  5074. "keywords": [
  5075. "abstractions",
  5076. "contracts",
  5077. "decoupling",
  5078. "interfaces",
  5079. "interoperability",
  5080. "standards"
  5081. ],
  5082. "support": {
  5083. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  5084. },
  5085. "funding": [
  5086. {
  5087. "url": "https://symfony.com/sponsor",
  5088. "type": "custom"
  5089. },
  5090. {
  5091. "url": "https://github.com/fabpot",
  5092. "type": "github"
  5093. },
  5094. {
  5095. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5096. "type": "tidelift"
  5097. }
  5098. ],
  5099. "time": "2024-04-18T09:32:20+00:00"
  5100. },
  5101. {
  5102. "name": "symfony/clock",
  5103. "version": "v7.1.6",
  5104. "source": {
  5105. "type": "git",
  5106. "url": "https://github.com/symfony/clock.git",
  5107. "reference": "97bebc53548684c17ed696bc8af016880f0f098d"
  5108. },
  5109. "dist": {
  5110. "type": "zip",
  5111. "url": "https://api.github.com/repos/symfony/clock/zipball/97bebc53548684c17ed696bc8af016880f0f098d",
  5112. "reference": "97bebc53548684c17ed696bc8af016880f0f098d",
  5113. "shasum": ""
  5114. },
  5115. "require": {
  5116. "php": ">=8.2",
  5117. "psr/clock": "^1.0",
  5118. "symfony/polyfill-php83": "^1.28"
  5119. },
  5120. "provide": {
  5121. "psr/clock-implementation": "1.0"
  5122. },
  5123. "type": "library",
  5124. "autoload": {
  5125. "files": [
  5126. "Resources/now.php"
  5127. ],
  5128. "psr-4": {
  5129. "Symfony\\Component\\Clock\\": ""
  5130. },
  5131. "exclude-from-classmap": [
  5132. "/Tests/"
  5133. ]
  5134. },
  5135. "notification-url": "https://packagist.org/downloads/",
  5136. "license": [
  5137. "MIT"
  5138. ],
  5139. "authors": [
  5140. {
  5141. "name": "Nicolas Grekas",
  5142. "email": "p@tchwork.com"
  5143. },
  5144. {
  5145. "name": "Symfony Community",
  5146. "homepage": "https://symfony.com/contributors"
  5147. }
  5148. ],
  5149. "description": "Decouples applications from the system clock",
  5150. "homepage": "https://symfony.com",
  5151. "keywords": [
  5152. "clock",
  5153. "psr20",
  5154. "time"
  5155. ],
  5156. "support": {
  5157. "source": "https://github.com/symfony/clock/tree/v7.1.6"
  5158. },
  5159. "funding": [
  5160. {
  5161. "url": "https://symfony.com/sponsor",
  5162. "type": "custom"
  5163. },
  5164. {
  5165. "url": "https://github.com/fabpot",
  5166. "type": "github"
  5167. },
  5168. {
  5169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5170. "type": "tidelift"
  5171. }
  5172. ],
  5173. "time": "2024-09-25T14:20:29+00:00"
  5174. },
  5175. {
  5176. "name": "symfony/console",
  5177. "version": "v7.1.8",
  5178. "source": {
  5179. "type": "git",
  5180. "url": "https://github.com/symfony/console.git",
  5181. "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5"
  5182. },
  5183. "dist": {
  5184. "type": "zip",
  5185. "url": "https://api.github.com/repos/symfony/console/zipball/ff04e5b5ba043d2badfb308197b9e6b42883fcd5",
  5186. "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5",
  5187. "shasum": ""
  5188. },
  5189. "require": {
  5190. "php": ">=8.2",
  5191. "symfony/polyfill-mbstring": "~1.0",
  5192. "symfony/service-contracts": "^2.5|^3",
  5193. "symfony/string": "^6.4|^7.0"
  5194. },
  5195. "conflict": {
  5196. "symfony/dependency-injection": "<6.4",
  5197. "symfony/dotenv": "<6.4",
  5198. "symfony/event-dispatcher": "<6.4",
  5199. "symfony/lock": "<6.4",
  5200. "symfony/process": "<6.4"
  5201. },
  5202. "provide": {
  5203. "psr/log-implementation": "1.0|2.0|3.0"
  5204. },
  5205. "require-dev": {
  5206. "psr/log": "^1|^2|^3",
  5207. "symfony/config": "^6.4|^7.0",
  5208. "symfony/dependency-injection": "^6.4|^7.0",
  5209. "symfony/event-dispatcher": "^6.4|^7.0",
  5210. "symfony/http-foundation": "^6.4|^7.0",
  5211. "symfony/http-kernel": "^6.4|^7.0",
  5212. "symfony/lock": "^6.4|^7.0",
  5213. "symfony/messenger": "^6.4|^7.0",
  5214. "symfony/process": "^6.4|^7.0",
  5215. "symfony/stopwatch": "^6.4|^7.0",
  5216. "symfony/var-dumper": "^6.4|^7.0"
  5217. },
  5218. "type": "library",
  5219. "autoload": {
  5220. "psr-4": {
  5221. "Symfony\\Component\\Console\\": ""
  5222. },
  5223. "exclude-from-classmap": [
  5224. "/Tests/"
  5225. ]
  5226. },
  5227. "notification-url": "https://packagist.org/downloads/",
  5228. "license": [
  5229. "MIT"
  5230. ],
  5231. "authors": [
  5232. {
  5233. "name": "Fabien Potencier",
  5234. "email": "fabien@symfony.com"
  5235. },
  5236. {
  5237. "name": "Symfony Community",
  5238. "homepage": "https://symfony.com/contributors"
  5239. }
  5240. ],
  5241. "description": "Eases the creation of beautiful and testable command line interfaces",
  5242. "homepage": "https://symfony.com",
  5243. "keywords": [
  5244. "cli",
  5245. "command-line",
  5246. "console",
  5247. "terminal"
  5248. ],
  5249. "support": {
  5250. "source": "https://github.com/symfony/console/tree/v7.1.8"
  5251. },
  5252. "funding": [
  5253. {
  5254. "url": "https://symfony.com/sponsor",
  5255. "type": "custom"
  5256. },
  5257. {
  5258. "url": "https://github.com/fabpot",
  5259. "type": "github"
  5260. },
  5261. {
  5262. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5263. "type": "tidelift"
  5264. }
  5265. ],
  5266. "time": "2024-11-06T14:23:19+00:00"
  5267. },
  5268. {
  5269. "name": "symfony/css-selector",
  5270. "version": "v7.1.6",
  5271. "source": {
  5272. "type": "git",
  5273. "url": "https://github.com/symfony/css-selector.git",
  5274. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66"
  5275. },
  5276. "dist": {
  5277. "type": "zip",
  5278. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  5279. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  5280. "shasum": ""
  5281. },
  5282. "require": {
  5283. "php": ">=8.2"
  5284. },
  5285. "type": "library",
  5286. "autoload": {
  5287. "psr-4": {
  5288. "Symfony\\Component\\CssSelector\\": ""
  5289. },
  5290. "exclude-from-classmap": [
  5291. "/Tests/"
  5292. ]
  5293. },
  5294. "notification-url": "https://packagist.org/downloads/",
  5295. "license": [
  5296. "MIT"
  5297. ],
  5298. "authors": [
  5299. {
  5300. "name": "Fabien Potencier",
  5301. "email": "fabien@symfony.com"
  5302. },
  5303. {
  5304. "name": "Jean-François Simon",
  5305. "email": "jeanfrancois.simon@sensiolabs.com"
  5306. },
  5307. {
  5308. "name": "Symfony Community",
  5309. "homepage": "https://symfony.com/contributors"
  5310. }
  5311. ],
  5312. "description": "Converts CSS selectors to XPath expressions",
  5313. "homepage": "https://symfony.com",
  5314. "support": {
  5315. "source": "https://github.com/symfony/css-selector/tree/v7.1.6"
  5316. },
  5317. "funding": [
  5318. {
  5319. "url": "https://symfony.com/sponsor",
  5320. "type": "custom"
  5321. },
  5322. {
  5323. "url": "https://github.com/fabpot",
  5324. "type": "github"
  5325. },
  5326. {
  5327. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5328. "type": "tidelift"
  5329. }
  5330. ],
  5331. "time": "2024-09-25T14:20:29+00:00"
  5332. },
  5333. {
  5334. "name": "symfony/deprecation-contracts",
  5335. "version": "v3.5.0",
  5336. "source": {
  5337. "type": "git",
  5338. "url": "https://github.com/symfony/deprecation-contracts.git",
  5339. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5340. },
  5341. "dist": {
  5342. "type": "zip",
  5343. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5344. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5345. "shasum": ""
  5346. },
  5347. "require": {
  5348. "php": ">=8.1"
  5349. },
  5350. "type": "library",
  5351. "extra": {
  5352. "branch-alias": {
  5353. "dev-main": "3.5-dev"
  5354. },
  5355. "thanks": {
  5356. "name": "symfony/contracts",
  5357. "url": "https://github.com/symfony/contracts"
  5358. }
  5359. },
  5360. "autoload": {
  5361. "files": [
  5362. "function.php"
  5363. ]
  5364. },
  5365. "notification-url": "https://packagist.org/downloads/",
  5366. "license": [
  5367. "MIT"
  5368. ],
  5369. "authors": [
  5370. {
  5371. "name": "Nicolas Grekas",
  5372. "email": "p@tchwork.com"
  5373. },
  5374. {
  5375. "name": "Symfony Community",
  5376. "homepage": "https://symfony.com/contributors"
  5377. }
  5378. ],
  5379. "description": "A generic function and convention to trigger deprecation notices",
  5380. "homepage": "https://symfony.com",
  5381. "support": {
  5382. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  5383. },
  5384. "funding": [
  5385. {
  5386. "url": "https://symfony.com/sponsor",
  5387. "type": "custom"
  5388. },
  5389. {
  5390. "url": "https://github.com/fabpot",
  5391. "type": "github"
  5392. },
  5393. {
  5394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5395. "type": "tidelift"
  5396. }
  5397. ],
  5398. "time": "2024-04-18T09:32:20+00:00"
  5399. },
  5400. {
  5401. "name": "symfony/error-handler",
  5402. "version": "v7.1.7",
  5403. "source": {
  5404. "type": "git",
  5405. "url": "https://github.com/symfony/error-handler.git",
  5406. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342"
  5407. },
  5408. "dist": {
  5409. "type": "zip",
  5410. "url": "https://api.github.com/repos/symfony/error-handler/zipball/010e44661f4c6babaf8c4862fe68c24a53903342",
  5411. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342",
  5412. "shasum": ""
  5413. },
  5414. "require": {
  5415. "php": ">=8.2",
  5416. "psr/log": "^1|^2|^3",
  5417. "symfony/var-dumper": "^6.4|^7.0"
  5418. },
  5419. "conflict": {
  5420. "symfony/deprecation-contracts": "<2.5",
  5421. "symfony/http-kernel": "<6.4"
  5422. },
  5423. "require-dev": {
  5424. "symfony/deprecation-contracts": "^2.5|^3",
  5425. "symfony/http-kernel": "^6.4|^7.0",
  5426. "symfony/serializer": "^6.4|^7.0"
  5427. },
  5428. "bin": [
  5429. "Resources/bin/patch-type-declarations"
  5430. ],
  5431. "type": "library",
  5432. "autoload": {
  5433. "psr-4": {
  5434. "Symfony\\Component\\ErrorHandler\\": ""
  5435. },
  5436. "exclude-from-classmap": [
  5437. "/Tests/"
  5438. ]
  5439. },
  5440. "notification-url": "https://packagist.org/downloads/",
  5441. "license": [
  5442. "MIT"
  5443. ],
  5444. "authors": [
  5445. {
  5446. "name": "Fabien Potencier",
  5447. "email": "fabien@symfony.com"
  5448. },
  5449. {
  5450. "name": "Symfony Community",
  5451. "homepage": "https://symfony.com/contributors"
  5452. }
  5453. ],
  5454. "description": "Provides tools to manage errors and ease debugging PHP code",
  5455. "homepage": "https://symfony.com",
  5456. "support": {
  5457. "source": "https://github.com/symfony/error-handler/tree/v7.1.7"
  5458. },
  5459. "funding": [
  5460. {
  5461. "url": "https://symfony.com/sponsor",
  5462. "type": "custom"
  5463. },
  5464. {
  5465. "url": "https://github.com/fabpot",
  5466. "type": "github"
  5467. },
  5468. {
  5469. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5470. "type": "tidelift"
  5471. }
  5472. ],
  5473. "time": "2024-11-05T15:34:55+00:00"
  5474. },
  5475. {
  5476. "name": "symfony/event-dispatcher",
  5477. "version": "v7.1.6",
  5478. "source": {
  5479. "type": "git",
  5480. "url": "https://github.com/symfony/event-dispatcher.git",
  5481. "reference": "87254c78dd50721cfd015b62277a8281c5589702"
  5482. },
  5483. "dist": {
  5484. "type": "zip",
  5485. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87254c78dd50721cfd015b62277a8281c5589702",
  5486. "reference": "87254c78dd50721cfd015b62277a8281c5589702",
  5487. "shasum": ""
  5488. },
  5489. "require": {
  5490. "php": ">=8.2",
  5491. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5492. },
  5493. "conflict": {
  5494. "symfony/dependency-injection": "<6.4",
  5495. "symfony/service-contracts": "<2.5"
  5496. },
  5497. "provide": {
  5498. "psr/event-dispatcher-implementation": "1.0",
  5499. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5500. },
  5501. "require-dev": {
  5502. "psr/log": "^1|^2|^3",
  5503. "symfony/config": "^6.4|^7.0",
  5504. "symfony/dependency-injection": "^6.4|^7.0",
  5505. "symfony/error-handler": "^6.4|^7.0",
  5506. "symfony/expression-language": "^6.4|^7.0",
  5507. "symfony/http-foundation": "^6.4|^7.0",
  5508. "symfony/service-contracts": "^2.5|^3",
  5509. "symfony/stopwatch": "^6.4|^7.0"
  5510. },
  5511. "type": "library",
  5512. "autoload": {
  5513. "psr-4": {
  5514. "Symfony\\Component\\EventDispatcher\\": ""
  5515. },
  5516. "exclude-from-classmap": [
  5517. "/Tests/"
  5518. ]
  5519. },
  5520. "notification-url": "https://packagist.org/downloads/",
  5521. "license": [
  5522. "MIT"
  5523. ],
  5524. "authors": [
  5525. {
  5526. "name": "Fabien Potencier",
  5527. "email": "fabien@symfony.com"
  5528. },
  5529. {
  5530. "name": "Symfony Community",
  5531. "homepage": "https://symfony.com/contributors"
  5532. }
  5533. ],
  5534. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5535. "homepage": "https://symfony.com",
  5536. "support": {
  5537. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.6"
  5538. },
  5539. "funding": [
  5540. {
  5541. "url": "https://symfony.com/sponsor",
  5542. "type": "custom"
  5543. },
  5544. {
  5545. "url": "https://github.com/fabpot",
  5546. "type": "github"
  5547. },
  5548. {
  5549. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5550. "type": "tidelift"
  5551. }
  5552. ],
  5553. "time": "2024-09-25T14:20:29+00:00"
  5554. },
  5555. {
  5556. "name": "symfony/event-dispatcher-contracts",
  5557. "version": "v3.5.0",
  5558. "source": {
  5559. "type": "git",
  5560. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5561. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  5562. },
  5563. "dist": {
  5564. "type": "zip",
  5565. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  5566. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  5567. "shasum": ""
  5568. },
  5569. "require": {
  5570. "php": ">=8.1",
  5571. "psr/event-dispatcher": "^1"
  5572. },
  5573. "type": "library",
  5574. "extra": {
  5575. "branch-alias": {
  5576. "dev-main": "3.5-dev"
  5577. },
  5578. "thanks": {
  5579. "name": "symfony/contracts",
  5580. "url": "https://github.com/symfony/contracts"
  5581. }
  5582. },
  5583. "autoload": {
  5584. "psr-4": {
  5585. "Symfony\\Contracts\\EventDispatcher\\": ""
  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": "Generic abstractions related to dispatching event",
  5603. "homepage": "https://symfony.com",
  5604. "keywords": [
  5605. "abstractions",
  5606. "contracts",
  5607. "decoupling",
  5608. "interfaces",
  5609. "interoperability",
  5610. "standards"
  5611. ],
  5612. "support": {
  5613. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  5614. },
  5615. "funding": [
  5616. {
  5617. "url": "https://symfony.com/sponsor",
  5618. "type": "custom"
  5619. },
  5620. {
  5621. "url": "https://github.com/fabpot",
  5622. "type": "github"
  5623. },
  5624. {
  5625. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5626. "type": "tidelift"
  5627. }
  5628. ],
  5629. "time": "2024-04-18T09:32:20+00:00"
  5630. },
  5631. {
  5632. "name": "symfony/finder",
  5633. "version": "v7.1.6",
  5634. "source": {
  5635. "type": "git",
  5636. "url": "https://github.com/symfony/finder.git",
  5637. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8"
  5638. },
  5639. "dist": {
  5640. "type": "zip",
  5641. "url": "https://api.github.com/repos/symfony/finder/zipball/2cb89664897be33f78c65d3d2845954c8d7a43b8",
  5642. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8",
  5643. "shasum": ""
  5644. },
  5645. "require": {
  5646. "php": ">=8.2"
  5647. },
  5648. "require-dev": {
  5649. "symfony/filesystem": "^6.4|^7.0"
  5650. },
  5651. "type": "library",
  5652. "autoload": {
  5653. "psr-4": {
  5654. "Symfony\\Component\\Finder\\": ""
  5655. },
  5656. "exclude-from-classmap": [
  5657. "/Tests/"
  5658. ]
  5659. },
  5660. "notification-url": "https://packagist.org/downloads/",
  5661. "license": [
  5662. "MIT"
  5663. ],
  5664. "authors": [
  5665. {
  5666. "name": "Fabien Potencier",
  5667. "email": "fabien@symfony.com"
  5668. },
  5669. {
  5670. "name": "Symfony Community",
  5671. "homepage": "https://symfony.com/contributors"
  5672. }
  5673. ],
  5674. "description": "Finds files and directories via an intuitive fluent interface",
  5675. "homepage": "https://symfony.com",
  5676. "support": {
  5677. "source": "https://github.com/symfony/finder/tree/v7.1.6"
  5678. },
  5679. "funding": [
  5680. {
  5681. "url": "https://symfony.com/sponsor",
  5682. "type": "custom"
  5683. },
  5684. {
  5685. "url": "https://github.com/fabpot",
  5686. "type": "github"
  5687. },
  5688. {
  5689. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5690. "type": "tidelift"
  5691. }
  5692. ],
  5693. "time": "2024-10-01T08:31:23+00:00"
  5694. },
  5695. {
  5696. "name": "symfony/http-client",
  5697. "version": "v7.1.8",
  5698. "source": {
  5699. "type": "git",
  5700. "url": "https://github.com/symfony/http-client.git",
  5701. "reference": "c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a"
  5702. },
  5703. "dist": {
  5704. "type": "zip",
  5705. "url": "https://api.github.com/repos/symfony/http-client/zipball/c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a",
  5706. "reference": "c30d91a1deac0dc3ed5e604683cf2e1dfc635b8a",
  5707. "shasum": ""
  5708. },
  5709. "require": {
  5710. "php": ">=8.2",
  5711. "psr/log": "^1|^2|^3",
  5712. "symfony/deprecation-contracts": "^2.5|^3",
  5713. "symfony/http-client-contracts": "^3.4.1",
  5714. "symfony/service-contracts": "^2.5|^3"
  5715. },
  5716. "conflict": {
  5717. "php-http/discovery": "<1.15",
  5718. "symfony/http-foundation": "<6.4"
  5719. },
  5720. "provide": {
  5721. "php-http/async-client-implementation": "*",
  5722. "php-http/client-implementation": "*",
  5723. "psr/http-client-implementation": "1.0",
  5724. "symfony/http-client-implementation": "3.0"
  5725. },
  5726. "require-dev": {
  5727. "amphp/amp": "^2.5",
  5728. "amphp/http-client": "^4.2.1",
  5729. "amphp/http-tunnel": "^1.0",
  5730. "amphp/socket": "^1.1",
  5731. "guzzlehttp/promises": "^1.4|^2.0",
  5732. "nyholm/psr7": "^1.0",
  5733. "php-http/httplug": "^1.0|^2.0",
  5734. "psr/http-client": "^1.0",
  5735. "symfony/dependency-injection": "^6.4|^7.0",
  5736. "symfony/http-kernel": "^6.4|^7.0",
  5737. "symfony/messenger": "^6.4|^7.0",
  5738. "symfony/process": "^6.4|^7.0",
  5739. "symfony/rate-limiter": "^6.4|^7.0",
  5740. "symfony/stopwatch": "^6.4|^7.0"
  5741. },
  5742. "type": "library",
  5743. "autoload": {
  5744. "psr-4": {
  5745. "Symfony\\Component\\HttpClient\\": ""
  5746. },
  5747. "exclude-from-classmap": [
  5748. "/Tests/"
  5749. ]
  5750. },
  5751. "notification-url": "https://packagist.org/downloads/",
  5752. "license": [
  5753. "MIT"
  5754. ],
  5755. "authors": [
  5756. {
  5757. "name": "Nicolas Grekas",
  5758. "email": "p@tchwork.com"
  5759. },
  5760. {
  5761. "name": "Symfony Community",
  5762. "homepage": "https://symfony.com/contributors"
  5763. }
  5764. ],
  5765. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5766. "homepage": "https://symfony.com",
  5767. "keywords": [
  5768. "http"
  5769. ],
  5770. "support": {
  5771. "source": "https://github.com/symfony/http-client/tree/v7.1.8"
  5772. },
  5773. "funding": [
  5774. {
  5775. "url": "https://symfony.com/sponsor",
  5776. "type": "custom"
  5777. },
  5778. {
  5779. "url": "https://github.com/fabpot",
  5780. "type": "github"
  5781. },
  5782. {
  5783. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5784. "type": "tidelift"
  5785. }
  5786. ],
  5787. "time": "2024-11-13T13:40:27+00:00"
  5788. },
  5789. {
  5790. "name": "symfony/http-client-contracts",
  5791. "version": "v3.5.0",
  5792. "source": {
  5793. "type": "git",
  5794. "url": "https://github.com/symfony/http-client-contracts.git",
  5795. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  5796. },
  5797. "dist": {
  5798. "type": "zip",
  5799. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  5800. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  5801. "shasum": ""
  5802. },
  5803. "require": {
  5804. "php": ">=8.1"
  5805. },
  5806. "type": "library",
  5807. "extra": {
  5808. "branch-alias": {
  5809. "dev-main": "3.5-dev"
  5810. },
  5811. "thanks": {
  5812. "name": "symfony/contracts",
  5813. "url": "https://github.com/symfony/contracts"
  5814. }
  5815. },
  5816. "autoload": {
  5817. "psr-4": {
  5818. "Symfony\\Contracts\\HttpClient\\": ""
  5819. },
  5820. "exclude-from-classmap": [
  5821. "/Test/"
  5822. ]
  5823. },
  5824. "notification-url": "https://packagist.org/downloads/",
  5825. "license": [
  5826. "MIT"
  5827. ],
  5828. "authors": [
  5829. {
  5830. "name": "Nicolas Grekas",
  5831. "email": "p@tchwork.com"
  5832. },
  5833. {
  5834. "name": "Symfony Community",
  5835. "homepage": "https://symfony.com/contributors"
  5836. }
  5837. ],
  5838. "description": "Generic abstractions related to HTTP clients",
  5839. "homepage": "https://symfony.com",
  5840. "keywords": [
  5841. "abstractions",
  5842. "contracts",
  5843. "decoupling",
  5844. "interfaces",
  5845. "interoperability",
  5846. "standards"
  5847. ],
  5848. "support": {
  5849. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  5850. },
  5851. "funding": [
  5852. {
  5853. "url": "https://symfony.com/sponsor",
  5854. "type": "custom"
  5855. },
  5856. {
  5857. "url": "https://github.com/fabpot",
  5858. "type": "github"
  5859. },
  5860. {
  5861. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5862. "type": "tidelift"
  5863. }
  5864. ],
  5865. "time": "2024-04-18T09:32:20+00:00"
  5866. },
  5867. {
  5868. "name": "symfony/http-foundation",
  5869. "version": "v7.1.8",
  5870. "source": {
  5871. "type": "git",
  5872. "url": "https://github.com/symfony/http-foundation.git",
  5873. "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112"
  5874. },
  5875. "dist": {
  5876. "type": "zip",
  5877. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f4419ec69ccfc3f725a4de7c20e4e57626d10112",
  5878. "reference": "f4419ec69ccfc3f725a4de7c20e4e57626d10112",
  5879. "shasum": ""
  5880. },
  5881. "require": {
  5882. "php": ">=8.2",
  5883. "symfony/polyfill-mbstring": "~1.1",
  5884. "symfony/polyfill-php83": "^1.27"
  5885. },
  5886. "conflict": {
  5887. "doctrine/dbal": "<3.6",
  5888. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  5889. },
  5890. "require-dev": {
  5891. "doctrine/dbal": "^3.6|^4",
  5892. "predis/predis": "^1.1|^2.0",
  5893. "symfony/cache": "^6.4.12|^7.1.5",
  5894. "symfony/dependency-injection": "^6.4|^7.0",
  5895. "symfony/expression-language": "^6.4|^7.0",
  5896. "symfony/http-kernel": "^6.4|^7.0",
  5897. "symfony/mime": "^6.4|^7.0",
  5898. "symfony/rate-limiter": "^6.4|^7.0"
  5899. },
  5900. "type": "library",
  5901. "autoload": {
  5902. "psr-4": {
  5903. "Symfony\\Component\\HttpFoundation\\": ""
  5904. },
  5905. "exclude-from-classmap": [
  5906. "/Tests/"
  5907. ]
  5908. },
  5909. "notification-url": "https://packagist.org/downloads/",
  5910. "license": [
  5911. "MIT"
  5912. ],
  5913. "authors": [
  5914. {
  5915. "name": "Fabien Potencier",
  5916. "email": "fabien@symfony.com"
  5917. },
  5918. {
  5919. "name": "Symfony Community",
  5920. "homepage": "https://symfony.com/contributors"
  5921. }
  5922. ],
  5923. "description": "Defines an object-oriented layer for the HTTP specification",
  5924. "homepage": "https://symfony.com",
  5925. "support": {
  5926. "source": "https://github.com/symfony/http-foundation/tree/v7.1.8"
  5927. },
  5928. "funding": [
  5929. {
  5930. "url": "https://symfony.com/sponsor",
  5931. "type": "custom"
  5932. },
  5933. {
  5934. "url": "https://github.com/fabpot",
  5935. "type": "github"
  5936. },
  5937. {
  5938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5939. "type": "tidelift"
  5940. }
  5941. ],
  5942. "time": "2024-11-09T09:16:45+00:00"
  5943. },
  5944. {
  5945. "name": "symfony/http-kernel",
  5946. "version": "v7.1.8",
  5947. "source": {
  5948. "type": "git",
  5949. "url": "https://github.com/symfony/http-kernel.git",
  5950. "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e"
  5951. },
  5952. "dist": {
  5953. "type": "zip",
  5954. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/33fef24e3dc79d6d30bf4936531f2f4bd2ca189e",
  5955. "reference": "33fef24e3dc79d6d30bf4936531f2f4bd2ca189e",
  5956. "shasum": ""
  5957. },
  5958. "require": {
  5959. "php": ">=8.2",
  5960. "psr/log": "^1|^2|^3",
  5961. "symfony/deprecation-contracts": "^2.5|^3",
  5962. "symfony/error-handler": "^6.4|^7.0",
  5963. "symfony/event-dispatcher": "^6.4|^7.0",
  5964. "symfony/http-foundation": "^6.4|^7.0",
  5965. "symfony/polyfill-ctype": "^1.8"
  5966. },
  5967. "conflict": {
  5968. "symfony/browser-kit": "<6.4",
  5969. "symfony/cache": "<6.4",
  5970. "symfony/config": "<6.4",
  5971. "symfony/console": "<6.4",
  5972. "symfony/dependency-injection": "<6.4",
  5973. "symfony/doctrine-bridge": "<6.4",
  5974. "symfony/form": "<6.4",
  5975. "symfony/http-client": "<6.4",
  5976. "symfony/http-client-contracts": "<2.5",
  5977. "symfony/mailer": "<6.4",
  5978. "symfony/messenger": "<6.4",
  5979. "symfony/translation": "<6.4",
  5980. "symfony/translation-contracts": "<2.5",
  5981. "symfony/twig-bridge": "<6.4",
  5982. "symfony/validator": "<6.4",
  5983. "symfony/var-dumper": "<6.4",
  5984. "twig/twig": "<3.0.4"
  5985. },
  5986. "provide": {
  5987. "psr/log-implementation": "1.0|2.0|3.0"
  5988. },
  5989. "require-dev": {
  5990. "psr/cache": "^1.0|^2.0|^3.0",
  5991. "symfony/browser-kit": "^6.4|^7.0",
  5992. "symfony/clock": "^6.4|^7.0",
  5993. "symfony/config": "^6.4|^7.0",
  5994. "symfony/console": "^6.4|^7.0",
  5995. "symfony/css-selector": "^6.4|^7.0",
  5996. "symfony/dependency-injection": "^6.4|^7.0",
  5997. "symfony/dom-crawler": "^6.4|^7.0",
  5998. "symfony/expression-language": "^6.4|^7.0",
  5999. "symfony/finder": "^6.4|^7.0",
  6000. "symfony/http-client-contracts": "^2.5|^3",
  6001. "symfony/process": "^6.4|^7.0",
  6002. "symfony/property-access": "^7.1",
  6003. "symfony/routing": "^6.4|^7.0",
  6004. "symfony/serializer": "^7.1",
  6005. "symfony/stopwatch": "^6.4|^7.0",
  6006. "symfony/translation": "^6.4|^7.0",
  6007. "symfony/translation-contracts": "^2.5|^3",
  6008. "symfony/uid": "^6.4|^7.0",
  6009. "symfony/validator": "^6.4|^7.0",
  6010. "symfony/var-dumper": "^6.4|^7.0",
  6011. "symfony/var-exporter": "^6.4|^7.0",
  6012. "twig/twig": "^3.0.4"
  6013. },
  6014. "type": "library",
  6015. "autoload": {
  6016. "psr-4": {
  6017. "Symfony\\Component\\HttpKernel\\": ""
  6018. },
  6019. "exclude-from-classmap": [
  6020. "/Tests/"
  6021. ]
  6022. },
  6023. "notification-url": "https://packagist.org/downloads/",
  6024. "license": [
  6025. "MIT"
  6026. ],
  6027. "authors": [
  6028. {
  6029. "name": "Fabien Potencier",
  6030. "email": "fabien@symfony.com"
  6031. },
  6032. {
  6033. "name": "Symfony Community",
  6034. "homepage": "https://symfony.com/contributors"
  6035. }
  6036. ],
  6037. "description": "Provides a structured process for converting a Request into a Response",
  6038. "homepage": "https://symfony.com",
  6039. "support": {
  6040. "source": "https://github.com/symfony/http-kernel/tree/v7.1.8"
  6041. },
  6042. "funding": [
  6043. {
  6044. "url": "https://symfony.com/sponsor",
  6045. "type": "custom"
  6046. },
  6047. {
  6048. "url": "https://github.com/fabpot",
  6049. "type": "github"
  6050. },
  6051. {
  6052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6053. "type": "tidelift"
  6054. }
  6055. ],
  6056. "time": "2024-11-13T14:25:32+00:00"
  6057. },
  6058. {
  6059. "name": "symfony/mailer",
  6060. "version": "v7.1.6",
  6061. "source": {
  6062. "type": "git",
  6063. "url": "https://github.com/symfony/mailer.git",
  6064. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd"
  6065. },
  6066. "dist": {
  6067. "type": "zip",
  6068. "url": "https://api.github.com/repos/symfony/mailer/zipball/69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  6069. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  6070. "shasum": ""
  6071. },
  6072. "require": {
  6073. "egulias/email-validator": "^2.1.10|^3|^4",
  6074. "php": ">=8.2",
  6075. "psr/event-dispatcher": "^1",
  6076. "psr/log": "^1|^2|^3",
  6077. "symfony/event-dispatcher": "^6.4|^7.0",
  6078. "symfony/mime": "^6.4|^7.0",
  6079. "symfony/service-contracts": "^2.5|^3"
  6080. },
  6081. "conflict": {
  6082. "symfony/http-client-contracts": "<2.5",
  6083. "symfony/http-kernel": "<6.4",
  6084. "symfony/messenger": "<6.4",
  6085. "symfony/mime": "<6.4",
  6086. "symfony/twig-bridge": "<6.4"
  6087. },
  6088. "require-dev": {
  6089. "symfony/console": "^6.4|^7.0",
  6090. "symfony/http-client": "^6.4|^7.0",
  6091. "symfony/messenger": "^6.4|^7.0",
  6092. "symfony/twig-bridge": "^6.4|^7.0"
  6093. },
  6094. "type": "library",
  6095. "autoload": {
  6096. "psr-4": {
  6097. "Symfony\\Component\\Mailer\\": ""
  6098. },
  6099. "exclude-from-classmap": [
  6100. "/Tests/"
  6101. ]
  6102. },
  6103. "notification-url": "https://packagist.org/downloads/",
  6104. "license": [
  6105. "MIT"
  6106. ],
  6107. "authors": [
  6108. {
  6109. "name": "Fabien Potencier",
  6110. "email": "fabien@symfony.com"
  6111. },
  6112. {
  6113. "name": "Symfony Community",
  6114. "homepage": "https://symfony.com/contributors"
  6115. }
  6116. ],
  6117. "description": "Helps sending emails",
  6118. "homepage": "https://symfony.com",
  6119. "support": {
  6120. "source": "https://github.com/symfony/mailer/tree/v7.1.6"
  6121. },
  6122. "funding": [
  6123. {
  6124. "url": "https://symfony.com/sponsor",
  6125. "type": "custom"
  6126. },
  6127. {
  6128. "url": "https://github.com/fabpot",
  6129. "type": "github"
  6130. },
  6131. {
  6132. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6133. "type": "tidelift"
  6134. }
  6135. ],
  6136. "time": "2024-09-25T14:20:29+00:00"
  6137. },
  6138. {
  6139. "name": "symfony/mime",
  6140. "version": "v7.1.6",
  6141. "source": {
  6142. "type": "git",
  6143. "url": "https://github.com/symfony/mime.git",
  6144. "reference": "caa1e521edb2650b8470918dfe51708c237f0598"
  6145. },
  6146. "dist": {
  6147. "type": "zip",
  6148. "url": "https://api.github.com/repos/symfony/mime/zipball/caa1e521edb2650b8470918dfe51708c237f0598",
  6149. "reference": "caa1e521edb2650b8470918dfe51708c237f0598",
  6150. "shasum": ""
  6151. },
  6152. "require": {
  6153. "php": ">=8.2",
  6154. "symfony/polyfill-intl-idn": "^1.10",
  6155. "symfony/polyfill-mbstring": "^1.0"
  6156. },
  6157. "conflict": {
  6158. "egulias/email-validator": "~3.0.0",
  6159. "phpdocumentor/reflection-docblock": "<3.2.2",
  6160. "phpdocumentor/type-resolver": "<1.4.0",
  6161. "symfony/mailer": "<6.4",
  6162. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  6163. },
  6164. "require-dev": {
  6165. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6166. "league/html-to-markdown": "^5.0",
  6167. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6168. "symfony/dependency-injection": "^6.4|^7.0",
  6169. "symfony/process": "^6.4|^7.0",
  6170. "symfony/property-access": "^6.4|^7.0",
  6171. "symfony/property-info": "^6.4|^7.0",
  6172. "symfony/serializer": "^6.4.3|^7.0.3"
  6173. },
  6174. "type": "library",
  6175. "autoload": {
  6176. "psr-4": {
  6177. "Symfony\\Component\\Mime\\": ""
  6178. },
  6179. "exclude-from-classmap": [
  6180. "/Tests/"
  6181. ]
  6182. },
  6183. "notification-url": "https://packagist.org/downloads/",
  6184. "license": [
  6185. "MIT"
  6186. ],
  6187. "authors": [
  6188. {
  6189. "name": "Fabien Potencier",
  6190. "email": "fabien@symfony.com"
  6191. },
  6192. {
  6193. "name": "Symfony Community",
  6194. "homepage": "https://symfony.com/contributors"
  6195. }
  6196. ],
  6197. "description": "Allows manipulating MIME messages",
  6198. "homepage": "https://symfony.com",
  6199. "keywords": [
  6200. "mime",
  6201. "mime-type"
  6202. ],
  6203. "support": {
  6204. "source": "https://github.com/symfony/mime/tree/v7.1.6"
  6205. },
  6206. "funding": [
  6207. {
  6208. "url": "https://symfony.com/sponsor",
  6209. "type": "custom"
  6210. },
  6211. {
  6212. "url": "https://github.com/fabpot",
  6213. "type": "github"
  6214. },
  6215. {
  6216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6217. "type": "tidelift"
  6218. }
  6219. ],
  6220. "time": "2024-10-25T15:11:02+00:00"
  6221. },
  6222. {
  6223. "name": "symfony/polyfill-ctype",
  6224. "version": "v1.31.0",
  6225. "source": {
  6226. "type": "git",
  6227. "url": "https://github.com/symfony/polyfill-ctype.git",
  6228. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6229. },
  6230. "dist": {
  6231. "type": "zip",
  6232. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6233. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6234. "shasum": ""
  6235. },
  6236. "require": {
  6237. "php": ">=7.2"
  6238. },
  6239. "provide": {
  6240. "ext-ctype": "*"
  6241. },
  6242. "suggest": {
  6243. "ext-ctype": "For best performance"
  6244. },
  6245. "type": "library",
  6246. "extra": {
  6247. "thanks": {
  6248. "name": "symfony/polyfill",
  6249. "url": "https://github.com/symfony/polyfill"
  6250. }
  6251. },
  6252. "autoload": {
  6253. "files": [
  6254. "bootstrap.php"
  6255. ],
  6256. "psr-4": {
  6257. "Symfony\\Polyfill\\Ctype\\": ""
  6258. }
  6259. },
  6260. "notification-url": "https://packagist.org/downloads/",
  6261. "license": [
  6262. "MIT"
  6263. ],
  6264. "authors": [
  6265. {
  6266. "name": "Gert de Pagter",
  6267. "email": "BackEndTea@gmail.com"
  6268. },
  6269. {
  6270. "name": "Symfony Community",
  6271. "homepage": "https://symfony.com/contributors"
  6272. }
  6273. ],
  6274. "description": "Symfony polyfill for ctype functions",
  6275. "homepage": "https://symfony.com",
  6276. "keywords": [
  6277. "compatibility",
  6278. "ctype",
  6279. "polyfill",
  6280. "portable"
  6281. ],
  6282. "support": {
  6283. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6284. },
  6285. "funding": [
  6286. {
  6287. "url": "https://symfony.com/sponsor",
  6288. "type": "custom"
  6289. },
  6290. {
  6291. "url": "https://github.com/fabpot",
  6292. "type": "github"
  6293. },
  6294. {
  6295. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6296. "type": "tidelift"
  6297. }
  6298. ],
  6299. "time": "2024-09-09T11:45:10+00:00"
  6300. },
  6301. {
  6302. "name": "symfony/polyfill-intl-grapheme",
  6303. "version": "v1.31.0",
  6304. "source": {
  6305. "type": "git",
  6306. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6307. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6308. },
  6309. "dist": {
  6310. "type": "zip",
  6311. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6312. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6313. "shasum": ""
  6314. },
  6315. "require": {
  6316. "php": ">=7.2"
  6317. },
  6318. "suggest": {
  6319. "ext-intl": "For best performance"
  6320. },
  6321. "type": "library",
  6322. "extra": {
  6323. "thanks": {
  6324. "name": "symfony/polyfill",
  6325. "url": "https://github.com/symfony/polyfill"
  6326. }
  6327. },
  6328. "autoload": {
  6329. "files": [
  6330. "bootstrap.php"
  6331. ],
  6332. "psr-4": {
  6333. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6334. }
  6335. },
  6336. "notification-url": "https://packagist.org/downloads/",
  6337. "license": [
  6338. "MIT"
  6339. ],
  6340. "authors": [
  6341. {
  6342. "name": "Nicolas Grekas",
  6343. "email": "p@tchwork.com"
  6344. },
  6345. {
  6346. "name": "Symfony Community",
  6347. "homepage": "https://symfony.com/contributors"
  6348. }
  6349. ],
  6350. "description": "Symfony polyfill for intl's grapheme_* functions",
  6351. "homepage": "https://symfony.com",
  6352. "keywords": [
  6353. "compatibility",
  6354. "grapheme",
  6355. "intl",
  6356. "polyfill",
  6357. "portable",
  6358. "shim"
  6359. ],
  6360. "support": {
  6361. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6362. },
  6363. "funding": [
  6364. {
  6365. "url": "https://symfony.com/sponsor",
  6366. "type": "custom"
  6367. },
  6368. {
  6369. "url": "https://github.com/fabpot",
  6370. "type": "github"
  6371. },
  6372. {
  6373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6374. "type": "tidelift"
  6375. }
  6376. ],
  6377. "time": "2024-09-09T11:45:10+00:00"
  6378. },
  6379. {
  6380. "name": "symfony/polyfill-intl-idn",
  6381. "version": "v1.31.0",
  6382. "source": {
  6383. "type": "git",
  6384. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6385. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  6386. },
  6387. "dist": {
  6388. "type": "zip",
  6389. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  6390. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  6391. "shasum": ""
  6392. },
  6393. "require": {
  6394. "php": ">=7.2",
  6395. "symfony/polyfill-intl-normalizer": "^1.10"
  6396. },
  6397. "suggest": {
  6398. "ext-intl": "For best performance"
  6399. },
  6400. "type": "library",
  6401. "extra": {
  6402. "thanks": {
  6403. "name": "symfony/polyfill",
  6404. "url": "https://github.com/symfony/polyfill"
  6405. }
  6406. },
  6407. "autoload": {
  6408. "files": [
  6409. "bootstrap.php"
  6410. ],
  6411. "psr-4": {
  6412. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6413. }
  6414. },
  6415. "notification-url": "https://packagist.org/downloads/",
  6416. "license": [
  6417. "MIT"
  6418. ],
  6419. "authors": [
  6420. {
  6421. "name": "Laurent Bassin",
  6422. "email": "laurent@bassin.info"
  6423. },
  6424. {
  6425. "name": "Trevor Rowbotham",
  6426. "email": "trevor.rowbotham@pm.me"
  6427. },
  6428. {
  6429. "name": "Symfony Community",
  6430. "homepage": "https://symfony.com/contributors"
  6431. }
  6432. ],
  6433. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6434. "homepage": "https://symfony.com",
  6435. "keywords": [
  6436. "compatibility",
  6437. "idn",
  6438. "intl",
  6439. "polyfill",
  6440. "portable",
  6441. "shim"
  6442. ],
  6443. "support": {
  6444. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  6445. },
  6446. "funding": [
  6447. {
  6448. "url": "https://symfony.com/sponsor",
  6449. "type": "custom"
  6450. },
  6451. {
  6452. "url": "https://github.com/fabpot",
  6453. "type": "github"
  6454. },
  6455. {
  6456. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6457. "type": "tidelift"
  6458. }
  6459. ],
  6460. "time": "2024-09-09T11:45:10+00:00"
  6461. },
  6462. {
  6463. "name": "symfony/polyfill-intl-normalizer",
  6464. "version": "v1.31.0",
  6465. "source": {
  6466. "type": "git",
  6467. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6468. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6469. },
  6470. "dist": {
  6471. "type": "zip",
  6472. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6473. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6474. "shasum": ""
  6475. },
  6476. "require": {
  6477. "php": ">=7.2"
  6478. },
  6479. "suggest": {
  6480. "ext-intl": "For best performance"
  6481. },
  6482. "type": "library",
  6483. "extra": {
  6484. "thanks": {
  6485. "name": "symfony/polyfill",
  6486. "url": "https://github.com/symfony/polyfill"
  6487. }
  6488. },
  6489. "autoload": {
  6490. "files": [
  6491. "bootstrap.php"
  6492. ],
  6493. "psr-4": {
  6494. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6495. },
  6496. "classmap": [
  6497. "Resources/stubs"
  6498. ]
  6499. },
  6500. "notification-url": "https://packagist.org/downloads/",
  6501. "license": [
  6502. "MIT"
  6503. ],
  6504. "authors": [
  6505. {
  6506. "name": "Nicolas Grekas",
  6507. "email": "p@tchwork.com"
  6508. },
  6509. {
  6510. "name": "Symfony Community",
  6511. "homepage": "https://symfony.com/contributors"
  6512. }
  6513. ],
  6514. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6515. "homepage": "https://symfony.com",
  6516. "keywords": [
  6517. "compatibility",
  6518. "intl",
  6519. "normalizer",
  6520. "polyfill",
  6521. "portable",
  6522. "shim"
  6523. ],
  6524. "support": {
  6525. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6526. },
  6527. "funding": [
  6528. {
  6529. "url": "https://symfony.com/sponsor",
  6530. "type": "custom"
  6531. },
  6532. {
  6533. "url": "https://github.com/fabpot",
  6534. "type": "github"
  6535. },
  6536. {
  6537. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6538. "type": "tidelift"
  6539. }
  6540. ],
  6541. "time": "2024-09-09T11:45:10+00:00"
  6542. },
  6543. {
  6544. "name": "symfony/polyfill-mbstring",
  6545. "version": "v1.31.0",
  6546. "source": {
  6547. "type": "git",
  6548. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6549. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6550. },
  6551. "dist": {
  6552. "type": "zip",
  6553. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6554. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6555. "shasum": ""
  6556. },
  6557. "require": {
  6558. "php": ">=7.2"
  6559. },
  6560. "provide": {
  6561. "ext-mbstring": "*"
  6562. },
  6563. "suggest": {
  6564. "ext-mbstring": "For best performance"
  6565. },
  6566. "type": "library",
  6567. "extra": {
  6568. "thanks": {
  6569. "name": "symfony/polyfill",
  6570. "url": "https://github.com/symfony/polyfill"
  6571. }
  6572. },
  6573. "autoload": {
  6574. "files": [
  6575. "bootstrap.php"
  6576. ],
  6577. "psr-4": {
  6578. "Symfony\\Polyfill\\Mbstring\\": ""
  6579. }
  6580. },
  6581. "notification-url": "https://packagist.org/downloads/",
  6582. "license": [
  6583. "MIT"
  6584. ],
  6585. "authors": [
  6586. {
  6587. "name": "Nicolas Grekas",
  6588. "email": "p@tchwork.com"
  6589. },
  6590. {
  6591. "name": "Symfony Community",
  6592. "homepage": "https://symfony.com/contributors"
  6593. }
  6594. ],
  6595. "description": "Symfony polyfill for the Mbstring extension",
  6596. "homepage": "https://symfony.com",
  6597. "keywords": [
  6598. "compatibility",
  6599. "mbstring",
  6600. "polyfill",
  6601. "portable",
  6602. "shim"
  6603. ],
  6604. "support": {
  6605. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6606. },
  6607. "funding": [
  6608. {
  6609. "url": "https://symfony.com/sponsor",
  6610. "type": "custom"
  6611. },
  6612. {
  6613. "url": "https://github.com/fabpot",
  6614. "type": "github"
  6615. },
  6616. {
  6617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6618. "type": "tidelift"
  6619. }
  6620. ],
  6621. "time": "2024-09-09T11:45:10+00:00"
  6622. },
  6623. {
  6624. "name": "symfony/polyfill-php80",
  6625. "version": "v1.31.0",
  6626. "source": {
  6627. "type": "git",
  6628. "url": "https://github.com/symfony/polyfill-php80.git",
  6629. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6630. },
  6631. "dist": {
  6632. "type": "zip",
  6633. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6634. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6635. "shasum": ""
  6636. },
  6637. "require": {
  6638. "php": ">=7.2"
  6639. },
  6640. "type": "library",
  6641. "extra": {
  6642. "thanks": {
  6643. "name": "symfony/polyfill",
  6644. "url": "https://github.com/symfony/polyfill"
  6645. }
  6646. },
  6647. "autoload": {
  6648. "files": [
  6649. "bootstrap.php"
  6650. ],
  6651. "psr-4": {
  6652. "Symfony\\Polyfill\\Php80\\": ""
  6653. },
  6654. "classmap": [
  6655. "Resources/stubs"
  6656. ]
  6657. },
  6658. "notification-url": "https://packagist.org/downloads/",
  6659. "license": [
  6660. "MIT"
  6661. ],
  6662. "authors": [
  6663. {
  6664. "name": "Ion Bazan",
  6665. "email": "ion.bazan@gmail.com"
  6666. },
  6667. {
  6668. "name": "Nicolas Grekas",
  6669. "email": "p@tchwork.com"
  6670. },
  6671. {
  6672. "name": "Symfony Community",
  6673. "homepage": "https://symfony.com/contributors"
  6674. }
  6675. ],
  6676. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6677. "homepage": "https://symfony.com",
  6678. "keywords": [
  6679. "compatibility",
  6680. "polyfill",
  6681. "portable",
  6682. "shim"
  6683. ],
  6684. "support": {
  6685. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6686. },
  6687. "funding": [
  6688. {
  6689. "url": "https://symfony.com/sponsor",
  6690. "type": "custom"
  6691. },
  6692. {
  6693. "url": "https://github.com/fabpot",
  6694. "type": "github"
  6695. },
  6696. {
  6697. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6698. "type": "tidelift"
  6699. }
  6700. ],
  6701. "time": "2024-09-09T11:45:10+00:00"
  6702. },
  6703. {
  6704. "name": "symfony/polyfill-php81",
  6705. "version": "v1.31.0",
  6706. "source": {
  6707. "type": "git",
  6708. "url": "https://github.com/symfony/polyfill-php81.git",
  6709. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  6710. },
  6711. "dist": {
  6712. "type": "zip",
  6713. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6714. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6715. "shasum": ""
  6716. },
  6717. "require": {
  6718. "php": ">=7.2"
  6719. },
  6720. "type": "library",
  6721. "extra": {
  6722. "thanks": {
  6723. "name": "symfony/polyfill",
  6724. "url": "https://github.com/symfony/polyfill"
  6725. }
  6726. },
  6727. "autoload": {
  6728. "files": [
  6729. "bootstrap.php"
  6730. ],
  6731. "psr-4": {
  6732. "Symfony\\Polyfill\\Php81\\": ""
  6733. },
  6734. "classmap": [
  6735. "Resources/stubs"
  6736. ]
  6737. },
  6738. "notification-url": "https://packagist.org/downloads/",
  6739. "license": [
  6740. "MIT"
  6741. ],
  6742. "authors": [
  6743. {
  6744. "name": "Nicolas Grekas",
  6745. "email": "p@tchwork.com"
  6746. },
  6747. {
  6748. "name": "Symfony Community",
  6749. "homepage": "https://symfony.com/contributors"
  6750. }
  6751. ],
  6752. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6753. "homepage": "https://symfony.com",
  6754. "keywords": [
  6755. "compatibility",
  6756. "polyfill",
  6757. "portable",
  6758. "shim"
  6759. ],
  6760. "support": {
  6761. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  6762. },
  6763. "funding": [
  6764. {
  6765. "url": "https://symfony.com/sponsor",
  6766. "type": "custom"
  6767. },
  6768. {
  6769. "url": "https://github.com/fabpot",
  6770. "type": "github"
  6771. },
  6772. {
  6773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6774. "type": "tidelift"
  6775. }
  6776. ],
  6777. "time": "2024-09-09T11:45:10+00:00"
  6778. },
  6779. {
  6780. "name": "symfony/polyfill-php83",
  6781. "version": "v1.31.0",
  6782. "source": {
  6783. "type": "git",
  6784. "url": "https://github.com/symfony/polyfill-php83.git",
  6785. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  6786. },
  6787. "dist": {
  6788. "type": "zip",
  6789. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  6790. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  6791. "shasum": ""
  6792. },
  6793. "require": {
  6794. "php": ">=7.2"
  6795. },
  6796. "type": "library",
  6797. "extra": {
  6798. "thanks": {
  6799. "name": "symfony/polyfill",
  6800. "url": "https://github.com/symfony/polyfill"
  6801. }
  6802. },
  6803. "autoload": {
  6804. "files": [
  6805. "bootstrap.php"
  6806. ],
  6807. "psr-4": {
  6808. "Symfony\\Polyfill\\Php83\\": ""
  6809. },
  6810. "classmap": [
  6811. "Resources/stubs"
  6812. ]
  6813. },
  6814. "notification-url": "https://packagist.org/downloads/",
  6815. "license": [
  6816. "MIT"
  6817. ],
  6818. "authors": [
  6819. {
  6820. "name": "Nicolas Grekas",
  6821. "email": "p@tchwork.com"
  6822. },
  6823. {
  6824. "name": "Symfony Community",
  6825. "homepage": "https://symfony.com/contributors"
  6826. }
  6827. ],
  6828. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6829. "homepage": "https://symfony.com",
  6830. "keywords": [
  6831. "compatibility",
  6832. "polyfill",
  6833. "portable",
  6834. "shim"
  6835. ],
  6836. "support": {
  6837. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  6838. },
  6839. "funding": [
  6840. {
  6841. "url": "https://symfony.com/sponsor",
  6842. "type": "custom"
  6843. },
  6844. {
  6845. "url": "https://github.com/fabpot",
  6846. "type": "github"
  6847. },
  6848. {
  6849. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6850. "type": "tidelift"
  6851. }
  6852. ],
  6853. "time": "2024-09-09T11:45:10+00:00"
  6854. },
  6855. {
  6856. "name": "symfony/polyfill-uuid",
  6857. "version": "v1.31.0",
  6858. "source": {
  6859. "type": "git",
  6860. "url": "https://github.com/symfony/polyfill-uuid.git",
  6861. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  6862. },
  6863. "dist": {
  6864. "type": "zip",
  6865. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6866. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6867. "shasum": ""
  6868. },
  6869. "require": {
  6870. "php": ">=7.2"
  6871. },
  6872. "provide": {
  6873. "ext-uuid": "*"
  6874. },
  6875. "suggest": {
  6876. "ext-uuid": "For best performance"
  6877. },
  6878. "type": "library",
  6879. "extra": {
  6880. "thanks": {
  6881. "name": "symfony/polyfill",
  6882. "url": "https://github.com/symfony/polyfill"
  6883. }
  6884. },
  6885. "autoload": {
  6886. "files": [
  6887. "bootstrap.php"
  6888. ],
  6889. "psr-4": {
  6890. "Symfony\\Polyfill\\Uuid\\": ""
  6891. }
  6892. },
  6893. "notification-url": "https://packagist.org/downloads/",
  6894. "license": [
  6895. "MIT"
  6896. ],
  6897. "authors": [
  6898. {
  6899. "name": "Grégoire Pineau",
  6900. "email": "lyrixx@lyrixx.info"
  6901. },
  6902. {
  6903. "name": "Symfony Community",
  6904. "homepage": "https://symfony.com/contributors"
  6905. }
  6906. ],
  6907. "description": "Symfony polyfill for uuid functions",
  6908. "homepage": "https://symfony.com",
  6909. "keywords": [
  6910. "compatibility",
  6911. "polyfill",
  6912. "portable",
  6913. "uuid"
  6914. ],
  6915. "support": {
  6916. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  6917. },
  6918. "funding": [
  6919. {
  6920. "url": "https://symfony.com/sponsor",
  6921. "type": "custom"
  6922. },
  6923. {
  6924. "url": "https://github.com/fabpot",
  6925. "type": "github"
  6926. },
  6927. {
  6928. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6929. "type": "tidelift"
  6930. }
  6931. ],
  6932. "time": "2024-09-09T11:45:10+00:00"
  6933. },
  6934. {
  6935. "name": "symfony/process",
  6936. "version": "v7.1.8",
  6937. "source": {
  6938. "type": "git",
  6939. "url": "https://github.com/symfony/process.git",
  6940. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892"
  6941. },
  6942. "dist": {
  6943. "type": "zip",
  6944. "url": "https://api.github.com/repos/symfony/process/zipball/42783370fda6e538771f7c7a36e9fa2ee3a84892",
  6945. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892",
  6946. "shasum": ""
  6947. },
  6948. "require": {
  6949. "php": ">=8.2"
  6950. },
  6951. "type": "library",
  6952. "autoload": {
  6953. "psr-4": {
  6954. "Symfony\\Component\\Process\\": ""
  6955. },
  6956. "exclude-from-classmap": [
  6957. "/Tests/"
  6958. ]
  6959. },
  6960. "notification-url": "https://packagist.org/downloads/",
  6961. "license": [
  6962. "MIT"
  6963. ],
  6964. "authors": [
  6965. {
  6966. "name": "Fabien Potencier",
  6967. "email": "fabien@symfony.com"
  6968. },
  6969. {
  6970. "name": "Symfony Community",
  6971. "homepage": "https://symfony.com/contributors"
  6972. }
  6973. ],
  6974. "description": "Executes commands in sub-processes",
  6975. "homepage": "https://symfony.com",
  6976. "support": {
  6977. "source": "https://github.com/symfony/process/tree/v7.1.8"
  6978. },
  6979. "funding": [
  6980. {
  6981. "url": "https://symfony.com/sponsor",
  6982. "type": "custom"
  6983. },
  6984. {
  6985. "url": "https://github.com/fabpot",
  6986. "type": "github"
  6987. },
  6988. {
  6989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6990. "type": "tidelift"
  6991. }
  6992. ],
  6993. "time": "2024-11-06T14:23:19+00:00"
  6994. },
  6995. {
  6996. "name": "symfony/psr-http-message-bridge",
  6997. "version": "v7.1.6",
  6998. "source": {
  6999. "type": "git",
  7000. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7001. "reference": "f16471bb19f6685b9ccf0a2c03c213840ae68cd6"
  7002. },
  7003. "dist": {
  7004. "type": "zip",
  7005. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/f16471bb19f6685b9ccf0a2c03c213840ae68cd6",
  7006. "reference": "f16471bb19f6685b9ccf0a2c03c213840ae68cd6",
  7007. "shasum": ""
  7008. },
  7009. "require": {
  7010. "php": ">=8.2",
  7011. "psr/http-message": "^1.0|^2.0",
  7012. "symfony/http-foundation": "^6.4|^7.0"
  7013. },
  7014. "conflict": {
  7015. "php-http/discovery": "<1.15",
  7016. "symfony/http-kernel": "<6.4"
  7017. },
  7018. "require-dev": {
  7019. "nyholm/psr7": "^1.1",
  7020. "php-http/discovery": "^1.15",
  7021. "psr/log": "^1.1.4|^2|^3",
  7022. "symfony/browser-kit": "^6.4|^7.0",
  7023. "symfony/config": "^6.4|^7.0",
  7024. "symfony/event-dispatcher": "^6.4|^7.0",
  7025. "symfony/framework-bundle": "^6.4|^7.0",
  7026. "symfony/http-kernel": "^6.4|^7.0"
  7027. },
  7028. "type": "symfony-bridge",
  7029. "autoload": {
  7030. "psr-4": {
  7031. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7032. },
  7033. "exclude-from-classmap": [
  7034. "/Tests/"
  7035. ]
  7036. },
  7037. "notification-url": "https://packagist.org/downloads/",
  7038. "license": [
  7039. "MIT"
  7040. ],
  7041. "authors": [
  7042. {
  7043. "name": "Fabien Potencier",
  7044. "email": "fabien@symfony.com"
  7045. },
  7046. {
  7047. "name": "Symfony Community",
  7048. "homepage": "https://symfony.com/contributors"
  7049. }
  7050. ],
  7051. "description": "PSR HTTP message bridge",
  7052. "homepage": "https://symfony.com",
  7053. "keywords": [
  7054. "http",
  7055. "http-message",
  7056. "psr-17",
  7057. "psr-7"
  7058. ],
  7059. "support": {
  7060. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.1.6"
  7061. },
  7062. "funding": [
  7063. {
  7064. "url": "https://symfony.com/sponsor",
  7065. "type": "custom"
  7066. },
  7067. {
  7068. "url": "https://github.com/fabpot",
  7069. "type": "github"
  7070. },
  7071. {
  7072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7073. "type": "tidelift"
  7074. }
  7075. ],
  7076. "time": "2024-09-25T14:20:29+00:00"
  7077. },
  7078. {
  7079. "name": "symfony/routing",
  7080. "version": "v7.1.6",
  7081. "source": {
  7082. "type": "git",
  7083. "url": "https://github.com/symfony/routing.git",
  7084. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a"
  7085. },
  7086. "dist": {
  7087. "type": "zip",
  7088. "url": "https://api.github.com/repos/symfony/routing/zipball/66a2c469f6c22d08603235c46a20007c0701ea0a",
  7089. "reference": "66a2c469f6c22d08603235c46a20007c0701ea0a",
  7090. "shasum": ""
  7091. },
  7092. "require": {
  7093. "php": ">=8.2",
  7094. "symfony/deprecation-contracts": "^2.5|^3"
  7095. },
  7096. "conflict": {
  7097. "symfony/config": "<6.4",
  7098. "symfony/dependency-injection": "<6.4",
  7099. "symfony/yaml": "<6.4"
  7100. },
  7101. "require-dev": {
  7102. "psr/log": "^1|^2|^3",
  7103. "symfony/config": "^6.4|^7.0",
  7104. "symfony/dependency-injection": "^6.4|^7.0",
  7105. "symfony/expression-language": "^6.4|^7.0",
  7106. "symfony/http-foundation": "^6.4|^7.0",
  7107. "symfony/yaml": "^6.4|^7.0"
  7108. },
  7109. "type": "library",
  7110. "autoload": {
  7111. "psr-4": {
  7112. "Symfony\\Component\\Routing\\": ""
  7113. },
  7114. "exclude-from-classmap": [
  7115. "/Tests/"
  7116. ]
  7117. },
  7118. "notification-url": "https://packagist.org/downloads/",
  7119. "license": [
  7120. "MIT"
  7121. ],
  7122. "authors": [
  7123. {
  7124. "name": "Fabien Potencier",
  7125. "email": "fabien@symfony.com"
  7126. },
  7127. {
  7128. "name": "Symfony Community",
  7129. "homepage": "https://symfony.com/contributors"
  7130. }
  7131. ],
  7132. "description": "Maps an HTTP request to a set of configuration variables",
  7133. "homepage": "https://symfony.com",
  7134. "keywords": [
  7135. "router",
  7136. "routing",
  7137. "uri",
  7138. "url"
  7139. ],
  7140. "support": {
  7141. "source": "https://github.com/symfony/routing/tree/v7.1.6"
  7142. },
  7143. "funding": [
  7144. {
  7145. "url": "https://symfony.com/sponsor",
  7146. "type": "custom"
  7147. },
  7148. {
  7149. "url": "https://github.com/fabpot",
  7150. "type": "github"
  7151. },
  7152. {
  7153. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7154. "type": "tidelift"
  7155. }
  7156. ],
  7157. "time": "2024-10-01T08:31:23+00:00"
  7158. },
  7159. {
  7160. "name": "symfony/service-contracts",
  7161. "version": "v3.5.0",
  7162. "source": {
  7163. "type": "git",
  7164. "url": "https://github.com/symfony/service-contracts.git",
  7165. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7166. },
  7167. "dist": {
  7168. "type": "zip",
  7169. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7170. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7171. "shasum": ""
  7172. },
  7173. "require": {
  7174. "php": ">=8.1",
  7175. "psr/container": "^1.1|^2.0",
  7176. "symfony/deprecation-contracts": "^2.5|^3"
  7177. },
  7178. "conflict": {
  7179. "ext-psr": "<1.1|>=2"
  7180. },
  7181. "type": "library",
  7182. "extra": {
  7183. "branch-alias": {
  7184. "dev-main": "3.5-dev"
  7185. },
  7186. "thanks": {
  7187. "name": "symfony/contracts",
  7188. "url": "https://github.com/symfony/contracts"
  7189. }
  7190. },
  7191. "autoload": {
  7192. "psr-4": {
  7193. "Symfony\\Contracts\\Service\\": ""
  7194. },
  7195. "exclude-from-classmap": [
  7196. "/Test/"
  7197. ]
  7198. },
  7199. "notification-url": "https://packagist.org/downloads/",
  7200. "license": [
  7201. "MIT"
  7202. ],
  7203. "authors": [
  7204. {
  7205. "name": "Nicolas Grekas",
  7206. "email": "p@tchwork.com"
  7207. },
  7208. {
  7209. "name": "Symfony Community",
  7210. "homepage": "https://symfony.com/contributors"
  7211. }
  7212. ],
  7213. "description": "Generic abstractions related to writing services",
  7214. "homepage": "https://symfony.com",
  7215. "keywords": [
  7216. "abstractions",
  7217. "contracts",
  7218. "decoupling",
  7219. "interfaces",
  7220. "interoperability",
  7221. "standards"
  7222. ],
  7223. "support": {
  7224. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7225. },
  7226. "funding": [
  7227. {
  7228. "url": "https://symfony.com/sponsor",
  7229. "type": "custom"
  7230. },
  7231. {
  7232. "url": "https://github.com/fabpot",
  7233. "type": "github"
  7234. },
  7235. {
  7236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7237. "type": "tidelift"
  7238. }
  7239. ],
  7240. "time": "2024-04-18T09:32:20+00:00"
  7241. },
  7242. {
  7243. "name": "symfony/string",
  7244. "version": "v7.1.8",
  7245. "source": {
  7246. "type": "git",
  7247. "url": "https://github.com/symfony/string.git",
  7248. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281"
  7249. },
  7250. "dist": {
  7251. "type": "zip",
  7252. "url": "https://api.github.com/repos/symfony/string/zipball/591ebd41565f356fcd8b090fe64dbb5878f50281",
  7253. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281",
  7254. "shasum": ""
  7255. },
  7256. "require": {
  7257. "php": ">=8.2",
  7258. "symfony/polyfill-ctype": "~1.8",
  7259. "symfony/polyfill-intl-grapheme": "~1.0",
  7260. "symfony/polyfill-intl-normalizer": "~1.0",
  7261. "symfony/polyfill-mbstring": "~1.0"
  7262. },
  7263. "conflict": {
  7264. "symfony/translation-contracts": "<2.5"
  7265. },
  7266. "require-dev": {
  7267. "symfony/emoji": "^7.1",
  7268. "symfony/error-handler": "^6.4|^7.0",
  7269. "symfony/http-client": "^6.4|^7.0",
  7270. "symfony/intl": "^6.4|^7.0",
  7271. "symfony/translation-contracts": "^2.5|^3.0",
  7272. "symfony/var-exporter": "^6.4|^7.0"
  7273. },
  7274. "type": "library",
  7275. "autoload": {
  7276. "files": [
  7277. "Resources/functions.php"
  7278. ],
  7279. "psr-4": {
  7280. "Symfony\\Component\\String\\": ""
  7281. },
  7282. "exclude-from-classmap": [
  7283. "/Tests/"
  7284. ]
  7285. },
  7286. "notification-url": "https://packagist.org/downloads/",
  7287. "license": [
  7288. "MIT"
  7289. ],
  7290. "authors": [
  7291. {
  7292. "name": "Nicolas Grekas",
  7293. "email": "p@tchwork.com"
  7294. },
  7295. {
  7296. "name": "Symfony Community",
  7297. "homepage": "https://symfony.com/contributors"
  7298. }
  7299. ],
  7300. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7301. "homepage": "https://symfony.com",
  7302. "keywords": [
  7303. "grapheme",
  7304. "i18n",
  7305. "string",
  7306. "unicode",
  7307. "utf-8",
  7308. "utf8"
  7309. ],
  7310. "support": {
  7311. "source": "https://github.com/symfony/string/tree/v7.1.8"
  7312. },
  7313. "funding": [
  7314. {
  7315. "url": "https://symfony.com/sponsor",
  7316. "type": "custom"
  7317. },
  7318. {
  7319. "url": "https://github.com/fabpot",
  7320. "type": "github"
  7321. },
  7322. {
  7323. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7324. "type": "tidelift"
  7325. }
  7326. ],
  7327. "time": "2024-11-13T13:31:21+00:00"
  7328. },
  7329. {
  7330. "name": "symfony/translation",
  7331. "version": "v7.1.6",
  7332. "source": {
  7333. "type": "git",
  7334. "url": "https://github.com/symfony/translation.git",
  7335. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f"
  7336. },
  7337. "dist": {
  7338. "type": "zip",
  7339. "url": "https://api.github.com/repos/symfony/translation/zipball/b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7340. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  7341. "shasum": ""
  7342. },
  7343. "require": {
  7344. "php": ">=8.2",
  7345. "symfony/polyfill-mbstring": "~1.0",
  7346. "symfony/translation-contracts": "^2.5|^3.0"
  7347. },
  7348. "conflict": {
  7349. "symfony/config": "<6.4",
  7350. "symfony/console": "<6.4",
  7351. "symfony/dependency-injection": "<6.4",
  7352. "symfony/http-client-contracts": "<2.5",
  7353. "symfony/http-kernel": "<6.4",
  7354. "symfony/service-contracts": "<2.5",
  7355. "symfony/twig-bundle": "<6.4",
  7356. "symfony/yaml": "<6.4"
  7357. },
  7358. "provide": {
  7359. "symfony/translation-implementation": "2.3|3.0"
  7360. },
  7361. "require-dev": {
  7362. "nikic/php-parser": "^4.18|^5.0",
  7363. "psr/log": "^1|^2|^3",
  7364. "symfony/config": "^6.4|^7.0",
  7365. "symfony/console": "^6.4|^7.0",
  7366. "symfony/dependency-injection": "^6.4|^7.0",
  7367. "symfony/finder": "^6.4|^7.0",
  7368. "symfony/http-client-contracts": "^2.5|^3.0",
  7369. "symfony/http-kernel": "^6.4|^7.0",
  7370. "symfony/intl": "^6.4|^7.0",
  7371. "symfony/polyfill-intl-icu": "^1.21",
  7372. "symfony/routing": "^6.4|^7.0",
  7373. "symfony/service-contracts": "^2.5|^3",
  7374. "symfony/yaml": "^6.4|^7.0"
  7375. },
  7376. "type": "library",
  7377. "autoload": {
  7378. "files": [
  7379. "Resources/functions.php"
  7380. ],
  7381. "psr-4": {
  7382. "Symfony\\Component\\Translation\\": ""
  7383. },
  7384. "exclude-from-classmap": [
  7385. "/Tests/"
  7386. ]
  7387. },
  7388. "notification-url": "https://packagist.org/downloads/",
  7389. "license": [
  7390. "MIT"
  7391. ],
  7392. "authors": [
  7393. {
  7394. "name": "Fabien Potencier",
  7395. "email": "fabien@symfony.com"
  7396. },
  7397. {
  7398. "name": "Symfony Community",
  7399. "homepage": "https://symfony.com/contributors"
  7400. }
  7401. ],
  7402. "description": "Provides tools to internationalize your application",
  7403. "homepage": "https://symfony.com",
  7404. "support": {
  7405. "source": "https://github.com/symfony/translation/tree/v7.1.6"
  7406. },
  7407. "funding": [
  7408. {
  7409. "url": "https://symfony.com/sponsor",
  7410. "type": "custom"
  7411. },
  7412. {
  7413. "url": "https://github.com/fabpot",
  7414. "type": "github"
  7415. },
  7416. {
  7417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7418. "type": "tidelift"
  7419. }
  7420. ],
  7421. "time": "2024-09-28T12:35:13+00:00"
  7422. },
  7423. {
  7424. "name": "symfony/translation-contracts",
  7425. "version": "v3.5.0",
  7426. "source": {
  7427. "type": "git",
  7428. "url": "https://github.com/symfony/translation-contracts.git",
  7429. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7430. },
  7431. "dist": {
  7432. "type": "zip",
  7433. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7434. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7435. "shasum": ""
  7436. },
  7437. "require": {
  7438. "php": ">=8.1"
  7439. },
  7440. "type": "library",
  7441. "extra": {
  7442. "branch-alias": {
  7443. "dev-main": "3.5-dev"
  7444. },
  7445. "thanks": {
  7446. "name": "symfony/contracts",
  7447. "url": "https://github.com/symfony/contracts"
  7448. }
  7449. },
  7450. "autoload": {
  7451. "psr-4": {
  7452. "Symfony\\Contracts\\Translation\\": ""
  7453. },
  7454. "exclude-from-classmap": [
  7455. "/Test/"
  7456. ]
  7457. },
  7458. "notification-url": "https://packagist.org/downloads/",
  7459. "license": [
  7460. "MIT"
  7461. ],
  7462. "authors": [
  7463. {
  7464. "name": "Nicolas Grekas",
  7465. "email": "p@tchwork.com"
  7466. },
  7467. {
  7468. "name": "Symfony Community",
  7469. "homepage": "https://symfony.com/contributors"
  7470. }
  7471. ],
  7472. "description": "Generic abstractions related to translation",
  7473. "homepage": "https://symfony.com",
  7474. "keywords": [
  7475. "abstractions",
  7476. "contracts",
  7477. "decoupling",
  7478. "interfaces",
  7479. "interoperability",
  7480. "standards"
  7481. ],
  7482. "support": {
  7483. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7484. },
  7485. "funding": [
  7486. {
  7487. "url": "https://symfony.com/sponsor",
  7488. "type": "custom"
  7489. },
  7490. {
  7491. "url": "https://github.com/fabpot",
  7492. "type": "github"
  7493. },
  7494. {
  7495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7496. "type": "tidelift"
  7497. }
  7498. ],
  7499. "time": "2024-04-18T09:32:20+00:00"
  7500. },
  7501. {
  7502. "name": "symfony/uid",
  7503. "version": "v7.1.6",
  7504. "source": {
  7505. "type": "git",
  7506. "url": "https://github.com/symfony/uid.git",
  7507. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917"
  7508. },
  7509. "dist": {
  7510. "type": "zip",
  7511. "url": "https://api.github.com/repos/symfony/uid/zipball/65befb3bb2d503bbffbd08c815aa38b472999917",
  7512. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917",
  7513. "shasum": ""
  7514. },
  7515. "require": {
  7516. "php": ">=8.2",
  7517. "symfony/polyfill-uuid": "^1.15"
  7518. },
  7519. "require-dev": {
  7520. "symfony/console": "^6.4|^7.0"
  7521. },
  7522. "type": "library",
  7523. "autoload": {
  7524. "psr-4": {
  7525. "Symfony\\Component\\Uid\\": ""
  7526. },
  7527. "exclude-from-classmap": [
  7528. "/Tests/"
  7529. ]
  7530. },
  7531. "notification-url": "https://packagist.org/downloads/",
  7532. "license": [
  7533. "MIT"
  7534. ],
  7535. "authors": [
  7536. {
  7537. "name": "Grégoire Pineau",
  7538. "email": "lyrixx@lyrixx.info"
  7539. },
  7540. {
  7541. "name": "Nicolas Grekas",
  7542. "email": "p@tchwork.com"
  7543. },
  7544. {
  7545. "name": "Symfony Community",
  7546. "homepage": "https://symfony.com/contributors"
  7547. }
  7548. ],
  7549. "description": "Provides an object-oriented API to generate and represent UIDs",
  7550. "homepage": "https://symfony.com",
  7551. "keywords": [
  7552. "UID",
  7553. "ulid",
  7554. "uuid"
  7555. ],
  7556. "support": {
  7557. "source": "https://github.com/symfony/uid/tree/v7.1.6"
  7558. },
  7559. "funding": [
  7560. {
  7561. "url": "https://symfony.com/sponsor",
  7562. "type": "custom"
  7563. },
  7564. {
  7565. "url": "https://github.com/fabpot",
  7566. "type": "github"
  7567. },
  7568. {
  7569. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7570. "type": "tidelift"
  7571. }
  7572. ],
  7573. "time": "2024-09-25T14:20:29+00:00"
  7574. },
  7575. {
  7576. "name": "symfony/var-dumper",
  7577. "version": "v7.1.8",
  7578. "source": {
  7579. "type": "git",
  7580. "url": "https://github.com/symfony/var-dumper.git",
  7581. "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8"
  7582. },
  7583. "dist": {
  7584. "type": "zip",
  7585. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
  7586. "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
  7587. "shasum": ""
  7588. },
  7589. "require": {
  7590. "php": ">=8.2",
  7591. "symfony/polyfill-mbstring": "~1.0"
  7592. },
  7593. "conflict": {
  7594. "symfony/console": "<6.4"
  7595. },
  7596. "require-dev": {
  7597. "ext-iconv": "*",
  7598. "symfony/console": "^6.4|^7.0",
  7599. "symfony/http-kernel": "^6.4|^7.0",
  7600. "symfony/process": "^6.4|^7.0",
  7601. "symfony/uid": "^6.4|^7.0",
  7602. "twig/twig": "^3.0.4"
  7603. },
  7604. "bin": [
  7605. "Resources/bin/var-dump-server"
  7606. ],
  7607. "type": "library",
  7608. "autoload": {
  7609. "files": [
  7610. "Resources/functions/dump.php"
  7611. ],
  7612. "psr-4": {
  7613. "Symfony\\Component\\VarDumper\\": ""
  7614. },
  7615. "exclude-from-classmap": [
  7616. "/Tests/"
  7617. ]
  7618. },
  7619. "notification-url": "https://packagist.org/downloads/",
  7620. "license": [
  7621. "MIT"
  7622. ],
  7623. "authors": [
  7624. {
  7625. "name": "Nicolas Grekas",
  7626. "email": "p@tchwork.com"
  7627. },
  7628. {
  7629. "name": "Symfony Community",
  7630. "homepage": "https://symfony.com/contributors"
  7631. }
  7632. ],
  7633. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7634. "homepage": "https://symfony.com",
  7635. "keywords": [
  7636. "debug",
  7637. "dump"
  7638. ],
  7639. "support": {
  7640. "source": "https://github.com/symfony/var-dumper/tree/v7.1.8"
  7641. },
  7642. "funding": [
  7643. {
  7644. "url": "https://symfony.com/sponsor",
  7645. "type": "custom"
  7646. },
  7647. {
  7648. "url": "https://github.com/fabpot",
  7649. "type": "github"
  7650. },
  7651. {
  7652. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7653. "type": "tidelift"
  7654. }
  7655. ],
  7656. "time": "2024-11-08T15:46:42+00:00"
  7657. },
  7658. {
  7659. "name": "symfony/var-exporter",
  7660. "version": "v7.1.6",
  7661. "source": {
  7662. "type": "git",
  7663. "url": "https://github.com/symfony/var-exporter.git",
  7664. "reference": "90173ef89c40e7c8c616653241048705f84130ef"
  7665. },
  7666. "dist": {
  7667. "type": "zip",
  7668. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/90173ef89c40e7c8c616653241048705f84130ef",
  7669. "reference": "90173ef89c40e7c8c616653241048705f84130ef",
  7670. "shasum": ""
  7671. },
  7672. "require": {
  7673. "php": ">=8.2"
  7674. },
  7675. "require-dev": {
  7676. "symfony/property-access": "^6.4|^7.0",
  7677. "symfony/serializer": "^6.4|^7.0",
  7678. "symfony/var-dumper": "^6.4|^7.0"
  7679. },
  7680. "type": "library",
  7681. "autoload": {
  7682. "psr-4": {
  7683. "Symfony\\Component\\VarExporter\\": ""
  7684. },
  7685. "exclude-from-classmap": [
  7686. "/Tests/"
  7687. ]
  7688. },
  7689. "notification-url": "https://packagist.org/downloads/",
  7690. "license": [
  7691. "MIT"
  7692. ],
  7693. "authors": [
  7694. {
  7695. "name": "Nicolas Grekas",
  7696. "email": "p@tchwork.com"
  7697. },
  7698. {
  7699. "name": "Symfony Community",
  7700. "homepage": "https://symfony.com/contributors"
  7701. }
  7702. ],
  7703. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7704. "homepage": "https://symfony.com",
  7705. "keywords": [
  7706. "clone",
  7707. "construct",
  7708. "export",
  7709. "hydrate",
  7710. "instantiate",
  7711. "lazy-loading",
  7712. "proxy",
  7713. "serialize"
  7714. ],
  7715. "support": {
  7716. "source": "https://github.com/symfony/var-exporter/tree/v7.1.6"
  7717. },
  7718. "funding": [
  7719. {
  7720. "url": "https://symfony.com/sponsor",
  7721. "type": "custom"
  7722. },
  7723. {
  7724. "url": "https://github.com/fabpot",
  7725. "type": "github"
  7726. },
  7727. {
  7728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7729. "type": "tidelift"
  7730. }
  7731. ],
  7732. "time": "2024-09-25T14:20:29+00:00"
  7733. },
  7734. {
  7735. "name": "symfony/yaml",
  7736. "version": "v7.1.6",
  7737. "source": {
  7738. "type": "git",
  7739. "url": "https://github.com/symfony/yaml.git",
  7740. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671"
  7741. },
  7742. "dist": {
  7743. "type": "zip",
  7744. "url": "https://api.github.com/repos/symfony/yaml/zipball/3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  7745. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  7746. "shasum": ""
  7747. },
  7748. "require": {
  7749. "php": ">=8.2",
  7750. "symfony/polyfill-ctype": "^1.8"
  7751. },
  7752. "conflict": {
  7753. "symfony/console": "<6.4"
  7754. },
  7755. "require-dev": {
  7756. "symfony/console": "^6.4|^7.0"
  7757. },
  7758. "bin": [
  7759. "Resources/bin/yaml-lint"
  7760. ],
  7761. "type": "library",
  7762. "autoload": {
  7763. "psr-4": {
  7764. "Symfony\\Component\\Yaml\\": ""
  7765. },
  7766. "exclude-from-classmap": [
  7767. "/Tests/"
  7768. ]
  7769. },
  7770. "notification-url": "https://packagist.org/downloads/",
  7771. "license": [
  7772. "MIT"
  7773. ],
  7774. "authors": [
  7775. {
  7776. "name": "Fabien Potencier",
  7777. "email": "fabien@symfony.com"
  7778. },
  7779. {
  7780. "name": "Symfony Community",
  7781. "homepage": "https://symfony.com/contributors"
  7782. }
  7783. ],
  7784. "description": "Loads and dumps YAML files",
  7785. "homepage": "https://symfony.com",
  7786. "support": {
  7787. "source": "https://github.com/symfony/yaml/tree/v7.1.6"
  7788. },
  7789. "funding": [
  7790. {
  7791. "url": "https://symfony.com/sponsor",
  7792. "type": "custom"
  7793. },
  7794. {
  7795. "url": "https://github.com/fabpot",
  7796. "type": "github"
  7797. },
  7798. {
  7799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7800. "type": "tidelift"
  7801. }
  7802. ],
  7803. "time": "2024-09-25T14:20:29+00:00"
  7804. },
  7805. {
  7806. "name": "thenorthmemory/xml",
  7807. "version": "1.1.1",
  7808. "source": {
  7809. "type": "git",
  7810. "url": "https://github.com/TheNorthMemory/xml.git",
  7811. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb"
  7812. },
  7813. "dist": {
  7814. "type": "zip",
  7815. "url": "https://api.github.com/repos/TheNorthMemory/xml/zipball/6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  7816. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  7817. "shasum": ""
  7818. },
  7819. "require": {
  7820. "ext-libxml": "*",
  7821. "ext-simplexml": "*",
  7822. "php": ">=7.1.2"
  7823. },
  7824. "require-dev": {
  7825. "phpstan/phpstan": "^0.12.89 || ^1.0",
  7826. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  7827. },
  7828. "type": "library",
  7829. "autoload": {
  7830. "psr-4": {
  7831. "TheNorthMemory\\Xml\\": "src/"
  7832. }
  7833. },
  7834. "notification-url": "https://packagist.org/downloads/",
  7835. "license": [
  7836. "Apache-2.0"
  7837. ],
  7838. "authors": [
  7839. {
  7840. "name": "James ZHANG",
  7841. "homepage": "https://github.com/TheNorthMemory"
  7842. }
  7843. ],
  7844. "description": "A wrapper of the XML parser and builder",
  7845. "homepage": "https://github.com/TheNorthMemory/xml",
  7846. "keywords": [
  7847. "xml-builder",
  7848. "xml-parser"
  7849. ],
  7850. "support": {
  7851. "issues": "https://github.com/TheNorthMemory/xml/issues",
  7852. "source": "https://github.com/TheNorthMemory/xml/tree/1.1.1"
  7853. },
  7854. "time": "2023-01-15T06:01:13+00:00"
  7855. },
  7856. {
  7857. "name": "tijsverkoyen/css-to-inline-styles",
  7858. "version": "v2.2.7",
  7859. "source": {
  7860. "type": "git",
  7861. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7862. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  7863. },
  7864. "dist": {
  7865. "type": "zip",
  7866. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7867. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7868. "shasum": ""
  7869. },
  7870. "require": {
  7871. "ext-dom": "*",
  7872. "ext-libxml": "*",
  7873. "php": "^5.5 || ^7.0 || ^8.0",
  7874. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  7875. },
  7876. "require-dev": {
  7877. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7878. },
  7879. "type": "library",
  7880. "extra": {
  7881. "branch-alias": {
  7882. "dev-master": "2.2.x-dev"
  7883. }
  7884. },
  7885. "autoload": {
  7886. "psr-4": {
  7887. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7888. }
  7889. },
  7890. "notification-url": "https://packagist.org/downloads/",
  7891. "license": [
  7892. "BSD-3-Clause"
  7893. ],
  7894. "authors": [
  7895. {
  7896. "name": "Tijs Verkoyen",
  7897. "email": "css_to_inline_styles@verkoyen.eu",
  7898. "role": "Developer"
  7899. }
  7900. ],
  7901. "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.",
  7902. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7903. "support": {
  7904. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7905. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  7906. },
  7907. "time": "2023-12-08T13:03:43+00:00"
  7908. },
  7909. {
  7910. "name": "vlucas/phpdotenv",
  7911. "version": "v5.6.1",
  7912. "source": {
  7913. "type": "git",
  7914. "url": "https://github.com/vlucas/phpdotenv.git",
  7915. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7916. },
  7917. "dist": {
  7918. "type": "zip",
  7919. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7920. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7921. "shasum": ""
  7922. },
  7923. "require": {
  7924. "ext-pcre": "*",
  7925. "graham-campbell/result-type": "^1.1.3",
  7926. "php": "^7.2.5 || ^8.0",
  7927. "phpoption/phpoption": "^1.9.3",
  7928. "symfony/polyfill-ctype": "^1.24",
  7929. "symfony/polyfill-mbstring": "^1.24",
  7930. "symfony/polyfill-php80": "^1.24"
  7931. },
  7932. "require-dev": {
  7933. "bamarni/composer-bin-plugin": "^1.8.2",
  7934. "ext-filter": "*",
  7935. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7936. },
  7937. "suggest": {
  7938. "ext-filter": "Required to use the boolean validator."
  7939. },
  7940. "type": "library",
  7941. "extra": {
  7942. "bamarni-bin": {
  7943. "bin-links": true,
  7944. "forward-command": false
  7945. },
  7946. "branch-alias": {
  7947. "dev-master": "5.6-dev"
  7948. }
  7949. },
  7950. "autoload": {
  7951. "psr-4": {
  7952. "Dotenv\\": "src/"
  7953. }
  7954. },
  7955. "notification-url": "https://packagist.org/downloads/",
  7956. "license": [
  7957. "BSD-3-Clause"
  7958. ],
  7959. "authors": [
  7960. {
  7961. "name": "Graham Campbell",
  7962. "email": "hello@gjcampbell.co.uk",
  7963. "homepage": "https://github.com/GrahamCampbell"
  7964. },
  7965. {
  7966. "name": "Vance Lucas",
  7967. "email": "vance@vancelucas.com",
  7968. "homepage": "https://github.com/vlucas"
  7969. }
  7970. ],
  7971. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7972. "keywords": [
  7973. "dotenv",
  7974. "env",
  7975. "environment"
  7976. ],
  7977. "support": {
  7978. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7979. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7980. },
  7981. "funding": [
  7982. {
  7983. "url": "https://github.com/GrahamCampbell",
  7984. "type": "github"
  7985. },
  7986. {
  7987. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7988. "type": "tidelift"
  7989. }
  7990. ],
  7991. "time": "2024-07-20T21:52:34+00:00"
  7992. },
  7993. {
  7994. "name": "voku/portable-ascii",
  7995. "version": "2.0.1",
  7996. "source": {
  7997. "type": "git",
  7998. "url": "https://github.com/voku/portable-ascii.git",
  7999. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  8000. },
  8001. "dist": {
  8002. "type": "zip",
  8003. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  8004. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  8005. "shasum": ""
  8006. },
  8007. "require": {
  8008. "php": ">=7.0.0"
  8009. },
  8010. "require-dev": {
  8011. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8012. },
  8013. "suggest": {
  8014. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8015. },
  8016. "type": "library",
  8017. "autoload": {
  8018. "psr-4": {
  8019. "voku\\": "src/voku/"
  8020. }
  8021. },
  8022. "notification-url": "https://packagist.org/downloads/",
  8023. "license": [
  8024. "MIT"
  8025. ],
  8026. "authors": [
  8027. {
  8028. "name": "Lars Moelleken",
  8029. "homepage": "http://www.moelleken.org/"
  8030. }
  8031. ],
  8032. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8033. "homepage": "https://github.com/voku/portable-ascii",
  8034. "keywords": [
  8035. "ascii",
  8036. "clean",
  8037. "php"
  8038. ],
  8039. "support": {
  8040. "issues": "https://github.com/voku/portable-ascii/issues",
  8041. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  8042. },
  8043. "funding": [
  8044. {
  8045. "url": "https://www.paypal.me/moelleken",
  8046. "type": "custom"
  8047. },
  8048. {
  8049. "url": "https://github.com/voku",
  8050. "type": "github"
  8051. },
  8052. {
  8053. "url": "https://opencollective.com/portable-ascii",
  8054. "type": "open_collective"
  8055. },
  8056. {
  8057. "url": "https://www.patreon.com/voku",
  8058. "type": "patreon"
  8059. },
  8060. {
  8061. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8062. "type": "tidelift"
  8063. }
  8064. ],
  8065. "time": "2022-03-08T17:03:00+00:00"
  8066. },
  8067. {
  8068. "name": "w7corp/easywechat",
  8069. "version": "6.15.5",
  8070. "source": {
  8071. "type": "git",
  8072. "url": "https://github.com/w7corp/easywechat.git",
  8073. "reference": "d643084ba958ba8ca077e82b805748dfeb5aa44d"
  8074. },
  8075. "dist": {
  8076. "type": "zip",
  8077. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/d643084ba958ba8ca077e82b805748dfeb5aa44d",
  8078. "reference": "d643084ba958ba8ca077e82b805748dfeb5aa44d",
  8079. "shasum": ""
  8080. },
  8081. "require": {
  8082. "ext-curl": "*",
  8083. "ext-fileinfo": "*",
  8084. "ext-libxml": "*",
  8085. "ext-openssl": "*",
  8086. "ext-simplexml": "*",
  8087. "ext-sodium": "*",
  8088. "nyholm/psr7": "^1.5",
  8089. "nyholm/psr7-server": "^1.0",
  8090. "overtrue/socialite": "^3.5.4|^4.0.1",
  8091. "php": ">=8.0.2",
  8092. "psr/http-client": "^1.0",
  8093. "psr/simple-cache": "^1.0|^2.0|^3.0",
  8094. "symfony/cache": "^5.4|^6.0|^7.0",
  8095. "symfony/http-client": "^5.4|^6.0|^7.0",
  8096. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  8097. "symfony/mime": "^5.4|^6.0|^7.0",
  8098. "symfony/polyfill-php81": "^1.25",
  8099. "symfony/psr-http-message-bridge": "^2.1.2|^6.4.0|^7.1",
  8100. "thenorthmemory/xml": "^1.0"
  8101. },
  8102. "require-dev": {
  8103. "jetbrains/phpstorm-attributes": "^1.0",
  8104. "laravel/pint": "^1.2",
  8105. "mikey179/vfsstream": "^1.6",
  8106. "mockery/mockery": "^1.4.4",
  8107. "phpstan/phpstan": "^1.0",
  8108. "phpunit/phpunit": "^9.5",
  8109. "symfony/var-dumper": "^5.2"
  8110. },
  8111. "type": "library",
  8112. "autoload": {
  8113. "psr-4": {
  8114. "EasyWeChat\\": "src/"
  8115. }
  8116. },
  8117. "notification-url": "https://packagist.org/downloads/",
  8118. "license": [
  8119. "MIT"
  8120. ],
  8121. "authors": [
  8122. {
  8123. "name": "overtrue",
  8124. "email": "anzhengchao@gmail.com"
  8125. }
  8126. ],
  8127. "description": "微信SDK",
  8128. "keywords": [
  8129. "easywechat",
  8130. "sdk",
  8131. "wechat",
  8132. "weixin",
  8133. "weixin-sdk"
  8134. ],
  8135. "support": {
  8136. "issues": "https://github.com/w7corp/easywechat/issues",
  8137. "source": "https://github.com/w7corp/easywechat/tree/6.15.5"
  8138. },
  8139. "funding": [
  8140. {
  8141. "url": "https://github.com/overtrue",
  8142. "type": "github"
  8143. }
  8144. ],
  8145. "time": "2024-11-15T04:34:15+00:00"
  8146. },
  8147. {
  8148. "name": "webmozart/assert",
  8149. "version": "1.11.0",
  8150. "source": {
  8151. "type": "git",
  8152. "url": "https://github.com/webmozarts/assert.git",
  8153. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8154. },
  8155. "dist": {
  8156. "type": "zip",
  8157. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8158. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8159. "shasum": ""
  8160. },
  8161. "require": {
  8162. "ext-ctype": "*",
  8163. "php": "^7.2 || ^8.0"
  8164. },
  8165. "conflict": {
  8166. "phpstan/phpstan": "<0.12.20",
  8167. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8168. },
  8169. "require-dev": {
  8170. "phpunit/phpunit": "^8.5.13"
  8171. },
  8172. "type": "library",
  8173. "extra": {
  8174. "branch-alias": {
  8175. "dev-master": "1.10-dev"
  8176. }
  8177. },
  8178. "autoload": {
  8179. "psr-4": {
  8180. "Webmozart\\Assert\\": "src/"
  8181. }
  8182. },
  8183. "notification-url": "https://packagist.org/downloads/",
  8184. "license": [
  8185. "MIT"
  8186. ],
  8187. "authors": [
  8188. {
  8189. "name": "Bernhard Schussek",
  8190. "email": "bschussek@gmail.com"
  8191. }
  8192. ],
  8193. "description": "Assertions to validate method input/output with nice error messages.",
  8194. "keywords": [
  8195. "assert",
  8196. "check",
  8197. "validate"
  8198. ],
  8199. "support": {
  8200. "issues": "https://github.com/webmozarts/assert/issues",
  8201. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8202. },
  8203. "time": "2022-06-03T18:03:27+00:00"
  8204. }
  8205. ],
  8206. "packages-dev": [
  8207. {
  8208. "name": "barryvdh/laravel-ide-helper",
  8209. "version": "v3.2.2",
  8210. "source": {
  8211. "type": "git",
  8212. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  8213. "reference": "07e3bd8796f3d1414801a03d3783f9d3ec9efc08"
  8214. },
  8215. "dist": {
  8216. "type": "zip",
  8217. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/07e3bd8796f3d1414801a03d3783f9d3ec9efc08",
  8218. "reference": "07e3bd8796f3d1414801a03d3783f9d3ec9efc08",
  8219. "shasum": ""
  8220. },
  8221. "require": {
  8222. "barryvdh/reflection-docblock": "^2.1.2",
  8223. "composer/class-map-generator": "^1.0",
  8224. "ext-json": "*",
  8225. "illuminate/console": "^11.15",
  8226. "illuminate/database": "^11.15",
  8227. "illuminate/filesystem": "^11.15",
  8228. "illuminate/support": "^11.15",
  8229. "nikic/php-parser": "^4.18 || ^5",
  8230. "php": "^8.2",
  8231. "phpdocumentor/type-resolver": "^1.1.0"
  8232. },
  8233. "require-dev": {
  8234. "ext-pdo_sqlite": "*",
  8235. "friendsofphp/php-cs-fixer": "^3",
  8236. "illuminate/config": "^11.15",
  8237. "illuminate/view": "^11.15",
  8238. "mockery/mockery": "^1.4",
  8239. "orchestra/testbench": "^9.2",
  8240. "phpunit/phpunit": "^10.5",
  8241. "spatie/phpunit-snapshot-assertions": "^4 || ^5",
  8242. "vimeo/psalm": "^5.4"
  8243. },
  8244. "suggest": {
  8245. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9|^10|^11)."
  8246. },
  8247. "type": "library",
  8248. "extra": {
  8249. "branch-alias": {
  8250. "dev-master": "3.2-dev"
  8251. },
  8252. "laravel": {
  8253. "providers": [
  8254. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  8255. ]
  8256. }
  8257. },
  8258. "autoload": {
  8259. "psr-4": {
  8260. "Barryvdh\\LaravelIdeHelper\\": "src"
  8261. }
  8262. },
  8263. "notification-url": "https://packagist.org/downloads/",
  8264. "license": [
  8265. "MIT"
  8266. ],
  8267. "authors": [
  8268. {
  8269. "name": "Barry vd. Heuvel",
  8270. "email": "barryvdh@gmail.com"
  8271. }
  8272. ],
  8273. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  8274. "keywords": [
  8275. "autocomplete",
  8276. "codeintel",
  8277. "helper",
  8278. "ide",
  8279. "laravel",
  8280. "netbeans",
  8281. "phpdoc",
  8282. "phpstorm",
  8283. "sublime"
  8284. ],
  8285. "support": {
  8286. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  8287. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v3.2.2"
  8288. },
  8289. "funding": [
  8290. {
  8291. "url": "https://fruitcake.nl",
  8292. "type": "custom"
  8293. },
  8294. {
  8295. "url": "https://github.com/barryvdh",
  8296. "type": "github"
  8297. }
  8298. ],
  8299. "time": "2024-10-29T14:00:16+00:00"
  8300. },
  8301. {
  8302. "name": "barryvdh/reflection-docblock",
  8303. "version": "v2.1.3",
  8304. "source": {
  8305. "type": "git",
  8306. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  8307. "reference": "c6fad15f7c878be21650c51e1f841bca7e49752e"
  8308. },
  8309. "dist": {
  8310. "type": "zip",
  8311. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/c6fad15f7c878be21650c51e1f841bca7e49752e",
  8312. "reference": "c6fad15f7c878be21650c51e1f841bca7e49752e",
  8313. "shasum": ""
  8314. },
  8315. "require": {
  8316. "php": ">=5.3.3"
  8317. },
  8318. "require-dev": {
  8319. "phpunit/phpunit": "^8.5.14|^9"
  8320. },
  8321. "suggest": {
  8322. "dflydev/markdown": "~1.0",
  8323. "erusev/parsedown": "~1.0"
  8324. },
  8325. "type": "library",
  8326. "extra": {
  8327. "branch-alias": {
  8328. "dev-master": "2.0.x-dev"
  8329. }
  8330. },
  8331. "autoload": {
  8332. "psr-0": {
  8333. "Barryvdh": [
  8334. "src/"
  8335. ]
  8336. }
  8337. },
  8338. "notification-url": "https://packagist.org/downloads/",
  8339. "license": [
  8340. "MIT"
  8341. ],
  8342. "authors": [
  8343. {
  8344. "name": "Mike van Riel",
  8345. "email": "mike.vanriel@naenius.com"
  8346. }
  8347. ],
  8348. "support": {
  8349. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.1.3"
  8350. },
  8351. "time": "2024-10-23T11:41:03+00:00"
  8352. },
  8353. {
  8354. "name": "composer/class-map-generator",
  8355. "version": "1.4.0",
  8356. "source": {
  8357. "type": "git",
  8358. "url": "https://github.com/composer/class-map-generator.git",
  8359. "reference": "98bbf6780e56e0fd2404fe4b82eb665a0f93b783"
  8360. },
  8361. "dist": {
  8362. "type": "zip",
  8363. "url": "https://api.github.com/repos/composer/class-map-generator/zipball/98bbf6780e56e0fd2404fe4b82eb665a0f93b783",
  8364. "reference": "98bbf6780e56e0fd2404fe4b82eb665a0f93b783",
  8365. "shasum": ""
  8366. },
  8367. "require": {
  8368. "composer/pcre": "^2.1 || ^3.1",
  8369. "php": "^7.2 || ^8.0",
  8370. "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
  8371. },
  8372. "require-dev": {
  8373. "phpstan/phpstan": "^1.6",
  8374. "phpstan/phpstan-deprecation-rules": "^1",
  8375. "phpstan/phpstan-phpunit": "^1",
  8376. "phpstan/phpstan-strict-rules": "^1.1",
  8377. "phpunit/phpunit": "^8",
  8378. "symfony/filesystem": "^5.4 || ^6"
  8379. },
  8380. "type": "library",
  8381. "extra": {
  8382. "branch-alias": {
  8383. "dev-main": "1.x-dev"
  8384. }
  8385. },
  8386. "autoload": {
  8387. "psr-4": {
  8388. "Composer\\ClassMapGenerator\\": "src"
  8389. }
  8390. },
  8391. "notification-url": "https://packagist.org/downloads/",
  8392. "license": [
  8393. "MIT"
  8394. ],
  8395. "authors": [
  8396. {
  8397. "name": "Jordi Boggiano",
  8398. "email": "j.boggiano@seld.be",
  8399. "homepage": "https://seld.be"
  8400. }
  8401. ],
  8402. "description": "Utilities to scan PHP code and generate class maps.",
  8403. "keywords": [
  8404. "classmap"
  8405. ],
  8406. "support": {
  8407. "issues": "https://github.com/composer/class-map-generator/issues",
  8408. "source": "https://github.com/composer/class-map-generator/tree/1.4.0"
  8409. },
  8410. "funding": [
  8411. {
  8412. "url": "https://packagist.com",
  8413. "type": "custom"
  8414. },
  8415. {
  8416. "url": "https://github.com/composer",
  8417. "type": "github"
  8418. },
  8419. {
  8420. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8421. "type": "tidelift"
  8422. }
  8423. ],
  8424. "time": "2024-10-03T18:14:00+00:00"
  8425. },
  8426. {
  8427. "name": "composer/pcre",
  8428. "version": "3.3.2",
  8429. "source": {
  8430. "type": "git",
  8431. "url": "https://github.com/composer/pcre.git",
  8432. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8433. },
  8434. "dist": {
  8435. "type": "zip",
  8436. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8437. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8438. "shasum": ""
  8439. },
  8440. "require": {
  8441. "php": "^7.4 || ^8.0"
  8442. },
  8443. "conflict": {
  8444. "phpstan/phpstan": "<1.11.10"
  8445. },
  8446. "require-dev": {
  8447. "phpstan/phpstan": "^1.12 || ^2",
  8448. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8449. "phpunit/phpunit": "^8 || ^9"
  8450. },
  8451. "type": "library",
  8452. "extra": {
  8453. "branch-alias": {
  8454. "dev-main": "3.x-dev"
  8455. },
  8456. "phpstan": {
  8457. "includes": [
  8458. "extension.neon"
  8459. ]
  8460. }
  8461. },
  8462. "autoload": {
  8463. "psr-4": {
  8464. "Composer\\Pcre\\": "src"
  8465. }
  8466. },
  8467. "notification-url": "https://packagist.org/downloads/",
  8468. "license": [
  8469. "MIT"
  8470. ],
  8471. "authors": [
  8472. {
  8473. "name": "Jordi Boggiano",
  8474. "email": "j.boggiano@seld.be",
  8475. "homepage": "http://seld.be"
  8476. }
  8477. ],
  8478. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8479. "keywords": [
  8480. "PCRE",
  8481. "preg",
  8482. "regex",
  8483. "regular expression"
  8484. ],
  8485. "support": {
  8486. "issues": "https://github.com/composer/pcre/issues",
  8487. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8488. },
  8489. "funding": [
  8490. {
  8491. "url": "https://packagist.com",
  8492. "type": "custom"
  8493. },
  8494. {
  8495. "url": "https://github.com/composer",
  8496. "type": "github"
  8497. },
  8498. {
  8499. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8500. "type": "tidelift"
  8501. }
  8502. ],
  8503. "time": "2024-11-12T16:29:46+00:00"
  8504. },
  8505. {
  8506. "name": "doctrine/deprecations",
  8507. "version": "1.1.3",
  8508. "source": {
  8509. "type": "git",
  8510. "url": "https://github.com/doctrine/deprecations.git",
  8511. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  8512. },
  8513. "dist": {
  8514. "type": "zip",
  8515. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  8516. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  8517. "shasum": ""
  8518. },
  8519. "require": {
  8520. "php": "^7.1 || ^8.0"
  8521. },
  8522. "require-dev": {
  8523. "doctrine/coding-standard": "^9",
  8524. "phpstan/phpstan": "1.4.10 || 1.10.15",
  8525. "phpstan/phpstan-phpunit": "^1.0",
  8526. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8527. "psalm/plugin-phpunit": "0.18.4",
  8528. "psr/log": "^1 || ^2 || ^3",
  8529. "vimeo/psalm": "4.30.0 || 5.12.0"
  8530. },
  8531. "suggest": {
  8532. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  8533. },
  8534. "type": "library",
  8535. "autoload": {
  8536. "psr-4": {
  8537. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  8538. }
  8539. },
  8540. "notification-url": "https://packagist.org/downloads/",
  8541. "license": [
  8542. "MIT"
  8543. ],
  8544. "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.",
  8545. "homepage": "https://www.doctrine-project.org/",
  8546. "support": {
  8547. "issues": "https://github.com/doctrine/deprecations/issues",
  8548. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  8549. },
  8550. "time": "2024-01-30T19:34:25+00:00"
  8551. },
  8552. {
  8553. "name": "hamcrest/hamcrest-php",
  8554. "version": "v2.0.1",
  8555. "source": {
  8556. "type": "git",
  8557. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8558. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8559. },
  8560. "dist": {
  8561. "type": "zip",
  8562. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8563. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8564. "shasum": ""
  8565. },
  8566. "require": {
  8567. "php": "^5.3|^7.0|^8.0"
  8568. },
  8569. "replace": {
  8570. "cordoval/hamcrest-php": "*",
  8571. "davedevelopment/hamcrest-php": "*",
  8572. "kodova/hamcrest-php": "*"
  8573. },
  8574. "require-dev": {
  8575. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8576. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8577. },
  8578. "type": "library",
  8579. "extra": {
  8580. "branch-alias": {
  8581. "dev-master": "2.1-dev"
  8582. }
  8583. },
  8584. "autoload": {
  8585. "classmap": [
  8586. "hamcrest"
  8587. ]
  8588. },
  8589. "notification-url": "https://packagist.org/downloads/",
  8590. "license": [
  8591. "BSD-3-Clause"
  8592. ],
  8593. "description": "This is the PHP port of Hamcrest Matchers",
  8594. "keywords": [
  8595. "test"
  8596. ],
  8597. "support": {
  8598. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8599. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8600. },
  8601. "time": "2020-07-09T08:09:16+00:00"
  8602. },
  8603. {
  8604. "name": "laravel/pail",
  8605. "version": "v1.2.0",
  8606. "source": {
  8607. "type": "git",
  8608. "url": "https://github.com/laravel/pail.git",
  8609. "reference": "085a2306b520c3896afa361c25704e5fa3c27bf0"
  8610. },
  8611. "dist": {
  8612. "type": "zip",
  8613. "url": "https://api.github.com/repos/laravel/pail/zipball/085a2306b520c3896afa361c25704e5fa3c27bf0",
  8614. "reference": "085a2306b520c3896afa361c25704e5fa3c27bf0",
  8615. "shasum": ""
  8616. },
  8617. "require": {
  8618. "ext-mbstring": "*",
  8619. "illuminate/console": "^10.24|^11.0",
  8620. "illuminate/contracts": "^10.24|^11.0",
  8621. "illuminate/log": "^10.24|^11.0",
  8622. "illuminate/process": "^10.24|^11.0",
  8623. "illuminate/support": "^10.24|^11.0",
  8624. "nunomaduro/termwind": "^1.15|^2.0",
  8625. "php": "^8.2",
  8626. "symfony/console": "^6.0|^7.0"
  8627. },
  8628. "require-dev": {
  8629. "laravel/pint": "^1.13",
  8630. "orchestra/testbench": "^8.12|^9.0",
  8631. "pestphp/pest": "^2.20",
  8632. "pestphp/pest-plugin-type-coverage": "^2.3",
  8633. "phpstan/phpstan": "^1.10",
  8634. "symfony/var-dumper": "^6.3|^7.0"
  8635. },
  8636. "type": "library",
  8637. "extra": {
  8638. "branch-alias": {
  8639. "dev-main": "1.x-dev"
  8640. },
  8641. "laravel": {
  8642. "providers": [
  8643. "Laravel\\Pail\\PailServiceProvider"
  8644. ]
  8645. }
  8646. },
  8647. "autoload": {
  8648. "psr-4": {
  8649. "Laravel\\Pail\\": "src/"
  8650. }
  8651. },
  8652. "notification-url": "https://packagist.org/downloads/",
  8653. "license": [
  8654. "MIT"
  8655. ],
  8656. "authors": [
  8657. {
  8658. "name": "Taylor Otwell",
  8659. "email": "taylor@laravel.com"
  8660. },
  8661. {
  8662. "name": "Nuno Maduro",
  8663. "email": "enunomaduro@gmail.com"
  8664. }
  8665. ],
  8666. "description": "Easily delve into your Laravel application's log files directly from the command line.",
  8667. "homepage": "https://github.com/laravel/pail",
  8668. "keywords": [
  8669. "laravel",
  8670. "logs",
  8671. "php",
  8672. "tail"
  8673. ],
  8674. "support": {
  8675. "issues": "https://github.com/laravel/pail/issues",
  8676. "source": "https://github.com/laravel/pail"
  8677. },
  8678. "time": "2024-10-21T13:59:30+00:00"
  8679. },
  8680. {
  8681. "name": "laravel/pint",
  8682. "version": "v1.18.1",
  8683. "source": {
  8684. "type": "git",
  8685. "url": "https://github.com/laravel/pint.git",
  8686. "reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9"
  8687. },
  8688. "dist": {
  8689. "type": "zip",
  8690. "url": "https://api.github.com/repos/laravel/pint/zipball/35c00c05ec43e6b46d295efc0f4386ceb30d50d9",
  8691. "reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9",
  8692. "shasum": ""
  8693. },
  8694. "require": {
  8695. "ext-json": "*",
  8696. "ext-mbstring": "*",
  8697. "ext-tokenizer": "*",
  8698. "ext-xml": "*",
  8699. "php": "^8.1.0"
  8700. },
  8701. "require-dev": {
  8702. "friendsofphp/php-cs-fixer": "^3.64.0",
  8703. "illuminate/view": "^10.48.20",
  8704. "larastan/larastan": "^2.9.8",
  8705. "laravel-zero/framework": "^10.4.0",
  8706. "mockery/mockery": "^1.6.12",
  8707. "nunomaduro/termwind": "^1.15.1",
  8708. "pestphp/pest": "^2.35.1"
  8709. },
  8710. "bin": [
  8711. "builds/pint"
  8712. ],
  8713. "type": "project",
  8714. "autoload": {
  8715. "psr-4": {
  8716. "App\\": "app/",
  8717. "Database\\Seeders\\": "database/seeders/",
  8718. "Database\\Factories\\": "database/factories/"
  8719. }
  8720. },
  8721. "notification-url": "https://packagist.org/downloads/",
  8722. "license": [
  8723. "MIT"
  8724. ],
  8725. "authors": [
  8726. {
  8727. "name": "Nuno Maduro",
  8728. "email": "enunomaduro@gmail.com"
  8729. }
  8730. ],
  8731. "description": "An opinionated code formatter for PHP.",
  8732. "homepage": "https://laravel.com",
  8733. "keywords": [
  8734. "format",
  8735. "formatter",
  8736. "lint",
  8737. "linter",
  8738. "php"
  8739. ],
  8740. "support": {
  8741. "issues": "https://github.com/laravel/pint/issues",
  8742. "source": "https://github.com/laravel/pint"
  8743. },
  8744. "time": "2024-09-24T17:22:50+00:00"
  8745. },
  8746. {
  8747. "name": "laravel/sail",
  8748. "version": "v1.37.1",
  8749. "source": {
  8750. "type": "git",
  8751. "url": "https://github.com/laravel/sail.git",
  8752. "reference": "7efa151ea0d16f48233d6a6cd69f81270acc6e93"
  8753. },
  8754. "dist": {
  8755. "type": "zip",
  8756. "url": "https://api.github.com/repos/laravel/sail/zipball/7efa151ea0d16f48233d6a6cd69f81270acc6e93",
  8757. "reference": "7efa151ea0d16f48233d6a6cd69f81270acc6e93",
  8758. "shasum": ""
  8759. },
  8760. "require": {
  8761. "illuminate/console": "^9.52.16|^10.0|^11.0",
  8762. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  8763. "illuminate/support": "^9.52.16|^10.0|^11.0",
  8764. "php": "^8.0",
  8765. "symfony/console": "^6.0|^7.0",
  8766. "symfony/yaml": "^6.0|^7.0"
  8767. },
  8768. "require-dev": {
  8769. "orchestra/testbench": "^7.0|^8.0|^9.0",
  8770. "phpstan/phpstan": "^1.10"
  8771. },
  8772. "bin": [
  8773. "bin/sail"
  8774. ],
  8775. "type": "library",
  8776. "extra": {
  8777. "laravel": {
  8778. "providers": [
  8779. "Laravel\\Sail\\SailServiceProvider"
  8780. ]
  8781. }
  8782. },
  8783. "autoload": {
  8784. "psr-4": {
  8785. "Laravel\\Sail\\": "src/"
  8786. }
  8787. },
  8788. "notification-url": "https://packagist.org/downloads/",
  8789. "license": [
  8790. "MIT"
  8791. ],
  8792. "authors": [
  8793. {
  8794. "name": "Taylor Otwell",
  8795. "email": "taylor@laravel.com"
  8796. }
  8797. ],
  8798. "description": "Docker files for running a basic Laravel application.",
  8799. "keywords": [
  8800. "docker",
  8801. "laravel"
  8802. ],
  8803. "support": {
  8804. "issues": "https://github.com/laravel/sail/issues",
  8805. "source": "https://github.com/laravel/sail"
  8806. },
  8807. "time": "2024-10-29T20:18:14+00:00"
  8808. },
  8809. {
  8810. "name": "mockery/mockery",
  8811. "version": "1.6.12",
  8812. "source": {
  8813. "type": "git",
  8814. "url": "https://github.com/mockery/mockery.git",
  8815. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8816. },
  8817. "dist": {
  8818. "type": "zip",
  8819. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8820. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8821. "shasum": ""
  8822. },
  8823. "require": {
  8824. "hamcrest/hamcrest-php": "^2.0.1",
  8825. "lib-pcre": ">=7.0",
  8826. "php": ">=7.3"
  8827. },
  8828. "conflict": {
  8829. "phpunit/phpunit": "<8.0"
  8830. },
  8831. "require-dev": {
  8832. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8833. "symplify/easy-coding-standard": "^12.1.14"
  8834. },
  8835. "type": "library",
  8836. "autoload": {
  8837. "files": [
  8838. "library/helpers.php",
  8839. "library/Mockery.php"
  8840. ],
  8841. "psr-4": {
  8842. "Mockery\\": "library/Mockery"
  8843. }
  8844. },
  8845. "notification-url": "https://packagist.org/downloads/",
  8846. "license": [
  8847. "BSD-3-Clause"
  8848. ],
  8849. "authors": [
  8850. {
  8851. "name": "Pádraic Brady",
  8852. "email": "padraic.brady@gmail.com",
  8853. "homepage": "https://github.com/padraic",
  8854. "role": "Author"
  8855. },
  8856. {
  8857. "name": "Dave Marshall",
  8858. "email": "dave.marshall@atstsolutions.co.uk",
  8859. "homepage": "https://davedevelopment.co.uk",
  8860. "role": "Developer"
  8861. },
  8862. {
  8863. "name": "Nathanael Esayeas",
  8864. "email": "nathanael.esayeas@protonmail.com",
  8865. "homepage": "https://github.com/ghostwriter",
  8866. "role": "Lead Developer"
  8867. }
  8868. ],
  8869. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8870. "homepage": "https://github.com/mockery/mockery",
  8871. "keywords": [
  8872. "BDD",
  8873. "TDD",
  8874. "library",
  8875. "mock",
  8876. "mock objects",
  8877. "mockery",
  8878. "stub",
  8879. "test",
  8880. "test double",
  8881. "testing"
  8882. ],
  8883. "support": {
  8884. "docs": "https://docs.mockery.io/",
  8885. "issues": "https://github.com/mockery/mockery/issues",
  8886. "rss": "https://github.com/mockery/mockery/releases.atom",
  8887. "security": "https://github.com/mockery/mockery/security/advisories",
  8888. "source": "https://github.com/mockery/mockery"
  8889. },
  8890. "time": "2024-05-16T03:13:13+00:00"
  8891. },
  8892. {
  8893. "name": "myclabs/deep-copy",
  8894. "version": "1.12.0",
  8895. "source": {
  8896. "type": "git",
  8897. "url": "https://github.com/myclabs/DeepCopy.git",
  8898. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  8899. },
  8900. "dist": {
  8901. "type": "zip",
  8902. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8903. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8904. "shasum": ""
  8905. },
  8906. "require": {
  8907. "php": "^7.1 || ^8.0"
  8908. },
  8909. "conflict": {
  8910. "doctrine/collections": "<1.6.8",
  8911. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8912. },
  8913. "require-dev": {
  8914. "doctrine/collections": "^1.6.8",
  8915. "doctrine/common": "^2.13.3 || ^3.2.2",
  8916. "phpspec/prophecy": "^1.10",
  8917. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8918. },
  8919. "type": "library",
  8920. "autoload": {
  8921. "files": [
  8922. "src/DeepCopy/deep_copy.php"
  8923. ],
  8924. "psr-4": {
  8925. "DeepCopy\\": "src/DeepCopy/"
  8926. }
  8927. },
  8928. "notification-url": "https://packagist.org/downloads/",
  8929. "license": [
  8930. "MIT"
  8931. ],
  8932. "description": "Create deep copies (clones) of your objects",
  8933. "keywords": [
  8934. "clone",
  8935. "copy",
  8936. "duplicate",
  8937. "object",
  8938. "object graph"
  8939. ],
  8940. "support": {
  8941. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8942. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  8943. },
  8944. "funding": [
  8945. {
  8946. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8947. "type": "tidelift"
  8948. }
  8949. ],
  8950. "time": "2024-06-12T14:39:25+00:00"
  8951. },
  8952. {
  8953. "name": "phar-io/manifest",
  8954. "version": "2.0.4",
  8955. "source": {
  8956. "type": "git",
  8957. "url": "https://github.com/phar-io/manifest.git",
  8958. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8959. },
  8960. "dist": {
  8961. "type": "zip",
  8962. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8963. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8964. "shasum": ""
  8965. },
  8966. "require": {
  8967. "ext-dom": "*",
  8968. "ext-libxml": "*",
  8969. "ext-phar": "*",
  8970. "ext-xmlwriter": "*",
  8971. "phar-io/version": "^3.0.1",
  8972. "php": "^7.2 || ^8.0"
  8973. },
  8974. "type": "library",
  8975. "extra": {
  8976. "branch-alias": {
  8977. "dev-master": "2.0.x-dev"
  8978. }
  8979. },
  8980. "autoload": {
  8981. "classmap": [
  8982. "src/"
  8983. ]
  8984. },
  8985. "notification-url": "https://packagist.org/downloads/",
  8986. "license": [
  8987. "BSD-3-Clause"
  8988. ],
  8989. "authors": [
  8990. {
  8991. "name": "Arne Blankerts",
  8992. "email": "arne@blankerts.de",
  8993. "role": "Developer"
  8994. },
  8995. {
  8996. "name": "Sebastian Heuer",
  8997. "email": "sebastian@phpeople.de",
  8998. "role": "Developer"
  8999. },
  9000. {
  9001. "name": "Sebastian Bergmann",
  9002. "email": "sebastian@phpunit.de",
  9003. "role": "Developer"
  9004. }
  9005. ],
  9006. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9007. "support": {
  9008. "issues": "https://github.com/phar-io/manifest/issues",
  9009. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9010. },
  9011. "funding": [
  9012. {
  9013. "url": "https://github.com/theseer",
  9014. "type": "github"
  9015. }
  9016. ],
  9017. "time": "2024-03-03T12:33:53+00:00"
  9018. },
  9019. {
  9020. "name": "phar-io/version",
  9021. "version": "3.2.1",
  9022. "source": {
  9023. "type": "git",
  9024. "url": "https://github.com/phar-io/version.git",
  9025. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9026. },
  9027. "dist": {
  9028. "type": "zip",
  9029. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9030. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9031. "shasum": ""
  9032. },
  9033. "require": {
  9034. "php": "^7.2 || ^8.0"
  9035. },
  9036. "type": "library",
  9037. "autoload": {
  9038. "classmap": [
  9039. "src/"
  9040. ]
  9041. },
  9042. "notification-url": "https://packagist.org/downloads/",
  9043. "license": [
  9044. "BSD-3-Clause"
  9045. ],
  9046. "authors": [
  9047. {
  9048. "name": "Arne Blankerts",
  9049. "email": "arne@blankerts.de",
  9050. "role": "Developer"
  9051. },
  9052. {
  9053. "name": "Sebastian Heuer",
  9054. "email": "sebastian@phpeople.de",
  9055. "role": "Developer"
  9056. },
  9057. {
  9058. "name": "Sebastian Bergmann",
  9059. "email": "sebastian@phpunit.de",
  9060. "role": "Developer"
  9061. }
  9062. ],
  9063. "description": "Library for handling version information and constraints",
  9064. "support": {
  9065. "issues": "https://github.com/phar-io/version/issues",
  9066. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9067. },
  9068. "time": "2022-02-21T01:04:05+00:00"
  9069. },
  9070. {
  9071. "name": "phpdocumentor/reflection-common",
  9072. "version": "2.2.0",
  9073. "source": {
  9074. "type": "git",
  9075. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9076. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9077. },
  9078. "dist": {
  9079. "type": "zip",
  9080. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9081. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9082. "shasum": ""
  9083. },
  9084. "require": {
  9085. "php": "^7.2 || ^8.0"
  9086. },
  9087. "type": "library",
  9088. "extra": {
  9089. "branch-alias": {
  9090. "dev-2.x": "2.x-dev"
  9091. }
  9092. },
  9093. "autoload": {
  9094. "psr-4": {
  9095. "phpDocumentor\\Reflection\\": "src/"
  9096. }
  9097. },
  9098. "notification-url": "https://packagist.org/downloads/",
  9099. "license": [
  9100. "MIT"
  9101. ],
  9102. "authors": [
  9103. {
  9104. "name": "Jaap van Otterdijk",
  9105. "email": "opensource@ijaap.nl"
  9106. }
  9107. ],
  9108. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9109. "homepage": "http://www.phpdoc.org",
  9110. "keywords": [
  9111. "FQSEN",
  9112. "phpDocumentor",
  9113. "phpdoc",
  9114. "reflection",
  9115. "static analysis"
  9116. ],
  9117. "support": {
  9118. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9119. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9120. },
  9121. "time": "2020-06-27T09:03:43+00:00"
  9122. },
  9123. {
  9124. "name": "phpdocumentor/type-resolver",
  9125. "version": "1.10.0",
  9126. "source": {
  9127. "type": "git",
  9128. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9129. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  9130. },
  9131. "dist": {
  9132. "type": "zip",
  9133. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  9134. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  9135. "shasum": ""
  9136. },
  9137. "require": {
  9138. "doctrine/deprecations": "^1.0",
  9139. "php": "^7.3 || ^8.0",
  9140. "phpdocumentor/reflection-common": "^2.0",
  9141. "phpstan/phpdoc-parser": "^1.18|^2.0"
  9142. },
  9143. "require-dev": {
  9144. "ext-tokenizer": "*",
  9145. "phpbench/phpbench": "^1.2",
  9146. "phpstan/extension-installer": "^1.1",
  9147. "phpstan/phpstan": "^1.8",
  9148. "phpstan/phpstan-phpunit": "^1.1",
  9149. "phpunit/phpunit": "^9.5",
  9150. "rector/rector": "^0.13.9",
  9151. "vimeo/psalm": "^4.25"
  9152. },
  9153. "type": "library",
  9154. "extra": {
  9155. "branch-alias": {
  9156. "dev-1.x": "1.x-dev"
  9157. }
  9158. },
  9159. "autoload": {
  9160. "psr-4": {
  9161. "phpDocumentor\\Reflection\\": "src"
  9162. }
  9163. },
  9164. "notification-url": "https://packagist.org/downloads/",
  9165. "license": [
  9166. "MIT"
  9167. ],
  9168. "authors": [
  9169. {
  9170. "name": "Mike van Riel",
  9171. "email": "me@mikevanriel.com"
  9172. }
  9173. ],
  9174. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9175. "support": {
  9176. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9177. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  9178. },
  9179. "time": "2024-11-09T15:12:26+00:00"
  9180. },
  9181. {
  9182. "name": "phpstan/phpdoc-parser",
  9183. "version": "2.0.0",
  9184. "source": {
  9185. "type": "git",
  9186. "url": "https://github.com/phpstan/phpdoc-parser.git",
  9187. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299"
  9188. },
  9189. "dist": {
  9190. "type": "zip",
  9191. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/c00d78fb6b29658347f9d37ebe104bffadf36299",
  9192. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299",
  9193. "shasum": ""
  9194. },
  9195. "require": {
  9196. "php": "^7.4 || ^8.0"
  9197. },
  9198. "require-dev": {
  9199. "doctrine/annotations": "^2.0",
  9200. "nikic/php-parser": "^5.3.0",
  9201. "php-parallel-lint/php-parallel-lint": "^1.2",
  9202. "phpstan/extension-installer": "^1.0",
  9203. "phpstan/phpstan": "^2.0",
  9204. "phpstan/phpstan-phpunit": "^2.0",
  9205. "phpstan/phpstan-strict-rules": "^2.0",
  9206. "phpunit/phpunit": "^9.6",
  9207. "symfony/process": "^5.2"
  9208. },
  9209. "type": "library",
  9210. "autoload": {
  9211. "psr-4": {
  9212. "PHPStan\\PhpDocParser\\": [
  9213. "src/"
  9214. ]
  9215. }
  9216. },
  9217. "notification-url": "https://packagist.org/downloads/",
  9218. "license": [
  9219. "MIT"
  9220. ],
  9221. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  9222. "support": {
  9223. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  9224. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.0.0"
  9225. },
  9226. "time": "2024-10-13T11:29:49+00:00"
  9227. },
  9228. {
  9229. "name": "phpunit/php-code-coverage",
  9230. "version": "11.0.7",
  9231. "source": {
  9232. "type": "git",
  9233. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9234. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca"
  9235. },
  9236. "dist": {
  9237. "type": "zip",
  9238. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  9239. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  9240. "shasum": ""
  9241. },
  9242. "require": {
  9243. "ext-dom": "*",
  9244. "ext-libxml": "*",
  9245. "ext-xmlwriter": "*",
  9246. "nikic/php-parser": "^5.3.1",
  9247. "php": ">=8.2",
  9248. "phpunit/php-file-iterator": "^5.1.0",
  9249. "phpunit/php-text-template": "^4.0.1",
  9250. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  9251. "sebastian/complexity": "^4.0.1",
  9252. "sebastian/environment": "^7.2.0",
  9253. "sebastian/lines-of-code": "^3.0.1",
  9254. "sebastian/version": "^5.0.2",
  9255. "theseer/tokenizer": "^1.2.3"
  9256. },
  9257. "require-dev": {
  9258. "phpunit/phpunit": "^11.4.1"
  9259. },
  9260. "suggest": {
  9261. "ext-pcov": "PHP extension that provides line coverage",
  9262. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9263. },
  9264. "type": "library",
  9265. "extra": {
  9266. "branch-alias": {
  9267. "dev-main": "11.0.x-dev"
  9268. }
  9269. },
  9270. "autoload": {
  9271. "classmap": [
  9272. "src/"
  9273. ]
  9274. },
  9275. "notification-url": "https://packagist.org/downloads/",
  9276. "license": [
  9277. "BSD-3-Clause"
  9278. ],
  9279. "authors": [
  9280. {
  9281. "name": "Sebastian Bergmann",
  9282. "email": "sebastian@phpunit.de",
  9283. "role": "lead"
  9284. }
  9285. ],
  9286. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9287. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9288. "keywords": [
  9289. "coverage",
  9290. "testing",
  9291. "xunit"
  9292. ],
  9293. "support": {
  9294. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9295. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9296. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.7"
  9297. },
  9298. "funding": [
  9299. {
  9300. "url": "https://github.com/sebastianbergmann",
  9301. "type": "github"
  9302. }
  9303. ],
  9304. "time": "2024-10-09T06:21:38+00:00"
  9305. },
  9306. {
  9307. "name": "phpunit/php-file-iterator",
  9308. "version": "5.1.0",
  9309. "source": {
  9310. "type": "git",
  9311. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9312. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  9313. },
  9314. "dist": {
  9315. "type": "zip",
  9316. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  9317. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  9318. "shasum": ""
  9319. },
  9320. "require": {
  9321. "php": ">=8.2"
  9322. },
  9323. "require-dev": {
  9324. "phpunit/phpunit": "^11.0"
  9325. },
  9326. "type": "library",
  9327. "extra": {
  9328. "branch-alias": {
  9329. "dev-main": "5.0-dev"
  9330. }
  9331. },
  9332. "autoload": {
  9333. "classmap": [
  9334. "src/"
  9335. ]
  9336. },
  9337. "notification-url": "https://packagist.org/downloads/",
  9338. "license": [
  9339. "BSD-3-Clause"
  9340. ],
  9341. "authors": [
  9342. {
  9343. "name": "Sebastian Bergmann",
  9344. "email": "sebastian@phpunit.de",
  9345. "role": "lead"
  9346. }
  9347. ],
  9348. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9349. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9350. "keywords": [
  9351. "filesystem",
  9352. "iterator"
  9353. ],
  9354. "support": {
  9355. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9356. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9357. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  9358. },
  9359. "funding": [
  9360. {
  9361. "url": "https://github.com/sebastianbergmann",
  9362. "type": "github"
  9363. }
  9364. ],
  9365. "time": "2024-08-27T05:02:59+00:00"
  9366. },
  9367. {
  9368. "name": "phpunit/php-invoker",
  9369. "version": "5.0.1",
  9370. "source": {
  9371. "type": "git",
  9372. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9373. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  9374. },
  9375. "dist": {
  9376. "type": "zip",
  9377. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  9378. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  9379. "shasum": ""
  9380. },
  9381. "require": {
  9382. "php": ">=8.2"
  9383. },
  9384. "require-dev": {
  9385. "ext-pcntl": "*",
  9386. "phpunit/phpunit": "^11.0"
  9387. },
  9388. "suggest": {
  9389. "ext-pcntl": "*"
  9390. },
  9391. "type": "library",
  9392. "extra": {
  9393. "branch-alias": {
  9394. "dev-main": "5.0-dev"
  9395. }
  9396. },
  9397. "autoload": {
  9398. "classmap": [
  9399. "src/"
  9400. ]
  9401. },
  9402. "notification-url": "https://packagist.org/downloads/",
  9403. "license": [
  9404. "BSD-3-Clause"
  9405. ],
  9406. "authors": [
  9407. {
  9408. "name": "Sebastian Bergmann",
  9409. "email": "sebastian@phpunit.de",
  9410. "role": "lead"
  9411. }
  9412. ],
  9413. "description": "Invoke callables with a timeout",
  9414. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9415. "keywords": [
  9416. "process"
  9417. ],
  9418. "support": {
  9419. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9420. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  9421. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  9422. },
  9423. "funding": [
  9424. {
  9425. "url": "https://github.com/sebastianbergmann",
  9426. "type": "github"
  9427. }
  9428. ],
  9429. "time": "2024-07-03T05:07:44+00:00"
  9430. },
  9431. {
  9432. "name": "phpunit/php-text-template",
  9433. "version": "4.0.1",
  9434. "source": {
  9435. "type": "git",
  9436. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9437. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  9438. },
  9439. "dist": {
  9440. "type": "zip",
  9441. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  9442. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  9443. "shasum": ""
  9444. },
  9445. "require": {
  9446. "php": ">=8.2"
  9447. },
  9448. "require-dev": {
  9449. "phpunit/phpunit": "^11.0"
  9450. },
  9451. "type": "library",
  9452. "extra": {
  9453. "branch-alias": {
  9454. "dev-main": "4.0-dev"
  9455. }
  9456. },
  9457. "autoload": {
  9458. "classmap": [
  9459. "src/"
  9460. ]
  9461. },
  9462. "notification-url": "https://packagist.org/downloads/",
  9463. "license": [
  9464. "BSD-3-Clause"
  9465. ],
  9466. "authors": [
  9467. {
  9468. "name": "Sebastian Bergmann",
  9469. "email": "sebastian@phpunit.de",
  9470. "role": "lead"
  9471. }
  9472. ],
  9473. "description": "Simple template engine.",
  9474. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9475. "keywords": [
  9476. "template"
  9477. ],
  9478. "support": {
  9479. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9480. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9481. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  9482. },
  9483. "funding": [
  9484. {
  9485. "url": "https://github.com/sebastianbergmann",
  9486. "type": "github"
  9487. }
  9488. ],
  9489. "time": "2024-07-03T05:08:43+00:00"
  9490. },
  9491. {
  9492. "name": "phpunit/php-timer",
  9493. "version": "7.0.1",
  9494. "source": {
  9495. "type": "git",
  9496. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9497. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  9498. },
  9499. "dist": {
  9500. "type": "zip",
  9501. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  9502. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  9503. "shasum": ""
  9504. },
  9505. "require": {
  9506. "php": ">=8.2"
  9507. },
  9508. "require-dev": {
  9509. "phpunit/phpunit": "^11.0"
  9510. },
  9511. "type": "library",
  9512. "extra": {
  9513. "branch-alias": {
  9514. "dev-main": "7.0-dev"
  9515. }
  9516. },
  9517. "autoload": {
  9518. "classmap": [
  9519. "src/"
  9520. ]
  9521. },
  9522. "notification-url": "https://packagist.org/downloads/",
  9523. "license": [
  9524. "BSD-3-Clause"
  9525. ],
  9526. "authors": [
  9527. {
  9528. "name": "Sebastian Bergmann",
  9529. "email": "sebastian@phpunit.de",
  9530. "role": "lead"
  9531. }
  9532. ],
  9533. "description": "Utility class for timing",
  9534. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9535. "keywords": [
  9536. "timer"
  9537. ],
  9538. "support": {
  9539. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9540. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  9541. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  9542. },
  9543. "funding": [
  9544. {
  9545. "url": "https://github.com/sebastianbergmann",
  9546. "type": "github"
  9547. }
  9548. ],
  9549. "time": "2024-07-03T05:09:35+00:00"
  9550. },
  9551. {
  9552. "name": "phpunit/phpunit",
  9553. "version": "11.4.3",
  9554. "source": {
  9555. "type": "git",
  9556. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9557. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76"
  9558. },
  9559. "dist": {
  9560. "type": "zip",
  9561. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  9562. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  9563. "shasum": ""
  9564. },
  9565. "require": {
  9566. "ext-dom": "*",
  9567. "ext-json": "*",
  9568. "ext-libxml": "*",
  9569. "ext-mbstring": "*",
  9570. "ext-xml": "*",
  9571. "ext-xmlwriter": "*",
  9572. "myclabs/deep-copy": "^1.12.0",
  9573. "phar-io/manifest": "^2.0.4",
  9574. "phar-io/version": "^3.2.1",
  9575. "php": ">=8.2",
  9576. "phpunit/php-code-coverage": "^11.0.7",
  9577. "phpunit/php-file-iterator": "^5.1.0",
  9578. "phpunit/php-invoker": "^5.0.1",
  9579. "phpunit/php-text-template": "^4.0.1",
  9580. "phpunit/php-timer": "^7.0.1",
  9581. "sebastian/cli-parser": "^3.0.2",
  9582. "sebastian/code-unit": "^3.0.1",
  9583. "sebastian/comparator": "^6.1.1",
  9584. "sebastian/diff": "^6.0.2",
  9585. "sebastian/environment": "^7.2.0",
  9586. "sebastian/exporter": "^6.1.3",
  9587. "sebastian/global-state": "^7.0.2",
  9588. "sebastian/object-enumerator": "^6.0.1",
  9589. "sebastian/type": "^5.1.0",
  9590. "sebastian/version": "^5.0.2"
  9591. },
  9592. "suggest": {
  9593. "ext-soap": "To be able to generate mocks based on WSDL files"
  9594. },
  9595. "bin": [
  9596. "phpunit"
  9597. ],
  9598. "type": "library",
  9599. "extra": {
  9600. "branch-alias": {
  9601. "dev-main": "11.4-dev"
  9602. }
  9603. },
  9604. "autoload": {
  9605. "files": [
  9606. "src/Framework/Assert/Functions.php"
  9607. ],
  9608. "classmap": [
  9609. "src/"
  9610. ]
  9611. },
  9612. "notification-url": "https://packagist.org/downloads/",
  9613. "license": [
  9614. "BSD-3-Clause"
  9615. ],
  9616. "authors": [
  9617. {
  9618. "name": "Sebastian Bergmann",
  9619. "email": "sebastian@phpunit.de",
  9620. "role": "lead"
  9621. }
  9622. ],
  9623. "description": "The PHP Unit Testing framework.",
  9624. "homepage": "https://phpunit.de/",
  9625. "keywords": [
  9626. "phpunit",
  9627. "testing",
  9628. "xunit"
  9629. ],
  9630. "support": {
  9631. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9632. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9633. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.4.3"
  9634. },
  9635. "funding": [
  9636. {
  9637. "url": "https://phpunit.de/sponsors.html",
  9638. "type": "custom"
  9639. },
  9640. {
  9641. "url": "https://github.com/sebastianbergmann",
  9642. "type": "github"
  9643. },
  9644. {
  9645. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9646. "type": "tidelift"
  9647. }
  9648. ],
  9649. "time": "2024-10-28T13:07:50+00:00"
  9650. },
  9651. {
  9652. "name": "sebastian/cli-parser",
  9653. "version": "3.0.2",
  9654. "source": {
  9655. "type": "git",
  9656. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9657. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  9658. },
  9659. "dist": {
  9660. "type": "zip",
  9661. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  9662. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  9663. "shasum": ""
  9664. },
  9665. "require": {
  9666. "php": ">=8.2"
  9667. },
  9668. "require-dev": {
  9669. "phpunit/phpunit": "^11.0"
  9670. },
  9671. "type": "library",
  9672. "extra": {
  9673. "branch-alias": {
  9674. "dev-main": "3.0-dev"
  9675. }
  9676. },
  9677. "autoload": {
  9678. "classmap": [
  9679. "src/"
  9680. ]
  9681. },
  9682. "notification-url": "https://packagist.org/downloads/",
  9683. "license": [
  9684. "BSD-3-Clause"
  9685. ],
  9686. "authors": [
  9687. {
  9688. "name": "Sebastian Bergmann",
  9689. "email": "sebastian@phpunit.de",
  9690. "role": "lead"
  9691. }
  9692. ],
  9693. "description": "Library for parsing CLI options",
  9694. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9695. "support": {
  9696. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9697. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9698. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  9699. },
  9700. "funding": [
  9701. {
  9702. "url": "https://github.com/sebastianbergmann",
  9703. "type": "github"
  9704. }
  9705. ],
  9706. "time": "2024-07-03T04:41:36+00:00"
  9707. },
  9708. {
  9709. "name": "sebastian/code-unit",
  9710. "version": "3.0.1",
  9711. "source": {
  9712. "type": "git",
  9713. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9714. "reference": "6bb7d09d6623567178cf54126afa9c2310114268"
  9715. },
  9716. "dist": {
  9717. "type": "zip",
  9718. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6bb7d09d6623567178cf54126afa9c2310114268",
  9719. "reference": "6bb7d09d6623567178cf54126afa9c2310114268",
  9720. "shasum": ""
  9721. },
  9722. "require": {
  9723. "php": ">=8.2"
  9724. },
  9725. "require-dev": {
  9726. "phpunit/phpunit": "^11.0"
  9727. },
  9728. "type": "library",
  9729. "extra": {
  9730. "branch-alias": {
  9731. "dev-main": "3.0-dev"
  9732. }
  9733. },
  9734. "autoload": {
  9735. "classmap": [
  9736. "src/"
  9737. ]
  9738. },
  9739. "notification-url": "https://packagist.org/downloads/",
  9740. "license": [
  9741. "BSD-3-Clause"
  9742. ],
  9743. "authors": [
  9744. {
  9745. "name": "Sebastian Bergmann",
  9746. "email": "sebastian@phpunit.de",
  9747. "role": "lead"
  9748. }
  9749. ],
  9750. "description": "Collection of value objects that represent the PHP code units",
  9751. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9752. "support": {
  9753. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9754. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  9755. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.1"
  9756. },
  9757. "funding": [
  9758. {
  9759. "url": "https://github.com/sebastianbergmann",
  9760. "type": "github"
  9761. }
  9762. ],
  9763. "time": "2024-07-03T04:44:28+00:00"
  9764. },
  9765. {
  9766. "name": "sebastian/code-unit-reverse-lookup",
  9767. "version": "4.0.1",
  9768. "source": {
  9769. "type": "git",
  9770. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9771. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  9772. },
  9773. "dist": {
  9774. "type": "zip",
  9775. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  9776. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  9777. "shasum": ""
  9778. },
  9779. "require": {
  9780. "php": ">=8.2"
  9781. },
  9782. "require-dev": {
  9783. "phpunit/phpunit": "^11.0"
  9784. },
  9785. "type": "library",
  9786. "extra": {
  9787. "branch-alias": {
  9788. "dev-main": "4.0-dev"
  9789. }
  9790. },
  9791. "autoload": {
  9792. "classmap": [
  9793. "src/"
  9794. ]
  9795. },
  9796. "notification-url": "https://packagist.org/downloads/",
  9797. "license": [
  9798. "BSD-3-Clause"
  9799. ],
  9800. "authors": [
  9801. {
  9802. "name": "Sebastian Bergmann",
  9803. "email": "sebastian@phpunit.de"
  9804. }
  9805. ],
  9806. "description": "Looks up which function or method a line of code belongs to",
  9807. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9808. "support": {
  9809. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9810. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  9811. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  9812. },
  9813. "funding": [
  9814. {
  9815. "url": "https://github.com/sebastianbergmann",
  9816. "type": "github"
  9817. }
  9818. ],
  9819. "time": "2024-07-03T04:45:54+00:00"
  9820. },
  9821. {
  9822. "name": "sebastian/comparator",
  9823. "version": "6.2.1",
  9824. "source": {
  9825. "type": "git",
  9826. "url": "https://github.com/sebastianbergmann/comparator.git",
  9827. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739"
  9828. },
  9829. "dist": {
  9830. "type": "zip",
  9831. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/43d129d6a0f81c78bee378b46688293eb7ea3739",
  9832. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739",
  9833. "shasum": ""
  9834. },
  9835. "require": {
  9836. "ext-dom": "*",
  9837. "ext-mbstring": "*",
  9838. "php": ">=8.2",
  9839. "sebastian/diff": "^6.0",
  9840. "sebastian/exporter": "^6.0"
  9841. },
  9842. "require-dev": {
  9843. "phpunit/phpunit": "^11.4"
  9844. },
  9845. "type": "library",
  9846. "extra": {
  9847. "branch-alias": {
  9848. "dev-main": "6.2-dev"
  9849. }
  9850. },
  9851. "autoload": {
  9852. "classmap": [
  9853. "src/"
  9854. ]
  9855. },
  9856. "notification-url": "https://packagist.org/downloads/",
  9857. "license": [
  9858. "BSD-3-Clause"
  9859. ],
  9860. "authors": [
  9861. {
  9862. "name": "Sebastian Bergmann",
  9863. "email": "sebastian@phpunit.de"
  9864. },
  9865. {
  9866. "name": "Jeff Welch",
  9867. "email": "whatthejeff@gmail.com"
  9868. },
  9869. {
  9870. "name": "Volker Dusch",
  9871. "email": "github@wallbash.com"
  9872. },
  9873. {
  9874. "name": "Bernhard Schussek",
  9875. "email": "bschussek@2bepublished.at"
  9876. }
  9877. ],
  9878. "description": "Provides the functionality to compare PHP values for equality",
  9879. "homepage": "https://github.com/sebastianbergmann/comparator",
  9880. "keywords": [
  9881. "comparator",
  9882. "compare",
  9883. "equality"
  9884. ],
  9885. "support": {
  9886. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9887. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9888. "source": "https://github.com/sebastianbergmann/comparator/tree/6.2.1"
  9889. },
  9890. "funding": [
  9891. {
  9892. "url": "https://github.com/sebastianbergmann",
  9893. "type": "github"
  9894. }
  9895. ],
  9896. "time": "2024-10-31T05:30:08+00:00"
  9897. },
  9898. {
  9899. "name": "sebastian/complexity",
  9900. "version": "4.0.1",
  9901. "source": {
  9902. "type": "git",
  9903. "url": "https://github.com/sebastianbergmann/complexity.git",
  9904. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  9905. },
  9906. "dist": {
  9907. "type": "zip",
  9908. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  9909. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  9910. "shasum": ""
  9911. },
  9912. "require": {
  9913. "nikic/php-parser": "^5.0",
  9914. "php": ">=8.2"
  9915. },
  9916. "require-dev": {
  9917. "phpunit/phpunit": "^11.0"
  9918. },
  9919. "type": "library",
  9920. "extra": {
  9921. "branch-alias": {
  9922. "dev-main": "4.0-dev"
  9923. }
  9924. },
  9925. "autoload": {
  9926. "classmap": [
  9927. "src/"
  9928. ]
  9929. },
  9930. "notification-url": "https://packagist.org/downloads/",
  9931. "license": [
  9932. "BSD-3-Clause"
  9933. ],
  9934. "authors": [
  9935. {
  9936. "name": "Sebastian Bergmann",
  9937. "email": "sebastian@phpunit.de",
  9938. "role": "lead"
  9939. }
  9940. ],
  9941. "description": "Library for calculating the complexity of PHP code units",
  9942. "homepage": "https://github.com/sebastianbergmann/complexity",
  9943. "support": {
  9944. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9945. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9946. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  9947. },
  9948. "funding": [
  9949. {
  9950. "url": "https://github.com/sebastianbergmann",
  9951. "type": "github"
  9952. }
  9953. ],
  9954. "time": "2024-07-03T04:49:50+00:00"
  9955. },
  9956. {
  9957. "name": "sebastian/diff",
  9958. "version": "6.0.2",
  9959. "source": {
  9960. "type": "git",
  9961. "url": "https://github.com/sebastianbergmann/diff.git",
  9962. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  9963. },
  9964. "dist": {
  9965. "type": "zip",
  9966. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  9967. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  9968. "shasum": ""
  9969. },
  9970. "require": {
  9971. "php": ">=8.2"
  9972. },
  9973. "require-dev": {
  9974. "phpunit/phpunit": "^11.0",
  9975. "symfony/process": "^4.2 || ^5"
  9976. },
  9977. "type": "library",
  9978. "extra": {
  9979. "branch-alias": {
  9980. "dev-main": "6.0-dev"
  9981. }
  9982. },
  9983. "autoload": {
  9984. "classmap": [
  9985. "src/"
  9986. ]
  9987. },
  9988. "notification-url": "https://packagist.org/downloads/",
  9989. "license": [
  9990. "BSD-3-Clause"
  9991. ],
  9992. "authors": [
  9993. {
  9994. "name": "Sebastian Bergmann",
  9995. "email": "sebastian@phpunit.de"
  9996. },
  9997. {
  9998. "name": "Kore Nordmann",
  9999. "email": "mail@kore-nordmann.de"
  10000. }
  10001. ],
  10002. "description": "Diff implementation",
  10003. "homepage": "https://github.com/sebastianbergmann/diff",
  10004. "keywords": [
  10005. "diff",
  10006. "udiff",
  10007. "unidiff",
  10008. "unified diff"
  10009. ],
  10010. "support": {
  10011. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10012. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10013. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  10014. },
  10015. "funding": [
  10016. {
  10017. "url": "https://github.com/sebastianbergmann",
  10018. "type": "github"
  10019. }
  10020. ],
  10021. "time": "2024-07-03T04:53:05+00:00"
  10022. },
  10023. {
  10024. "name": "sebastian/environment",
  10025. "version": "7.2.0",
  10026. "source": {
  10027. "type": "git",
  10028. "url": "https://github.com/sebastianbergmann/environment.git",
  10029. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  10030. },
  10031. "dist": {
  10032. "type": "zip",
  10033. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  10034. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  10035. "shasum": ""
  10036. },
  10037. "require": {
  10038. "php": ">=8.2"
  10039. },
  10040. "require-dev": {
  10041. "phpunit/phpunit": "^11.0"
  10042. },
  10043. "suggest": {
  10044. "ext-posix": "*"
  10045. },
  10046. "type": "library",
  10047. "extra": {
  10048. "branch-alias": {
  10049. "dev-main": "7.2-dev"
  10050. }
  10051. },
  10052. "autoload": {
  10053. "classmap": [
  10054. "src/"
  10055. ]
  10056. },
  10057. "notification-url": "https://packagist.org/downloads/",
  10058. "license": [
  10059. "BSD-3-Clause"
  10060. ],
  10061. "authors": [
  10062. {
  10063. "name": "Sebastian Bergmann",
  10064. "email": "sebastian@phpunit.de"
  10065. }
  10066. ],
  10067. "description": "Provides functionality to handle HHVM/PHP environments",
  10068. "homepage": "https://github.com/sebastianbergmann/environment",
  10069. "keywords": [
  10070. "Xdebug",
  10071. "environment",
  10072. "hhvm"
  10073. ],
  10074. "support": {
  10075. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10076. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10077. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  10078. },
  10079. "funding": [
  10080. {
  10081. "url": "https://github.com/sebastianbergmann",
  10082. "type": "github"
  10083. }
  10084. ],
  10085. "time": "2024-07-03T04:54:44+00:00"
  10086. },
  10087. {
  10088. "name": "sebastian/exporter",
  10089. "version": "6.1.3",
  10090. "source": {
  10091. "type": "git",
  10092. "url": "https://github.com/sebastianbergmann/exporter.git",
  10093. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e"
  10094. },
  10095. "dist": {
  10096. "type": "zip",
  10097. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  10098. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  10099. "shasum": ""
  10100. },
  10101. "require": {
  10102. "ext-mbstring": "*",
  10103. "php": ">=8.2",
  10104. "sebastian/recursion-context": "^6.0"
  10105. },
  10106. "require-dev": {
  10107. "phpunit/phpunit": "^11.2"
  10108. },
  10109. "type": "library",
  10110. "extra": {
  10111. "branch-alias": {
  10112. "dev-main": "6.1-dev"
  10113. }
  10114. },
  10115. "autoload": {
  10116. "classmap": [
  10117. "src/"
  10118. ]
  10119. },
  10120. "notification-url": "https://packagist.org/downloads/",
  10121. "license": [
  10122. "BSD-3-Clause"
  10123. ],
  10124. "authors": [
  10125. {
  10126. "name": "Sebastian Bergmann",
  10127. "email": "sebastian@phpunit.de"
  10128. },
  10129. {
  10130. "name": "Jeff Welch",
  10131. "email": "whatthejeff@gmail.com"
  10132. },
  10133. {
  10134. "name": "Volker Dusch",
  10135. "email": "github@wallbash.com"
  10136. },
  10137. {
  10138. "name": "Adam Harvey",
  10139. "email": "aharvey@php.net"
  10140. },
  10141. {
  10142. "name": "Bernhard Schussek",
  10143. "email": "bschussek@gmail.com"
  10144. }
  10145. ],
  10146. "description": "Provides the functionality to export PHP variables for visualization",
  10147. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10148. "keywords": [
  10149. "export",
  10150. "exporter"
  10151. ],
  10152. "support": {
  10153. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10154. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10155. "source": "https://github.com/sebastianbergmann/exporter/tree/6.1.3"
  10156. },
  10157. "funding": [
  10158. {
  10159. "url": "https://github.com/sebastianbergmann",
  10160. "type": "github"
  10161. }
  10162. ],
  10163. "time": "2024-07-03T04:56:19+00:00"
  10164. },
  10165. {
  10166. "name": "sebastian/global-state",
  10167. "version": "7.0.2",
  10168. "source": {
  10169. "type": "git",
  10170. "url": "https://github.com/sebastianbergmann/global-state.git",
  10171. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  10172. },
  10173. "dist": {
  10174. "type": "zip",
  10175. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  10176. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  10177. "shasum": ""
  10178. },
  10179. "require": {
  10180. "php": ">=8.2",
  10181. "sebastian/object-reflector": "^4.0",
  10182. "sebastian/recursion-context": "^6.0"
  10183. },
  10184. "require-dev": {
  10185. "ext-dom": "*",
  10186. "phpunit/phpunit": "^11.0"
  10187. },
  10188. "type": "library",
  10189. "extra": {
  10190. "branch-alias": {
  10191. "dev-main": "7.0-dev"
  10192. }
  10193. },
  10194. "autoload": {
  10195. "classmap": [
  10196. "src/"
  10197. ]
  10198. },
  10199. "notification-url": "https://packagist.org/downloads/",
  10200. "license": [
  10201. "BSD-3-Clause"
  10202. ],
  10203. "authors": [
  10204. {
  10205. "name": "Sebastian Bergmann",
  10206. "email": "sebastian@phpunit.de"
  10207. }
  10208. ],
  10209. "description": "Snapshotting of global state",
  10210. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10211. "keywords": [
  10212. "global state"
  10213. ],
  10214. "support": {
  10215. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10216. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10217. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  10218. },
  10219. "funding": [
  10220. {
  10221. "url": "https://github.com/sebastianbergmann",
  10222. "type": "github"
  10223. }
  10224. ],
  10225. "time": "2024-07-03T04:57:36+00:00"
  10226. },
  10227. {
  10228. "name": "sebastian/lines-of-code",
  10229. "version": "3.0.1",
  10230. "source": {
  10231. "type": "git",
  10232. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10233. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  10234. },
  10235. "dist": {
  10236. "type": "zip",
  10237. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  10238. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  10239. "shasum": ""
  10240. },
  10241. "require": {
  10242. "nikic/php-parser": "^5.0",
  10243. "php": ">=8.2"
  10244. },
  10245. "require-dev": {
  10246. "phpunit/phpunit": "^11.0"
  10247. },
  10248. "type": "library",
  10249. "extra": {
  10250. "branch-alias": {
  10251. "dev-main": "3.0-dev"
  10252. }
  10253. },
  10254. "autoload": {
  10255. "classmap": [
  10256. "src/"
  10257. ]
  10258. },
  10259. "notification-url": "https://packagist.org/downloads/",
  10260. "license": [
  10261. "BSD-3-Clause"
  10262. ],
  10263. "authors": [
  10264. {
  10265. "name": "Sebastian Bergmann",
  10266. "email": "sebastian@phpunit.de",
  10267. "role": "lead"
  10268. }
  10269. ],
  10270. "description": "Library for counting the lines of code in PHP source code",
  10271. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10272. "support": {
  10273. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10274. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10275. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  10276. },
  10277. "funding": [
  10278. {
  10279. "url": "https://github.com/sebastianbergmann",
  10280. "type": "github"
  10281. }
  10282. ],
  10283. "time": "2024-07-03T04:58:38+00:00"
  10284. },
  10285. {
  10286. "name": "sebastian/object-enumerator",
  10287. "version": "6.0.1",
  10288. "source": {
  10289. "type": "git",
  10290. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10291. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  10292. },
  10293. "dist": {
  10294. "type": "zip",
  10295. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  10296. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  10297. "shasum": ""
  10298. },
  10299. "require": {
  10300. "php": ">=8.2",
  10301. "sebastian/object-reflector": "^4.0",
  10302. "sebastian/recursion-context": "^6.0"
  10303. },
  10304. "require-dev": {
  10305. "phpunit/phpunit": "^11.0"
  10306. },
  10307. "type": "library",
  10308. "extra": {
  10309. "branch-alias": {
  10310. "dev-main": "6.0-dev"
  10311. }
  10312. },
  10313. "autoload": {
  10314. "classmap": [
  10315. "src/"
  10316. ]
  10317. },
  10318. "notification-url": "https://packagist.org/downloads/",
  10319. "license": [
  10320. "BSD-3-Clause"
  10321. ],
  10322. "authors": [
  10323. {
  10324. "name": "Sebastian Bergmann",
  10325. "email": "sebastian@phpunit.de"
  10326. }
  10327. ],
  10328. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10329. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10330. "support": {
  10331. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10332. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  10333. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  10334. },
  10335. "funding": [
  10336. {
  10337. "url": "https://github.com/sebastianbergmann",
  10338. "type": "github"
  10339. }
  10340. ],
  10341. "time": "2024-07-03T05:00:13+00:00"
  10342. },
  10343. {
  10344. "name": "sebastian/object-reflector",
  10345. "version": "4.0.1",
  10346. "source": {
  10347. "type": "git",
  10348. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10349. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  10350. },
  10351. "dist": {
  10352. "type": "zip",
  10353. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  10354. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  10355. "shasum": ""
  10356. },
  10357. "require": {
  10358. "php": ">=8.2"
  10359. },
  10360. "require-dev": {
  10361. "phpunit/phpunit": "^11.0"
  10362. },
  10363. "type": "library",
  10364. "extra": {
  10365. "branch-alias": {
  10366. "dev-main": "4.0-dev"
  10367. }
  10368. },
  10369. "autoload": {
  10370. "classmap": [
  10371. "src/"
  10372. ]
  10373. },
  10374. "notification-url": "https://packagist.org/downloads/",
  10375. "license": [
  10376. "BSD-3-Clause"
  10377. ],
  10378. "authors": [
  10379. {
  10380. "name": "Sebastian Bergmann",
  10381. "email": "sebastian@phpunit.de"
  10382. }
  10383. ],
  10384. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10385. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10386. "support": {
  10387. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10388. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  10389. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  10390. },
  10391. "funding": [
  10392. {
  10393. "url": "https://github.com/sebastianbergmann",
  10394. "type": "github"
  10395. }
  10396. ],
  10397. "time": "2024-07-03T05:01:32+00:00"
  10398. },
  10399. {
  10400. "name": "sebastian/recursion-context",
  10401. "version": "6.0.2",
  10402. "source": {
  10403. "type": "git",
  10404. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10405. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  10406. },
  10407. "dist": {
  10408. "type": "zip",
  10409. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  10410. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  10411. "shasum": ""
  10412. },
  10413. "require": {
  10414. "php": ">=8.2"
  10415. },
  10416. "require-dev": {
  10417. "phpunit/phpunit": "^11.0"
  10418. },
  10419. "type": "library",
  10420. "extra": {
  10421. "branch-alias": {
  10422. "dev-main": "6.0-dev"
  10423. }
  10424. },
  10425. "autoload": {
  10426. "classmap": [
  10427. "src/"
  10428. ]
  10429. },
  10430. "notification-url": "https://packagist.org/downloads/",
  10431. "license": [
  10432. "BSD-3-Clause"
  10433. ],
  10434. "authors": [
  10435. {
  10436. "name": "Sebastian Bergmann",
  10437. "email": "sebastian@phpunit.de"
  10438. },
  10439. {
  10440. "name": "Jeff Welch",
  10441. "email": "whatthejeff@gmail.com"
  10442. },
  10443. {
  10444. "name": "Adam Harvey",
  10445. "email": "aharvey@php.net"
  10446. }
  10447. ],
  10448. "description": "Provides functionality to recursively process PHP variables",
  10449. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10450. "support": {
  10451. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10452. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  10453. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  10454. },
  10455. "funding": [
  10456. {
  10457. "url": "https://github.com/sebastianbergmann",
  10458. "type": "github"
  10459. }
  10460. ],
  10461. "time": "2024-07-03T05:10:34+00:00"
  10462. },
  10463. {
  10464. "name": "sebastian/type",
  10465. "version": "5.1.0",
  10466. "source": {
  10467. "type": "git",
  10468. "url": "https://github.com/sebastianbergmann/type.git",
  10469. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  10470. },
  10471. "dist": {
  10472. "type": "zip",
  10473. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  10474. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  10475. "shasum": ""
  10476. },
  10477. "require": {
  10478. "php": ">=8.2"
  10479. },
  10480. "require-dev": {
  10481. "phpunit/phpunit": "^11.3"
  10482. },
  10483. "type": "library",
  10484. "extra": {
  10485. "branch-alias": {
  10486. "dev-main": "5.1-dev"
  10487. }
  10488. },
  10489. "autoload": {
  10490. "classmap": [
  10491. "src/"
  10492. ]
  10493. },
  10494. "notification-url": "https://packagist.org/downloads/",
  10495. "license": [
  10496. "BSD-3-Clause"
  10497. ],
  10498. "authors": [
  10499. {
  10500. "name": "Sebastian Bergmann",
  10501. "email": "sebastian@phpunit.de",
  10502. "role": "lead"
  10503. }
  10504. ],
  10505. "description": "Collection of value objects that represent the types of the PHP type system",
  10506. "homepage": "https://github.com/sebastianbergmann/type",
  10507. "support": {
  10508. "issues": "https://github.com/sebastianbergmann/type/issues",
  10509. "security": "https://github.com/sebastianbergmann/type/security/policy",
  10510. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  10511. },
  10512. "funding": [
  10513. {
  10514. "url": "https://github.com/sebastianbergmann",
  10515. "type": "github"
  10516. }
  10517. ],
  10518. "time": "2024-09-17T13:12:04+00:00"
  10519. },
  10520. {
  10521. "name": "sebastian/version",
  10522. "version": "5.0.2",
  10523. "source": {
  10524. "type": "git",
  10525. "url": "https://github.com/sebastianbergmann/version.git",
  10526. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  10527. },
  10528. "dist": {
  10529. "type": "zip",
  10530. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  10531. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  10532. "shasum": ""
  10533. },
  10534. "require": {
  10535. "php": ">=8.2"
  10536. },
  10537. "type": "library",
  10538. "extra": {
  10539. "branch-alias": {
  10540. "dev-main": "5.0-dev"
  10541. }
  10542. },
  10543. "autoload": {
  10544. "classmap": [
  10545. "src/"
  10546. ]
  10547. },
  10548. "notification-url": "https://packagist.org/downloads/",
  10549. "license": [
  10550. "BSD-3-Clause"
  10551. ],
  10552. "authors": [
  10553. {
  10554. "name": "Sebastian Bergmann",
  10555. "email": "sebastian@phpunit.de",
  10556. "role": "lead"
  10557. }
  10558. ],
  10559. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10560. "homepage": "https://github.com/sebastianbergmann/version",
  10561. "support": {
  10562. "issues": "https://github.com/sebastianbergmann/version/issues",
  10563. "security": "https://github.com/sebastianbergmann/version/security/policy",
  10564. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  10565. },
  10566. "funding": [
  10567. {
  10568. "url": "https://github.com/sebastianbergmann",
  10569. "type": "github"
  10570. }
  10571. ],
  10572. "time": "2024-10-09T05:16:32+00:00"
  10573. },
  10574. {
  10575. "name": "theseer/tokenizer",
  10576. "version": "1.2.3",
  10577. "source": {
  10578. "type": "git",
  10579. "url": "https://github.com/theseer/tokenizer.git",
  10580. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10581. },
  10582. "dist": {
  10583. "type": "zip",
  10584. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10585. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10586. "shasum": ""
  10587. },
  10588. "require": {
  10589. "ext-dom": "*",
  10590. "ext-tokenizer": "*",
  10591. "ext-xmlwriter": "*",
  10592. "php": "^7.2 || ^8.0"
  10593. },
  10594. "type": "library",
  10595. "autoload": {
  10596. "classmap": [
  10597. "src/"
  10598. ]
  10599. },
  10600. "notification-url": "https://packagist.org/downloads/",
  10601. "license": [
  10602. "BSD-3-Clause"
  10603. ],
  10604. "authors": [
  10605. {
  10606. "name": "Arne Blankerts",
  10607. "email": "arne@blankerts.de",
  10608. "role": "Developer"
  10609. }
  10610. ],
  10611. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10612. "support": {
  10613. "issues": "https://github.com/theseer/tokenizer/issues",
  10614. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10615. },
  10616. "funding": [
  10617. {
  10618. "url": "https://github.com/theseer",
  10619. "type": "github"
  10620. }
  10621. ],
  10622. "time": "2024-03-03T12:36:25+00:00"
  10623. }
  10624. ],
  10625. "aliases": [],
  10626. "minimum-stability": "stable",
  10627. "stability-flags": {},
  10628. "prefer-stable": true,
  10629. "prefer-lowest": false,
  10630. "platform": {
  10631. "php": "^8.2"
  10632. },
  10633. "platform-dev": {},
  10634. "plugin-api-version": "2.6.0"
  10635. }