composer.lock 338 KB

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