composer.lock 301 KB

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