composer.lock 335 KB

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