composer.lock 246 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966
  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": "c76ada2dbca6ca234d4e03e07d947736",
  8. "packages": [
  9. {
  10. "name": "illuminate/collections",
  11. "version": "v10.48.22",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/illuminate/collections.git",
  15. "reference": "37c863cffb345869dd134eff8e646bc82a19cc96"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/illuminate/collections/zipball/37c863cffb345869dd134eff8e646bc82a19cc96",
  20. "reference": "37c863cffb345869dd134eff8e646bc82a19cc96",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "illuminate/conditionable": "^10.0",
  25. "illuminate/contracts": "^10.0",
  26. "illuminate/macroable": "^10.0",
  27. "php": "^8.1"
  28. },
  29. "suggest": {
  30. "symfony/var-dumper": "Required to use the dump method (^6.2)."
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "10.x-dev"
  36. }
  37. },
  38. "autoload": {
  39. "files": [
  40. "helpers.php"
  41. ],
  42. "psr-4": {
  43. "Illuminate\\Support\\": ""
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Taylor Otwell",
  53. "email": "taylor@laravel.com"
  54. }
  55. ],
  56. "description": "The Illuminate Collections package.",
  57. "homepage": "https://laravel.com",
  58. "support": {
  59. "issues": "https://github.com/laravel/framework/issues",
  60. "source": "https://github.com/laravel/framework"
  61. },
  62. "time": "2024-06-19T14:25:05+00:00"
  63. },
  64. {
  65. "name": "illuminate/conditionable",
  66. "version": "v10.48.22",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/illuminate/conditionable.git",
  70. "reference": "d0958e4741fc9d6f516a552060fd1b829a85e009"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/d0958e4741fc9d6f516a552060fd1b829a85e009",
  75. "reference": "d0958e4741fc9d6f516a552060fd1b829a85e009",
  76. "shasum": ""
  77. },
  78. "require": {
  79. "php": "^8.0.2"
  80. },
  81. "type": "library",
  82. "extra": {
  83. "branch-alias": {
  84. "dev-master": "10.x-dev"
  85. }
  86. },
  87. "autoload": {
  88. "psr-4": {
  89. "Illuminate\\Support\\": ""
  90. }
  91. },
  92. "notification-url": "https://packagist.org/downloads/",
  93. "license": [
  94. "MIT"
  95. ],
  96. "authors": [
  97. {
  98. "name": "Taylor Otwell",
  99. "email": "taylor@laravel.com"
  100. }
  101. ],
  102. "description": "The Illuminate Conditionable package.",
  103. "homepage": "https://laravel.com",
  104. "support": {
  105. "issues": "https://github.com/laravel/framework/issues",
  106. "source": "https://github.com/laravel/framework"
  107. },
  108. "time": "2023-02-03T08:06:17+00:00"
  109. },
  110. {
  111. "name": "illuminate/contracts",
  112. "version": "v10.48.22",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/illuminate/contracts.git",
  116. "reference": "8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/illuminate/contracts/zipball/8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac",
  121. "reference": "8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "php": "^8.1",
  126. "psr/container": "^1.1.1|^2.0.1",
  127. "psr/simple-cache": "^1.0|^2.0|^3.0"
  128. },
  129. "type": "library",
  130. "extra": {
  131. "branch-alias": {
  132. "dev-master": "10.x-dev"
  133. }
  134. },
  135. "autoload": {
  136. "psr-4": {
  137. "Illuminate\\Contracts\\": ""
  138. }
  139. },
  140. "notification-url": "https://packagist.org/downloads/",
  141. "license": [
  142. "MIT"
  143. ],
  144. "authors": [
  145. {
  146. "name": "Taylor Otwell",
  147. "email": "taylor@laravel.com"
  148. }
  149. ],
  150. "description": "The Illuminate Contracts package.",
  151. "homepage": "https://laravel.com",
  152. "support": {
  153. "issues": "https://github.com/laravel/framework/issues",
  154. "source": "https://github.com/laravel/framework"
  155. },
  156. "time": "2024-01-15T18:52:32+00:00"
  157. },
  158. {
  159. "name": "illuminate/macroable",
  160. "version": "v10.48.22",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/illuminate/macroable.git",
  164. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/illuminate/macroable/zipball/dff667a46ac37b634dcf68909d9d41e94dc97c27",
  169. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27",
  170. "shasum": ""
  171. },
  172. "require": {
  173. "php": "^8.1"
  174. },
  175. "type": "library",
  176. "extra": {
  177. "branch-alias": {
  178. "dev-master": "10.x-dev"
  179. }
  180. },
  181. "autoload": {
  182. "psr-4": {
  183. "Illuminate\\Support\\": ""
  184. }
  185. },
  186. "notification-url": "https://packagist.org/downloads/",
  187. "license": [
  188. "MIT"
  189. ],
  190. "authors": [
  191. {
  192. "name": "Taylor Otwell",
  193. "email": "taylor@laravel.com"
  194. }
  195. ],
  196. "description": "The Illuminate Macroable package.",
  197. "homepage": "https://laravel.com",
  198. "support": {
  199. "issues": "https://github.com/laravel/framework/issues",
  200. "source": "https://github.com/laravel/framework"
  201. },
  202. "time": "2023-06-05T12:46:42+00:00"
  203. },
  204. {
  205. "name": "laravel/prompts",
  206. "version": "v0.1.25",
  207. "source": {
  208. "type": "git",
  209. "url": "https://github.com/laravel/prompts.git",
  210. "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95"
  211. },
  212. "dist": {
  213. "type": "zip",
  214. "url": "https://api.github.com/repos/laravel/prompts/zipball/7b4029a84c37cb2725fc7f011586e2997040bc95",
  215. "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95",
  216. "shasum": ""
  217. },
  218. "require": {
  219. "ext-mbstring": "*",
  220. "illuminate/collections": "^10.0|^11.0",
  221. "php": "^8.1",
  222. "symfony/console": "^6.2|^7.0"
  223. },
  224. "conflict": {
  225. "illuminate/console": ">=10.17.0 <10.25.0",
  226. "laravel/framework": ">=10.17.0 <10.25.0"
  227. },
  228. "require-dev": {
  229. "mockery/mockery": "^1.5",
  230. "pestphp/pest": "^2.3",
  231. "phpstan/phpstan": "^1.11",
  232. "phpstan/phpstan-mockery": "^1.1"
  233. },
  234. "suggest": {
  235. "ext-pcntl": "Required for the spinner to be animated."
  236. },
  237. "type": "library",
  238. "extra": {
  239. "branch-alias": {
  240. "dev-main": "0.1.x-dev"
  241. }
  242. },
  243. "autoload": {
  244. "files": [
  245. "src/helpers.php"
  246. ],
  247. "psr-4": {
  248. "Laravel\\Prompts\\": "src/"
  249. }
  250. },
  251. "notification-url": "https://packagist.org/downloads/",
  252. "license": [
  253. "MIT"
  254. ],
  255. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  256. "support": {
  257. "issues": "https://github.com/laravel/prompts/issues",
  258. "source": "https://github.com/laravel/prompts/tree/v0.1.25"
  259. },
  260. "time": "2024-08-12T22:06:33+00:00"
  261. },
  262. {
  263. "name": "psr/container",
  264. "version": "2.0.2",
  265. "source": {
  266. "type": "git",
  267. "url": "https://github.com/php-fig/container.git",
  268. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  269. },
  270. "dist": {
  271. "type": "zip",
  272. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  273. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  274. "shasum": ""
  275. },
  276. "require": {
  277. "php": ">=7.4.0"
  278. },
  279. "type": "library",
  280. "extra": {
  281. "branch-alias": {
  282. "dev-master": "2.0.x-dev"
  283. }
  284. },
  285. "autoload": {
  286. "psr-4": {
  287. "Psr\\Container\\": "src/"
  288. }
  289. },
  290. "notification-url": "https://packagist.org/downloads/",
  291. "license": [
  292. "MIT"
  293. ],
  294. "authors": [
  295. {
  296. "name": "PHP-FIG",
  297. "homepage": "https://www.php-fig.org/"
  298. }
  299. ],
  300. "description": "Common Container Interface (PHP FIG PSR-11)",
  301. "homepage": "https://github.com/php-fig/container",
  302. "keywords": [
  303. "PSR-11",
  304. "container",
  305. "container-interface",
  306. "container-interop",
  307. "psr"
  308. ],
  309. "support": {
  310. "issues": "https://github.com/php-fig/container/issues",
  311. "source": "https://github.com/php-fig/container/tree/2.0.2"
  312. },
  313. "time": "2021-11-05T16:47:00+00:00"
  314. },
  315. {
  316. "name": "psr/log",
  317. "version": "3.0.2",
  318. "source": {
  319. "type": "git",
  320. "url": "https://github.com/php-fig/log.git",
  321. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  322. },
  323. "dist": {
  324. "type": "zip",
  325. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  326. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  327. "shasum": ""
  328. },
  329. "require": {
  330. "php": ">=8.0.0"
  331. },
  332. "type": "library",
  333. "extra": {
  334. "branch-alias": {
  335. "dev-master": "3.x-dev"
  336. }
  337. },
  338. "autoload": {
  339. "psr-4": {
  340. "Psr\\Log\\": "src"
  341. }
  342. },
  343. "notification-url": "https://packagist.org/downloads/",
  344. "license": [
  345. "MIT"
  346. ],
  347. "authors": [
  348. {
  349. "name": "PHP-FIG",
  350. "homepage": "https://www.php-fig.org/"
  351. }
  352. ],
  353. "description": "Common interface for logging libraries",
  354. "homepage": "https://github.com/php-fig/log",
  355. "keywords": [
  356. "log",
  357. "psr",
  358. "psr-3"
  359. ],
  360. "support": {
  361. "source": "https://github.com/php-fig/log/tree/3.0.2"
  362. },
  363. "time": "2024-09-11T13:17:53+00:00"
  364. },
  365. {
  366. "name": "psr/simple-cache",
  367. "version": "3.0.0",
  368. "source": {
  369. "type": "git",
  370. "url": "https://github.com/php-fig/simple-cache.git",
  371. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  372. },
  373. "dist": {
  374. "type": "zip",
  375. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  376. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  377. "shasum": ""
  378. },
  379. "require": {
  380. "php": ">=8.0.0"
  381. },
  382. "type": "library",
  383. "extra": {
  384. "branch-alias": {
  385. "dev-master": "3.0.x-dev"
  386. }
  387. },
  388. "autoload": {
  389. "psr-4": {
  390. "Psr\\SimpleCache\\": "src/"
  391. }
  392. },
  393. "notification-url": "https://packagist.org/downloads/",
  394. "license": [
  395. "MIT"
  396. ],
  397. "authors": [
  398. {
  399. "name": "PHP-FIG",
  400. "homepage": "https://www.php-fig.org/"
  401. }
  402. ],
  403. "description": "Common interfaces for simple caching",
  404. "keywords": [
  405. "cache",
  406. "caching",
  407. "psr",
  408. "psr-16",
  409. "simple-cache"
  410. ],
  411. "support": {
  412. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  413. },
  414. "time": "2021-10-29T13:26:27+00:00"
  415. },
  416. {
  417. "name": "symfony/console",
  418. "version": "v6.4.12",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/symfony/console.git",
  422. "reference": "72d080eb9edf80e36c19be61f72c98ed8273b765"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/symfony/console/zipball/72d080eb9edf80e36c19be61f72c98ed8273b765",
  427. "reference": "72d080eb9edf80e36c19be61f72c98ed8273b765",
  428. "shasum": ""
  429. },
  430. "require": {
  431. "php": ">=8.1",
  432. "symfony/deprecation-contracts": "^2.5|^3",
  433. "symfony/polyfill-mbstring": "~1.0",
  434. "symfony/service-contracts": "^2.5|^3",
  435. "symfony/string": "^5.4|^6.0|^7.0"
  436. },
  437. "conflict": {
  438. "symfony/dependency-injection": "<5.4",
  439. "symfony/dotenv": "<5.4",
  440. "symfony/event-dispatcher": "<5.4",
  441. "symfony/lock": "<5.4",
  442. "symfony/process": "<5.4"
  443. },
  444. "provide": {
  445. "psr/log-implementation": "1.0|2.0|3.0"
  446. },
  447. "require-dev": {
  448. "psr/log": "^1|^2|^3",
  449. "symfony/config": "^5.4|^6.0|^7.0",
  450. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  451. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  452. "symfony/http-foundation": "^6.4|^7.0",
  453. "symfony/http-kernel": "^6.4|^7.0",
  454. "symfony/lock": "^5.4|^6.0|^7.0",
  455. "symfony/messenger": "^5.4|^6.0|^7.0",
  456. "symfony/process": "^5.4|^6.0|^7.0",
  457. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  458. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  459. },
  460. "type": "library",
  461. "autoload": {
  462. "psr-4": {
  463. "Symfony\\Component\\Console\\": ""
  464. },
  465. "exclude-from-classmap": [
  466. "/Tests/"
  467. ]
  468. },
  469. "notification-url": "https://packagist.org/downloads/",
  470. "license": [
  471. "MIT"
  472. ],
  473. "authors": [
  474. {
  475. "name": "Fabien Potencier",
  476. "email": "fabien@symfony.com"
  477. },
  478. {
  479. "name": "Symfony Community",
  480. "homepage": "https://symfony.com/contributors"
  481. }
  482. ],
  483. "description": "Eases the creation of beautiful and testable command line interfaces",
  484. "homepage": "https://symfony.com",
  485. "keywords": [
  486. "cli",
  487. "command-line",
  488. "console",
  489. "terminal"
  490. ],
  491. "support": {
  492. "source": "https://github.com/symfony/console/tree/v6.4.12"
  493. },
  494. "funding": [
  495. {
  496. "url": "https://symfony.com/sponsor",
  497. "type": "custom"
  498. },
  499. {
  500. "url": "https://github.com/fabpot",
  501. "type": "github"
  502. },
  503. {
  504. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  505. "type": "tidelift"
  506. }
  507. ],
  508. "time": "2024-09-20T08:15:52+00:00"
  509. },
  510. {
  511. "name": "symfony/deprecation-contracts",
  512. "version": "v3.5.0",
  513. "source": {
  514. "type": "git",
  515. "url": "https://github.com/symfony/deprecation-contracts.git",
  516. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  517. },
  518. "dist": {
  519. "type": "zip",
  520. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  521. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  522. "shasum": ""
  523. },
  524. "require": {
  525. "php": ">=8.1"
  526. },
  527. "type": "library",
  528. "extra": {
  529. "branch-alias": {
  530. "dev-main": "3.5-dev"
  531. },
  532. "thanks": {
  533. "name": "symfony/contracts",
  534. "url": "https://github.com/symfony/contracts"
  535. }
  536. },
  537. "autoload": {
  538. "files": [
  539. "function.php"
  540. ]
  541. },
  542. "notification-url": "https://packagist.org/downloads/",
  543. "license": [
  544. "MIT"
  545. ],
  546. "authors": [
  547. {
  548. "name": "Nicolas Grekas",
  549. "email": "p@tchwork.com"
  550. },
  551. {
  552. "name": "Symfony Community",
  553. "homepage": "https://symfony.com/contributors"
  554. }
  555. ],
  556. "description": "A generic function and convention to trigger deprecation notices",
  557. "homepage": "https://symfony.com",
  558. "support": {
  559. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  560. },
  561. "funding": [
  562. {
  563. "url": "https://symfony.com/sponsor",
  564. "type": "custom"
  565. },
  566. {
  567. "url": "https://github.com/fabpot",
  568. "type": "github"
  569. },
  570. {
  571. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  572. "type": "tidelift"
  573. }
  574. ],
  575. "time": "2024-04-18T09:32:20+00:00"
  576. },
  577. {
  578. "name": "symfony/polyfill-ctype",
  579. "version": "v1.31.0",
  580. "source": {
  581. "type": "git",
  582. "url": "https://github.com/symfony/polyfill-ctype.git",
  583. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  584. },
  585. "dist": {
  586. "type": "zip",
  587. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  588. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  589. "shasum": ""
  590. },
  591. "require": {
  592. "php": ">=7.2"
  593. },
  594. "provide": {
  595. "ext-ctype": "*"
  596. },
  597. "suggest": {
  598. "ext-ctype": "For best performance"
  599. },
  600. "type": "library",
  601. "extra": {
  602. "thanks": {
  603. "name": "symfony/polyfill",
  604. "url": "https://github.com/symfony/polyfill"
  605. }
  606. },
  607. "autoload": {
  608. "files": [
  609. "bootstrap.php"
  610. ],
  611. "psr-4": {
  612. "Symfony\\Polyfill\\Ctype\\": ""
  613. }
  614. },
  615. "notification-url": "https://packagist.org/downloads/",
  616. "license": [
  617. "MIT"
  618. ],
  619. "authors": [
  620. {
  621. "name": "Gert de Pagter",
  622. "email": "BackEndTea@gmail.com"
  623. },
  624. {
  625. "name": "Symfony Community",
  626. "homepage": "https://symfony.com/contributors"
  627. }
  628. ],
  629. "description": "Symfony polyfill for ctype functions",
  630. "homepage": "https://symfony.com",
  631. "keywords": [
  632. "compatibility",
  633. "ctype",
  634. "polyfill",
  635. "portable"
  636. ],
  637. "support": {
  638. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  639. },
  640. "funding": [
  641. {
  642. "url": "https://symfony.com/sponsor",
  643. "type": "custom"
  644. },
  645. {
  646. "url": "https://github.com/fabpot",
  647. "type": "github"
  648. },
  649. {
  650. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  651. "type": "tidelift"
  652. }
  653. ],
  654. "time": "2024-09-09T11:45:10+00:00"
  655. },
  656. {
  657. "name": "symfony/polyfill-intl-grapheme",
  658. "version": "v1.31.0",
  659. "source": {
  660. "type": "git",
  661. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  662. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  663. },
  664. "dist": {
  665. "type": "zip",
  666. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  667. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  668. "shasum": ""
  669. },
  670. "require": {
  671. "php": ">=7.2"
  672. },
  673. "suggest": {
  674. "ext-intl": "For best performance"
  675. },
  676. "type": "library",
  677. "extra": {
  678. "thanks": {
  679. "name": "symfony/polyfill",
  680. "url": "https://github.com/symfony/polyfill"
  681. }
  682. },
  683. "autoload": {
  684. "files": [
  685. "bootstrap.php"
  686. ],
  687. "psr-4": {
  688. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  689. }
  690. },
  691. "notification-url": "https://packagist.org/downloads/",
  692. "license": [
  693. "MIT"
  694. ],
  695. "authors": [
  696. {
  697. "name": "Nicolas Grekas",
  698. "email": "p@tchwork.com"
  699. },
  700. {
  701. "name": "Symfony Community",
  702. "homepage": "https://symfony.com/contributors"
  703. }
  704. ],
  705. "description": "Symfony polyfill for intl's grapheme_* functions",
  706. "homepage": "https://symfony.com",
  707. "keywords": [
  708. "compatibility",
  709. "grapheme",
  710. "intl",
  711. "polyfill",
  712. "portable",
  713. "shim"
  714. ],
  715. "support": {
  716. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  717. },
  718. "funding": [
  719. {
  720. "url": "https://symfony.com/sponsor",
  721. "type": "custom"
  722. },
  723. {
  724. "url": "https://github.com/fabpot",
  725. "type": "github"
  726. },
  727. {
  728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  729. "type": "tidelift"
  730. }
  731. ],
  732. "time": "2024-09-09T11:45:10+00:00"
  733. },
  734. {
  735. "name": "symfony/polyfill-intl-normalizer",
  736. "version": "v1.31.0",
  737. "source": {
  738. "type": "git",
  739. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  740. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  741. },
  742. "dist": {
  743. "type": "zip",
  744. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  745. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  746. "shasum": ""
  747. },
  748. "require": {
  749. "php": ">=7.2"
  750. },
  751. "suggest": {
  752. "ext-intl": "For best performance"
  753. },
  754. "type": "library",
  755. "extra": {
  756. "thanks": {
  757. "name": "symfony/polyfill",
  758. "url": "https://github.com/symfony/polyfill"
  759. }
  760. },
  761. "autoload": {
  762. "files": [
  763. "bootstrap.php"
  764. ],
  765. "psr-4": {
  766. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  767. },
  768. "classmap": [
  769. "Resources/stubs"
  770. ]
  771. },
  772. "notification-url": "https://packagist.org/downloads/",
  773. "license": [
  774. "MIT"
  775. ],
  776. "authors": [
  777. {
  778. "name": "Nicolas Grekas",
  779. "email": "p@tchwork.com"
  780. },
  781. {
  782. "name": "Symfony Community",
  783. "homepage": "https://symfony.com/contributors"
  784. }
  785. ],
  786. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  787. "homepage": "https://symfony.com",
  788. "keywords": [
  789. "compatibility",
  790. "intl",
  791. "normalizer",
  792. "polyfill",
  793. "portable",
  794. "shim"
  795. ],
  796. "support": {
  797. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  798. },
  799. "funding": [
  800. {
  801. "url": "https://symfony.com/sponsor",
  802. "type": "custom"
  803. },
  804. {
  805. "url": "https://github.com/fabpot",
  806. "type": "github"
  807. },
  808. {
  809. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  810. "type": "tidelift"
  811. }
  812. ],
  813. "time": "2024-09-09T11:45:10+00:00"
  814. },
  815. {
  816. "name": "symfony/polyfill-mbstring",
  817. "version": "v1.31.0",
  818. "source": {
  819. "type": "git",
  820. "url": "https://github.com/symfony/polyfill-mbstring.git",
  821. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  822. },
  823. "dist": {
  824. "type": "zip",
  825. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  826. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  827. "shasum": ""
  828. },
  829. "require": {
  830. "php": ">=7.2"
  831. },
  832. "provide": {
  833. "ext-mbstring": "*"
  834. },
  835. "suggest": {
  836. "ext-mbstring": "For best performance"
  837. },
  838. "type": "library",
  839. "extra": {
  840. "thanks": {
  841. "name": "symfony/polyfill",
  842. "url": "https://github.com/symfony/polyfill"
  843. }
  844. },
  845. "autoload": {
  846. "files": [
  847. "bootstrap.php"
  848. ],
  849. "psr-4": {
  850. "Symfony\\Polyfill\\Mbstring\\": ""
  851. }
  852. },
  853. "notification-url": "https://packagist.org/downloads/",
  854. "license": [
  855. "MIT"
  856. ],
  857. "authors": [
  858. {
  859. "name": "Nicolas Grekas",
  860. "email": "p@tchwork.com"
  861. },
  862. {
  863. "name": "Symfony Community",
  864. "homepage": "https://symfony.com/contributors"
  865. }
  866. ],
  867. "description": "Symfony polyfill for the Mbstring extension",
  868. "homepage": "https://symfony.com",
  869. "keywords": [
  870. "compatibility",
  871. "mbstring",
  872. "polyfill",
  873. "portable",
  874. "shim"
  875. ],
  876. "support": {
  877. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  878. },
  879. "funding": [
  880. {
  881. "url": "https://symfony.com/sponsor",
  882. "type": "custom"
  883. },
  884. {
  885. "url": "https://github.com/fabpot",
  886. "type": "github"
  887. },
  888. {
  889. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  890. "type": "tidelift"
  891. }
  892. ],
  893. "time": "2024-09-09T11:45:10+00:00"
  894. },
  895. {
  896. "name": "symfony/service-contracts",
  897. "version": "v3.5.0",
  898. "source": {
  899. "type": "git",
  900. "url": "https://github.com/symfony/service-contracts.git",
  901. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  902. },
  903. "dist": {
  904. "type": "zip",
  905. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  906. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  907. "shasum": ""
  908. },
  909. "require": {
  910. "php": ">=8.1",
  911. "psr/container": "^1.1|^2.0",
  912. "symfony/deprecation-contracts": "^2.5|^3"
  913. },
  914. "conflict": {
  915. "ext-psr": "<1.1|>=2"
  916. },
  917. "type": "library",
  918. "extra": {
  919. "branch-alias": {
  920. "dev-main": "3.5-dev"
  921. },
  922. "thanks": {
  923. "name": "symfony/contracts",
  924. "url": "https://github.com/symfony/contracts"
  925. }
  926. },
  927. "autoload": {
  928. "psr-4": {
  929. "Symfony\\Contracts\\Service\\": ""
  930. },
  931. "exclude-from-classmap": [
  932. "/Test/"
  933. ]
  934. },
  935. "notification-url": "https://packagist.org/downloads/",
  936. "license": [
  937. "MIT"
  938. ],
  939. "authors": [
  940. {
  941. "name": "Nicolas Grekas",
  942. "email": "p@tchwork.com"
  943. },
  944. {
  945. "name": "Symfony Community",
  946. "homepage": "https://symfony.com/contributors"
  947. }
  948. ],
  949. "description": "Generic abstractions related to writing services",
  950. "homepage": "https://symfony.com",
  951. "keywords": [
  952. "abstractions",
  953. "contracts",
  954. "decoupling",
  955. "interfaces",
  956. "interoperability",
  957. "standards"
  958. ],
  959. "support": {
  960. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  961. },
  962. "funding": [
  963. {
  964. "url": "https://symfony.com/sponsor",
  965. "type": "custom"
  966. },
  967. {
  968. "url": "https://github.com/fabpot",
  969. "type": "github"
  970. },
  971. {
  972. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  973. "type": "tidelift"
  974. }
  975. ],
  976. "time": "2024-04-18T09:32:20+00:00"
  977. },
  978. {
  979. "name": "symfony/string",
  980. "version": "v6.4.12",
  981. "source": {
  982. "type": "git",
  983. "url": "https://github.com/symfony/string.git",
  984. "reference": "f8a1ccebd0997e16112dfecfd74220b78e5b284b"
  985. },
  986. "dist": {
  987. "type": "zip",
  988. "url": "https://api.github.com/repos/symfony/string/zipball/f8a1ccebd0997e16112dfecfd74220b78e5b284b",
  989. "reference": "f8a1ccebd0997e16112dfecfd74220b78e5b284b",
  990. "shasum": ""
  991. },
  992. "require": {
  993. "php": ">=8.1",
  994. "symfony/polyfill-ctype": "~1.8",
  995. "symfony/polyfill-intl-grapheme": "~1.0",
  996. "symfony/polyfill-intl-normalizer": "~1.0",
  997. "symfony/polyfill-mbstring": "~1.0"
  998. },
  999. "conflict": {
  1000. "symfony/translation-contracts": "<2.5"
  1001. },
  1002. "require-dev": {
  1003. "symfony/error-handler": "^5.4|^6.0|^7.0",
  1004. "symfony/http-client": "^5.4|^6.0|^7.0",
  1005. "symfony/intl": "^6.2|^7.0",
  1006. "symfony/translation-contracts": "^2.5|^3.0",
  1007. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  1008. },
  1009. "type": "library",
  1010. "autoload": {
  1011. "files": [
  1012. "Resources/functions.php"
  1013. ],
  1014. "psr-4": {
  1015. "Symfony\\Component\\String\\": ""
  1016. },
  1017. "exclude-from-classmap": [
  1018. "/Tests/"
  1019. ]
  1020. },
  1021. "notification-url": "https://packagist.org/downloads/",
  1022. "license": [
  1023. "MIT"
  1024. ],
  1025. "authors": [
  1026. {
  1027. "name": "Nicolas Grekas",
  1028. "email": "p@tchwork.com"
  1029. },
  1030. {
  1031. "name": "Symfony Community",
  1032. "homepage": "https://symfony.com/contributors"
  1033. }
  1034. ],
  1035. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  1036. "homepage": "https://symfony.com",
  1037. "keywords": [
  1038. "grapheme",
  1039. "i18n",
  1040. "string",
  1041. "unicode",
  1042. "utf-8",
  1043. "utf8"
  1044. ],
  1045. "support": {
  1046. "source": "https://github.com/symfony/string/tree/v6.4.12"
  1047. },
  1048. "funding": [
  1049. {
  1050. "url": "https://symfony.com/sponsor",
  1051. "type": "custom"
  1052. },
  1053. {
  1054. "url": "https://github.com/fabpot",
  1055. "type": "github"
  1056. },
  1057. {
  1058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1059. "type": "tidelift"
  1060. }
  1061. ],
  1062. "time": "2024-09-20T08:15:52+00:00"
  1063. },
  1064. {
  1065. "name": "zhamao/logger",
  1066. "version": "1.1.1",
  1067. "source": {
  1068. "type": "git",
  1069. "url": "https://github.com/zhamao-robot/zhamao-logger.git",
  1070. "reference": "1b7e34349330a842887d816f0344aba996cfeec0"
  1071. },
  1072. "dist": {
  1073. "type": "zip",
  1074. "url": "https://api.github.com/repos/zhamao-robot/zhamao-logger/zipball/1b7e34349330a842887d816f0344aba996cfeec0",
  1075. "reference": "1b7e34349330a842887d816f0344aba996cfeec0",
  1076. "shasum": ""
  1077. },
  1078. "require": {
  1079. "php": "^7.2 || ^7.3 || ^7.4 || ^8.0 || ^8.1",
  1080. "psr/log": "^1 || ^2 || ^3",
  1081. "symfony/polyfill-mbstring": "^1.0"
  1082. },
  1083. "require-dev": {
  1084. "brainmaestro/composer-git-hooks": "^2.8",
  1085. "friendsofphp/php-cs-fixer": "^3.2",
  1086. "phpstan/phpstan": "^1.1",
  1087. "phpunit/phpunit": "^8.5 || ^9.0",
  1088. "roave/security-advisories": "dev-latest"
  1089. },
  1090. "suggest": {
  1091. "ext-mbstring": "Use C/C++ extension instead of polyfill will be more efficient"
  1092. },
  1093. "type": "library",
  1094. "extra": {
  1095. "hooks": {
  1096. "post-merge": "composer install",
  1097. "pre-commit": [
  1098. "echo committing as $(git config user.name)",
  1099. "composer cs-fix -- --diff"
  1100. ],
  1101. "pre-push": [
  1102. "composer cs-fix -- --dry-run --diff",
  1103. "composer analyse"
  1104. ]
  1105. }
  1106. },
  1107. "autoload": {
  1108. "psr-4": {
  1109. "ZM\\Logger\\": "src/ZM/Logger"
  1110. }
  1111. },
  1112. "notification-url": "https://packagist.org/downloads/",
  1113. "license": [
  1114. "Apache-2.0"
  1115. ],
  1116. "authors": [
  1117. {
  1118. "name": "jerry",
  1119. "email": "admin@zhamao.me"
  1120. },
  1121. {
  1122. "name": "sunxyw",
  1123. "email": "dev@sunxyw.xyz"
  1124. }
  1125. ],
  1126. "description": "Another Console Logger for CLI Applications",
  1127. "support": {
  1128. "issues": "https://github.com/zhamao-robot/zhamao-logger/issues",
  1129. "source": "https://github.com/zhamao-robot/zhamao-logger/tree/1.1.1"
  1130. },
  1131. "time": "2023-03-09T15:41:10+00:00"
  1132. }
  1133. ],
  1134. "packages-dev": [
  1135. {
  1136. "name": "amphp/amp",
  1137. "version": "v2.6.4",
  1138. "source": {
  1139. "type": "git",
  1140. "url": "https://github.com/amphp/amp.git",
  1141. "reference": "ded3d9be08f526089eb7ee8d9f16a9768f9dec2d"
  1142. },
  1143. "dist": {
  1144. "type": "zip",
  1145. "url": "https://api.github.com/repos/amphp/amp/zipball/ded3d9be08f526089eb7ee8d9f16a9768f9dec2d",
  1146. "reference": "ded3d9be08f526089eb7ee8d9f16a9768f9dec2d",
  1147. "shasum": ""
  1148. },
  1149. "require": {
  1150. "php": ">=7.1"
  1151. },
  1152. "require-dev": {
  1153. "amphp/php-cs-fixer-config": "dev-master",
  1154. "amphp/phpunit-util": "^1",
  1155. "ext-json": "*",
  1156. "jetbrains/phpstorm-stubs": "^2019.3",
  1157. "phpunit/phpunit": "^7 | ^8 | ^9",
  1158. "react/promise": "^2",
  1159. "vimeo/psalm": "^3.12"
  1160. },
  1161. "type": "library",
  1162. "extra": {
  1163. "branch-alias": {
  1164. "dev-master": "2.x-dev"
  1165. }
  1166. },
  1167. "autoload": {
  1168. "files": [
  1169. "lib/functions.php",
  1170. "lib/Internal/functions.php"
  1171. ],
  1172. "psr-4": {
  1173. "Amp\\": "lib"
  1174. }
  1175. },
  1176. "notification-url": "https://packagist.org/downloads/",
  1177. "license": [
  1178. "MIT"
  1179. ],
  1180. "authors": [
  1181. {
  1182. "name": "Daniel Lowrey",
  1183. "email": "rdlowrey@php.net"
  1184. },
  1185. {
  1186. "name": "Aaron Piotrowski",
  1187. "email": "aaron@trowski.com"
  1188. },
  1189. {
  1190. "name": "Bob Weinand",
  1191. "email": "bobwei9@hotmail.com"
  1192. },
  1193. {
  1194. "name": "Niklas Keller",
  1195. "email": "me@kelunik.com"
  1196. }
  1197. ],
  1198. "description": "A non-blocking concurrency framework for PHP applications.",
  1199. "homepage": "https://amphp.org/amp",
  1200. "keywords": [
  1201. "async",
  1202. "asynchronous",
  1203. "awaitable",
  1204. "concurrency",
  1205. "event",
  1206. "event-loop",
  1207. "future",
  1208. "non-blocking",
  1209. "promise"
  1210. ],
  1211. "support": {
  1212. "irc": "irc://irc.freenode.org/amphp",
  1213. "issues": "https://github.com/amphp/amp/issues",
  1214. "source": "https://github.com/amphp/amp/tree/v2.6.4"
  1215. },
  1216. "funding": [
  1217. {
  1218. "url": "https://github.com/amphp",
  1219. "type": "github"
  1220. }
  1221. ],
  1222. "time": "2024-03-21T18:52:26+00:00"
  1223. },
  1224. {
  1225. "name": "amphp/byte-stream",
  1226. "version": "v1.8.2",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/amphp/byte-stream.git",
  1230. "reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/amphp/byte-stream/zipball/4f0e968ba3798a423730f567b1b50d3441c16ddc",
  1235. "reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc",
  1236. "shasum": ""
  1237. },
  1238. "require": {
  1239. "amphp/amp": "^2",
  1240. "php": ">=7.1"
  1241. },
  1242. "require-dev": {
  1243. "amphp/php-cs-fixer-config": "dev-master",
  1244. "amphp/phpunit-util": "^1.4",
  1245. "friendsofphp/php-cs-fixer": "^2.3",
  1246. "jetbrains/phpstorm-stubs": "^2019.3",
  1247. "phpunit/phpunit": "^6 || ^7 || ^8",
  1248. "psalm/phar": "^3.11.4"
  1249. },
  1250. "type": "library",
  1251. "autoload": {
  1252. "files": [
  1253. "lib/functions.php"
  1254. ],
  1255. "psr-4": {
  1256. "Amp\\ByteStream\\": "lib"
  1257. }
  1258. },
  1259. "notification-url": "https://packagist.org/downloads/",
  1260. "license": [
  1261. "MIT"
  1262. ],
  1263. "authors": [
  1264. {
  1265. "name": "Aaron Piotrowski",
  1266. "email": "aaron@trowski.com"
  1267. },
  1268. {
  1269. "name": "Niklas Keller",
  1270. "email": "me@kelunik.com"
  1271. }
  1272. ],
  1273. "description": "A stream abstraction to make working with non-blocking I/O simple.",
  1274. "homepage": "https://amphp.org/byte-stream",
  1275. "keywords": [
  1276. "amp",
  1277. "amphp",
  1278. "async",
  1279. "io",
  1280. "non-blocking",
  1281. "stream"
  1282. ],
  1283. "support": {
  1284. "issues": "https://github.com/amphp/byte-stream/issues",
  1285. "source": "https://github.com/amphp/byte-stream/tree/v1.8.2"
  1286. },
  1287. "funding": [
  1288. {
  1289. "url": "https://github.com/amphp",
  1290. "type": "github"
  1291. }
  1292. ],
  1293. "time": "2024-04-13T18:00:56+00:00"
  1294. },
  1295. {
  1296. "name": "amphp/parallel",
  1297. "version": "v1.4.3",
  1298. "source": {
  1299. "type": "git",
  1300. "url": "https://github.com/amphp/parallel.git",
  1301. "reference": "3aac213ba7858566fd83d38ccb85b91b2d652cb0"
  1302. },
  1303. "dist": {
  1304. "type": "zip",
  1305. "url": "https://api.github.com/repos/amphp/parallel/zipball/3aac213ba7858566fd83d38ccb85b91b2d652cb0",
  1306. "reference": "3aac213ba7858566fd83d38ccb85b91b2d652cb0",
  1307. "shasum": ""
  1308. },
  1309. "require": {
  1310. "amphp/amp": "^2",
  1311. "amphp/byte-stream": "^1.6.1",
  1312. "amphp/parser": "^1",
  1313. "amphp/process": "^1",
  1314. "amphp/serialization": "^1",
  1315. "amphp/sync": "^1.0.1",
  1316. "php": ">=7.1"
  1317. },
  1318. "require-dev": {
  1319. "amphp/php-cs-fixer-config": "dev-master",
  1320. "amphp/phpunit-util": "^1.1",
  1321. "phpunit/phpunit": "^8 || ^7"
  1322. },
  1323. "type": "library",
  1324. "autoload": {
  1325. "files": [
  1326. "lib/Context/functions.php",
  1327. "lib/Sync/functions.php",
  1328. "lib/Worker/functions.php"
  1329. ],
  1330. "psr-4": {
  1331. "Amp\\Parallel\\": "lib"
  1332. }
  1333. },
  1334. "notification-url": "https://packagist.org/downloads/",
  1335. "license": [
  1336. "MIT"
  1337. ],
  1338. "authors": [
  1339. {
  1340. "name": "Aaron Piotrowski",
  1341. "email": "aaron@trowski.com"
  1342. },
  1343. {
  1344. "name": "Stephen Coakley",
  1345. "email": "me@stephencoakley.com"
  1346. }
  1347. ],
  1348. "description": "Parallel processing component for Amp.",
  1349. "homepage": "https://github.com/amphp/parallel",
  1350. "keywords": [
  1351. "async",
  1352. "asynchronous",
  1353. "concurrent",
  1354. "multi-processing",
  1355. "multi-threading"
  1356. ],
  1357. "support": {
  1358. "issues": "https://github.com/amphp/parallel/issues",
  1359. "source": "https://github.com/amphp/parallel/tree/v1.4.3"
  1360. },
  1361. "funding": [
  1362. {
  1363. "url": "https://github.com/amphp",
  1364. "type": "github"
  1365. }
  1366. ],
  1367. "time": "2023-03-23T08:04:23+00:00"
  1368. },
  1369. {
  1370. "name": "amphp/parallel-functions",
  1371. "version": "v1.1.0",
  1372. "source": {
  1373. "type": "git",
  1374. "url": "https://github.com/amphp/parallel-functions.git",
  1375. "reference": "04e92fcacfc921a56dfe12c23b3265e62593a7cb"
  1376. },
  1377. "dist": {
  1378. "type": "zip",
  1379. "url": "https://api.github.com/repos/amphp/parallel-functions/zipball/04e92fcacfc921a56dfe12c23b3265e62593a7cb",
  1380. "reference": "04e92fcacfc921a56dfe12c23b3265e62593a7cb",
  1381. "shasum": ""
  1382. },
  1383. "require": {
  1384. "amphp/amp": "^2.0.3",
  1385. "amphp/parallel": "^1.4",
  1386. "amphp/serialization": "^1.0",
  1387. "laravel/serializable-closure": "^1.0",
  1388. "php": ">=7.4"
  1389. },
  1390. "require-dev": {
  1391. "amphp/php-cs-fixer-config": "v2.x-dev",
  1392. "amphp/phpunit-util": "^2.0",
  1393. "phpunit/phpunit": "^9.5.11"
  1394. },
  1395. "type": "library",
  1396. "autoload": {
  1397. "files": [
  1398. "src/functions.php"
  1399. ],
  1400. "psr-4": {
  1401. "Amp\\ParallelFunctions\\": "src"
  1402. }
  1403. },
  1404. "notification-url": "https://packagist.org/downloads/",
  1405. "license": [
  1406. "MIT"
  1407. ],
  1408. "authors": [
  1409. {
  1410. "name": "Niklas Keller",
  1411. "email": "me@kelunik.com"
  1412. }
  1413. ],
  1414. "description": "Parallel processing made simple.",
  1415. "support": {
  1416. "issues": "https://github.com/amphp/parallel-functions/issues",
  1417. "source": "https://github.com/amphp/parallel-functions/tree/v1.1.0"
  1418. },
  1419. "funding": [
  1420. {
  1421. "url": "https://github.com/amphp",
  1422. "type": "github"
  1423. }
  1424. ],
  1425. "time": "2022-02-03T19:32:41+00:00"
  1426. },
  1427. {
  1428. "name": "amphp/parser",
  1429. "version": "v1.1.1",
  1430. "source": {
  1431. "type": "git",
  1432. "url": "https://github.com/amphp/parser.git",
  1433. "reference": "3cf1f8b32a0171d4b1bed93d25617637a77cded7"
  1434. },
  1435. "dist": {
  1436. "type": "zip",
  1437. "url": "https://api.github.com/repos/amphp/parser/zipball/3cf1f8b32a0171d4b1bed93d25617637a77cded7",
  1438. "reference": "3cf1f8b32a0171d4b1bed93d25617637a77cded7",
  1439. "shasum": ""
  1440. },
  1441. "require": {
  1442. "php": ">=7.4"
  1443. },
  1444. "require-dev": {
  1445. "amphp/php-cs-fixer-config": "^2",
  1446. "phpunit/phpunit": "^9",
  1447. "psalm/phar": "^5.4"
  1448. },
  1449. "type": "library",
  1450. "autoload": {
  1451. "psr-4": {
  1452. "Amp\\Parser\\": "src"
  1453. }
  1454. },
  1455. "notification-url": "https://packagist.org/downloads/",
  1456. "license": [
  1457. "MIT"
  1458. ],
  1459. "authors": [
  1460. {
  1461. "name": "Aaron Piotrowski",
  1462. "email": "aaron@trowski.com"
  1463. },
  1464. {
  1465. "name": "Niklas Keller",
  1466. "email": "me@kelunik.com"
  1467. }
  1468. ],
  1469. "description": "A generator parser to make streaming parsers simple.",
  1470. "homepage": "https://github.com/amphp/parser",
  1471. "keywords": [
  1472. "async",
  1473. "non-blocking",
  1474. "parser",
  1475. "stream"
  1476. ],
  1477. "support": {
  1478. "issues": "https://github.com/amphp/parser/issues",
  1479. "source": "https://github.com/amphp/parser/tree/v1.1.1"
  1480. },
  1481. "funding": [
  1482. {
  1483. "url": "https://github.com/amphp",
  1484. "type": "github"
  1485. }
  1486. ],
  1487. "time": "2024-03-21T19:16:53+00:00"
  1488. },
  1489. {
  1490. "name": "amphp/process",
  1491. "version": "v1.1.7",
  1492. "source": {
  1493. "type": "git",
  1494. "url": "https://github.com/amphp/process.git",
  1495. "reference": "1949d85b6d71af2818ff68144304a98495628f19"
  1496. },
  1497. "dist": {
  1498. "type": "zip",
  1499. "url": "https://api.github.com/repos/amphp/process/zipball/1949d85b6d71af2818ff68144304a98495628f19",
  1500. "reference": "1949d85b6d71af2818ff68144304a98495628f19",
  1501. "shasum": ""
  1502. },
  1503. "require": {
  1504. "amphp/amp": "^2",
  1505. "amphp/byte-stream": "^1.4",
  1506. "php": ">=7.1"
  1507. },
  1508. "require-dev": {
  1509. "amphp/php-cs-fixer-config": "dev-master",
  1510. "amphp/phpunit-util": "^1",
  1511. "phpunit/phpunit": "^6"
  1512. },
  1513. "type": "library",
  1514. "autoload": {
  1515. "files": [
  1516. "lib/functions.php"
  1517. ],
  1518. "psr-4": {
  1519. "Amp\\Process\\": "lib"
  1520. }
  1521. },
  1522. "notification-url": "https://packagist.org/downloads/",
  1523. "license": [
  1524. "MIT"
  1525. ],
  1526. "authors": [
  1527. {
  1528. "name": "Bob Weinand",
  1529. "email": "bobwei9@hotmail.com"
  1530. },
  1531. {
  1532. "name": "Aaron Piotrowski",
  1533. "email": "aaron@trowski.com"
  1534. },
  1535. {
  1536. "name": "Niklas Keller",
  1537. "email": "me@kelunik.com"
  1538. }
  1539. ],
  1540. "description": "Asynchronous process manager.",
  1541. "homepage": "https://github.com/amphp/process",
  1542. "support": {
  1543. "issues": "https://github.com/amphp/process/issues",
  1544. "source": "https://github.com/amphp/process/tree/v1.1.7"
  1545. },
  1546. "funding": [
  1547. {
  1548. "url": "https://github.com/amphp",
  1549. "type": "github"
  1550. }
  1551. ],
  1552. "time": "2024-04-19T03:00:28+00:00"
  1553. },
  1554. {
  1555. "name": "amphp/serialization",
  1556. "version": "v1.0.0",
  1557. "source": {
  1558. "type": "git",
  1559. "url": "https://github.com/amphp/serialization.git",
  1560. "reference": "693e77b2fb0b266c3c7d622317f881de44ae94a1"
  1561. },
  1562. "dist": {
  1563. "type": "zip",
  1564. "url": "https://api.github.com/repos/amphp/serialization/zipball/693e77b2fb0b266c3c7d622317f881de44ae94a1",
  1565. "reference": "693e77b2fb0b266c3c7d622317f881de44ae94a1",
  1566. "shasum": ""
  1567. },
  1568. "require": {
  1569. "php": ">=7.1"
  1570. },
  1571. "require-dev": {
  1572. "amphp/php-cs-fixer-config": "dev-master",
  1573. "phpunit/phpunit": "^9 || ^8 || ^7"
  1574. },
  1575. "type": "library",
  1576. "autoload": {
  1577. "files": [
  1578. "src/functions.php"
  1579. ],
  1580. "psr-4": {
  1581. "Amp\\Serialization\\": "src"
  1582. }
  1583. },
  1584. "notification-url": "https://packagist.org/downloads/",
  1585. "license": [
  1586. "MIT"
  1587. ],
  1588. "authors": [
  1589. {
  1590. "name": "Aaron Piotrowski",
  1591. "email": "aaron@trowski.com"
  1592. },
  1593. {
  1594. "name": "Niklas Keller",
  1595. "email": "me@kelunik.com"
  1596. }
  1597. ],
  1598. "description": "Serialization tools for IPC and data storage in PHP.",
  1599. "homepage": "https://github.com/amphp/serialization",
  1600. "keywords": [
  1601. "async",
  1602. "asynchronous",
  1603. "serialization",
  1604. "serialize"
  1605. ],
  1606. "support": {
  1607. "issues": "https://github.com/amphp/serialization/issues",
  1608. "source": "https://github.com/amphp/serialization/tree/master"
  1609. },
  1610. "time": "2020-03-25T21:39:07+00:00"
  1611. },
  1612. {
  1613. "name": "amphp/sync",
  1614. "version": "v1.4.2",
  1615. "source": {
  1616. "type": "git",
  1617. "url": "https://github.com/amphp/sync.git",
  1618. "reference": "85ab06764f4f36d63b1356b466df6111cf4b89cf"
  1619. },
  1620. "dist": {
  1621. "type": "zip",
  1622. "url": "https://api.github.com/repos/amphp/sync/zipball/85ab06764f4f36d63b1356b466df6111cf4b89cf",
  1623. "reference": "85ab06764f4f36d63b1356b466df6111cf4b89cf",
  1624. "shasum": ""
  1625. },
  1626. "require": {
  1627. "amphp/amp": "^2.2",
  1628. "php": ">=7.1"
  1629. },
  1630. "require-dev": {
  1631. "amphp/php-cs-fixer-config": "dev-master",
  1632. "amphp/phpunit-util": "^1.1",
  1633. "phpunit/phpunit": "^9 || ^8 || ^7"
  1634. },
  1635. "type": "library",
  1636. "autoload": {
  1637. "files": [
  1638. "src/functions.php",
  1639. "src/ConcurrentIterator/functions.php"
  1640. ],
  1641. "psr-4": {
  1642. "Amp\\Sync\\": "src"
  1643. }
  1644. },
  1645. "notification-url": "https://packagist.org/downloads/",
  1646. "license": [
  1647. "MIT"
  1648. ],
  1649. "authors": [
  1650. {
  1651. "name": "Aaron Piotrowski",
  1652. "email": "aaron@trowski.com"
  1653. },
  1654. {
  1655. "name": "Stephen Coakley",
  1656. "email": "me@stephencoakley.com"
  1657. }
  1658. ],
  1659. "description": "Mutex, Semaphore, and other synchronization tools for Amp.",
  1660. "homepage": "https://github.com/amphp/sync",
  1661. "keywords": [
  1662. "async",
  1663. "asynchronous",
  1664. "mutex",
  1665. "semaphore",
  1666. "synchronization"
  1667. ],
  1668. "support": {
  1669. "issues": "https://github.com/amphp/sync/issues",
  1670. "source": "https://github.com/amphp/sync/tree/v1.4.2"
  1671. },
  1672. "funding": [
  1673. {
  1674. "url": "https://github.com/amphp",
  1675. "type": "github"
  1676. }
  1677. ],
  1678. "time": "2021-10-25T18:29:10+00:00"
  1679. },
  1680. {
  1681. "name": "captainhook/captainhook-phar",
  1682. "version": "5.23.5",
  1683. "source": {
  1684. "type": "git",
  1685. "url": "https://github.com/captainhookphp/captainhook-phar.git",
  1686. "reference": "055e6e109170a1d79353f9c94a6099e08bab15cd"
  1687. },
  1688. "dist": {
  1689. "type": "zip",
  1690. "url": "https://api.github.com/repos/captainhookphp/captainhook-phar/zipball/055e6e109170a1d79353f9c94a6099e08bab15cd",
  1691. "reference": "055e6e109170a1d79353f9c94a6099e08bab15cd",
  1692. "shasum": ""
  1693. },
  1694. "require": {
  1695. "composer-plugin-api": "^1.1||^2.0",
  1696. "ext-json": "*",
  1697. "ext-spl": "*",
  1698. "phar-io/composer-distributor": "^1.0",
  1699. "php": "^8.0 || ^8.1 || ^8.2"
  1700. },
  1701. "require-dev": {
  1702. "composer/composer": "^1.1 || ^2.0"
  1703. },
  1704. "type": "composer-plugin",
  1705. "extra": {
  1706. "class": "CaptainHook\\Composer\\Plugin"
  1707. },
  1708. "autoload": {
  1709. "psr-4": {
  1710. "CaptainHook\\Composer\\": "src/"
  1711. }
  1712. },
  1713. "notification-url": "https://packagist.org/downloads/",
  1714. "license": [
  1715. "MIT"
  1716. ],
  1717. "authors": [
  1718. {
  1719. "name": "Sebastian Feldmann",
  1720. "email": "sf@sebastian-feldmann.info"
  1721. }
  1722. ],
  1723. "description": "PHP git hook manager",
  1724. "homepage": "https://github.com/captainhookphp/captainhook",
  1725. "keywords": [
  1726. "commit-msg",
  1727. "git",
  1728. "hooks",
  1729. "post-merge",
  1730. "pre-commit",
  1731. "pre-push",
  1732. "prepare-commit-msg"
  1733. ],
  1734. "support": {
  1735. "issues": "https://github.com/captainhookphp/captainhook/issues",
  1736. "source": "https://github.com/captainhookphp/captainhook-phar/tree/5.23.5"
  1737. },
  1738. "funding": [
  1739. {
  1740. "url": "https://github.com/sponsors/sebastianfeldmann",
  1741. "type": "github"
  1742. }
  1743. ],
  1744. "time": "2023-12-13T23:08:05+00:00"
  1745. },
  1746. {
  1747. "name": "captainhook/hook-installer",
  1748. "version": "1.0.3",
  1749. "source": {
  1750. "type": "git",
  1751. "url": "https://github.com/captainhookphp/hook-installer.git",
  1752. "reference": "3308a9152727af4e3d1c7b63ca219d6938b702b8"
  1753. },
  1754. "dist": {
  1755. "type": "zip",
  1756. "url": "https://api.github.com/repos/captainhookphp/hook-installer/zipball/3308a9152727af4e3d1c7b63ca219d6938b702b8",
  1757. "reference": "3308a9152727af4e3d1c7b63ca219d6938b702b8",
  1758. "shasum": ""
  1759. },
  1760. "require": {
  1761. "composer-plugin-api": "^1.1|^2.0",
  1762. "php": ">=8.0"
  1763. },
  1764. "require-dev": {
  1765. "composer/composer": "*"
  1766. },
  1767. "type": "composer-plugin",
  1768. "extra": {
  1769. "class": "CaptainHook\\HookInstaller\\ComposerPlugin"
  1770. },
  1771. "autoload": {
  1772. "psr-4": {
  1773. "CaptainHook\\HookInstaller\\": "src"
  1774. }
  1775. },
  1776. "notification-url": "https://packagist.org/downloads/",
  1777. "license": [
  1778. "MIT"
  1779. ],
  1780. "authors": [
  1781. {
  1782. "name": "Sebastian Feldmann",
  1783. "email": "sf@sebastian-feldmann.info"
  1784. }
  1785. ],
  1786. "description": "Composer Plugin that makes everyone activate the CaptainHook git hooks locally",
  1787. "support": {
  1788. "issues": "https://github.com/captainhookphp/hook-installer/issues",
  1789. "source": "https://github.com/captainhookphp/hook-installer/tree/1.0.3"
  1790. },
  1791. "time": "2024-03-21T13:39:59+00:00"
  1792. },
  1793. {
  1794. "name": "clue/ndjson-react",
  1795. "version": "v1.3.0",
  1796. "source": {
  1797. "type": "git",
  1798. "url": "https://github.com/clue/reactphp-ndjson.git",
  1799. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  1800. },
  1801. "dist": {
  1802. "type": "zip",
  1803. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  1804. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  1805. "shasum": ""
  1806. },
  1807. "require": {
  1808. "php": ">=5.3",
  1809. "react/stream": "^1.2"
  1810. },
  1811. "require-dev": {
  1812. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  1813. "react/event-loop": "^1.2"
  1814. },
  1815. "type": "library",
  1816. "autoload": {
  1817. "psr-4": {
  1818. "Clue\\React\\NDJson\\": "src/"
  1819. }
  1820. },
  1821. "notification-url": "https://packagist.org/downloads/",
  1822. "license": [
  1823. "MIT"
  1824. ],
  1825. "authors": [
  1826. {
  1827. "name": "Christian Lück",
  1828. "email": "christian@clue.engineering"
  1829. }
  1830. ],
  1831. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  1832. "homepage": "https://github.com/clue/reactphp-ndjson",
  1833. "keywords": [
  1834. "NDJSON",
  1835. "json",
  1836. "jsonlines",
  1837. "newline",
  1838. "reactphp",
  1839. "streaming"
  1840. ],
  1841. "support": {
  1842. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  1843. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  1844. },
  1845. "funding": [
  1846. {
  1847. "url": "https://clue.engineering/support",
  1848. "type": "custom"
  1849. },
  1850. {
  1851. "url": "https://github.com/clue",
  1852. "type": "github"
  1853. }
  1854. ],
  1855. "time": "2022-12-23T10:58:28+00:00"
  1856. },
  1857. {
  1858. "name": "composer/pcre",
  1859. "version": "3.3.1",
  1860. "source": {
  1861. "type": "git",
  1862. "url": "https://github.com/composer/pcre.git",
  1863. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4"
  1864. },
  1865. "dist": {
  1866. "type": "zip",
  1867. "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  1868. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  1869. "shasum": ""
  1870. },
  1871. "require": {
  1872. "php": "^7.4 || ^8.0"
  1873. },
  1874. "conflict": {
  1875. "phpstan/phpstan": "<1.11.10"
  1876. },
  1877. "require-dev": {
  1878. "phpstan/phpstan": "^1.11.10",
  1879. "phpstan/phpstan-strict-rules": "^1.1",
  1880. "phpunit/phpunit": "^8 || ^9"
  1881. },
  1882. "type": "library",
  1883. "extra": {
  1884. "branch-alias": {
  1885. "dev-main": "3.x-dev"
  1886. },
  1887. "phpstan": {
  1888. "includes": [
  1889. "extension.neon"
  1890. ]
  1891. }
  1892. },
  1893. "autoload": {
  1894. "psr-4": {
  1895. "Composer\\Pcre\\": "src"
  1896. }
  1897. },
  1898. "notification-url": "https://packagist.org/downloads/",
  1899. "license": [
  1900. "MIT"
  1901. ],
  1902. "authors": [
  1903. {
  1904. "name": "Jordi Boggiano",
  1905. "email": "j.boggiano@seld.be",
  1906. "homepage": "http://seld.be"
  1907. }
  1908. ],
  1909. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  1910. "keywords": [
  1911. "PCRE",
  1912. "preg",
  1913. "regex",
  1914. "regular expression"
  1915. ],
  1916. "support": {
  1917. "issues": "https://github.com/composer/pcre/issues",
  1918. "source": "https://github.com/composer/pcre/tree/3.3.1"
  1919. },
  1920. "funding": [
  1921. {
  1922. "url": "https://packagist.com",
  1923. "type": "custom"
  1924. },
  1925. {
  1926. "url": "https://github.com/composer",
  1927. "type": "github"
  1928. },
  1929. {
  1930. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1931. "type": "tidelift"
  1932. }
  1933. ],
  1934. "time": "2024-08-27T18:44:43+00:00"
  1935. },
  1936. {
  1937. "name": "composer/semver",
  1938. "version": "3.4.3",
  1939. "source": {
  1940. "type": "git",
  1941. "url": "https://github.com/composer/semver.git",
  1942. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  1943. },
  1944. "dist": {
  1945. "type": "zip",
  1946. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  1947. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  1948. "shasum": ""
  1949. },
  1950. "require": {
  1951. "php": "^5.3.2 || ^7.0 || ^8.0"
  1952. },
  1953. "require-dev": {
  1954. "phpstan/phpstan": "^1.11",
  1955. "symfony/phpunit-bridge": "^3 || ^7"
  1956. },
  1957. "type": "library",
  1958. "extra": {
  1959. "branch-alias": {
  1960. "dev-main": "3.x-dev"
  1961. }
  1962. },
  1963. "autoload": {
  1964. "psr-4": {
  1965. "Composer\\Semver\\": "src"
  1966. }
  1967. },
  1968. "notification-url": "https://packagist.org/downloads/",
  1969. "license": [
  1970. "MIT"
  1971. ],
  1972. "authors": [
  1973. {
  1974. "name": "Nils Adermann",
  1975. "email": "naderman@naderman.de",
  1976. "homepage": "http://www.naderman.de"
  1977. },
  1978. {
  1979. "name": "Jordi Boggiano",
  1980. "email": "j.boggiano@seld.be",
  1981. "homepage": "http://seld.be"
  1982. },
  1983. {
  1984. "name": "Rob Bast",
  1985. "email": "rob.bast@gmail.com",
  1986. "homepage": "http://robbast.nl"
  1987. }
  1988. ],
  1989. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  1990. "keywords": [
  1991. "semantic",
  1992. "semver",
  1993. "validation",
  1994. "versioning"
  1995. ],
  1996. "support": {
  1997. "irc": "ircs://irc.libera.chat:6697/composer",
  1998. "issues": "https://github.com/composer/semver/issues",
  1999. "source": "https://github.com/composer/semver/tree/3.4.3"
  2000. },
  2001. "funding": [
  2002. {
  2003. "url": "https://packagist.com",
  2004. "type": "custom"
  2005. },
  2006. {
  2007. "url": "https://github.com/composer",
  2008. "type": "github"
  2009. },
  2010. {
  2011. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  2012. "type": "tidelift"
  2013. }
  2014. ],
  2015. "time": "2024-09-19T14:15:21+00:00"
  2016. },
  2017. {
  2018. "name": "composer/xdebug-handler",
  2019. "version": "3.0.5",
  2020. "source": {
  2021. "type": "git",
  2022. "url": "https://github.com/composer/xdebug-handler.git",
  2023. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  2024. },
  2025. "dist": {
  2026. "type": "zip",
  2027. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  2028. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  2029. "shasum": ""
  2030. },
  2031. "require": {
  2032. "composer/pcre": "^1 || ^2 || ^3",
  2033. "php": "^7.2.5 || ^8.0",
  2034. "psr/log": "^1 || ^2 || ^3"
  2035. },
  2036. "require-dev": {
  2037. "phpstan/phpstan": "^1.0",
  2038. "phpstan/phpstan-strict-rules": "^1.1",
  2039. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  2040. },
  2041. "type": "library",
  2042. "autoload": {
  2043. "psr-4": {
  2044. "Composer\\XdebugHandler\\": "src"
  2045. }
  2046. },
  2047. "notification-url": "https://packagist.org/downloads/",
  2048. "license": [
  2049. "MIT"
  2050. ],
  2051. "authors": [
  2052. {
  2053. "name": "John Stevenson",
  2054. "email": "john-stevenson@blueyonder.co.uk"
  2055. }
  2056. ],
  2057. "description": "Restarts a process without Xdebug.",
  2058. "keywords": [
  2059. "Xdebug",
  2060. "performance"
  2061. ],
  2062. "support": {
  2063. "irc": "ircs://irc.libera.chat:6697/composer",
  2064. "issues": "https://github.com/composer/xdebug-handler/issues",
  2065. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  2066. },
  2067. "funding": [
  2068. {
  2069. "url": "https://packagist.com",
  2070. "type": "custom"
  2071. },
  2072. {
  2073. "url": "https://github.com/composer",
  2074. "type": "github"
  2075. },
  2076. {
  2077. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  2078. "type": "tidelift"
  2079. }
  2080. ],
  2081. "time": "2024-05-06T16:37:16+00:00"
  2082. },
  2083. {
  2084. "name": "doctrine/deprecations",
  2085. "version": "1.1.3",
  2086. "source": {
  2087. "type": "git",
  2088. "url": "https://github.com/doctrine/deprecations.git",
  2089. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  2090. },
  2091. "dist": {
  2092. "type": "zip",
  2093. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  2094. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  2095. "shasum": ""
  2096. },
  2097. "require": {
  2098. "php": "^7.1 || ^8.0"
  2099. },
  2100. "require-dev": {
  2101. "doctrine/coding-standard": "^9",
  2102. "phpstan/phpstan": "1.4.10 || 1.10.15",
  2103. "phpstan/phpstan-phpunit": "^1.0",
  2104. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  2105. "psalm/plugin-phpunit": "0.18.4",
  2106. "psr/log": "^1 || ^2 || ^3",
  2107. "vimeo/psalm": "4.30.0 || 5.12.0"
  2108. },
  2109. "suggest": {
  2110. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  2111. },
  2112. "type": "library",
  2113. "autoload": {
  2114. "psr-4": {
  2115. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  2116. }
  2117. },
  2118. "notification-url": "https://packagist.org/downloads/",
  2119. "license": [
  2120. "MIT"
  2121. ],
  2122. "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.",
  2123. "homepage": "https://www.doctrine-project.org/",
  2124. "support": {
  2125. "issues": "https://github.com/doctrine/deprecations/issues",
  2126. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  2127. },
  2128. "time": "2024-01-30T19:34:25+00:00"
  2129. },
  2130. {
  2131. "name": "doctrine/instantiator",
  2132. "version": "2.0.0",
  2133. "source": {
  2134. "type": "git",
  2135. "url": "https://github.com/doctrine/instantiator.git",
  2136. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  2137. },
  2138. "dist": {
  2139. "type": "zip",
  2140. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  2141. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  2142. "shasum": ""
  2143. },
  2144. "require": {
  2145. "php": "^8.1"
  2146. },
  2147. "require-dev": {
  2148. "doctrine/coding-standard": "^11",
  2149. "ext-pdo": "*",
  2150. "ext-phar": "*",
  2151. "phpbench/phpbench": "^1.2",
  2152. "phpstan/phpstan": "^1.9.4",
  2153. "phpstan/phpstan-phpunit": "^1.3",
  2154. "phpunit/phpunit": "^9.5.27",
  2155. "vimeo/psalm": "^5.4"
  2156. },
  2157. "type": "library",
  2158. "autoload": {
  2159. "psr-4": {
  2160. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2161. }
  2162. },
  2163. "notification-url": "https://packagist.org/downloads/",
  2164. "license": [
  2165. "MIT"
  2166. ],
  2167. "authors": [
  2168. {
  2169. "name": "Marco Pivetta",
  2170. "email": "ocramius@gmail.com",
  2171. "homepage": "https://ocramius.github.io/"
  2172. }
  2173. ],
  2174. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2175. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  2176. "keywords": [
  2177. "constructor",
  2178. "instantiate"
  2179. ],
  2180. "support": {
  2181. "issues": "https://github.com/doctrine/instantiator/issues",
  2182. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  2183. },
  2184. "funding": [
  2185. {
  2186. "url": "https://www.doctrine-project.org/sponsorship.html",
  2187. "type": "custom"
  2188. },
  2189. {
  2190. "url": "https://www.patreon.com/phpdoctrine",
  2191. "type": "patreon"
  2192. },
  2193. {
  2194. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  2195. "type": "tidelift"
  2196. }
  2197. ],
  2198. "time": "2022-12-30T00:23:10+00:00"
  2199. },
  2200. {
  2201. "name": "evenement/evenement",
  2202. "version": "v3.0.2",
  2203. "source": {
  2204. "type": "git",
  2205. "url": "https://github.com/igorw/evenement.git",
  2206. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  2207. },
  2208. "dist": {
  2209. "type": "zip",
  2210. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  2211. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  2212. "shasum": ""
  2213. },
  2214. "require": {
  2215. "php": ">=7.0"
  2216. },
  2217. "require-dev": {
  2218. "phpunit/phpunit": "^9 || ^6"
  2219. },
  2220. "type": "library",
  2221. "autoload": {
  2222. "psr-4": {
  2223. "Evenement\\": "src/"
  2224. }
  2225. },
  2226. "notification-url": "https://packagist.org/downloads/",
  2227. "license": [
  2228. "MIT"
  2229. ],
  2230. "authors": [
  2231. {
  2232. "name": "Igor Wiedler",
  2233. "email": "igor@wiedler.ch"
  2234. }
  2235. ],
  2236. "description": "Événement is a very simple event dispatching library for PHP",
  2237. "keywords": [
  2238. "event-dispatcher",
  2239. "event-emitter"
  2240. ],
  2241. "support": {
  2242. "issues": "https://github.com/igorw/evenement/issues",
  2243. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  2244. },
  2245. "time": "2023-08-08T05:53:35+00:00"
  2246. },
  2247. {
  2248. "name": "fidry/console",
  2249. "version": "0.5.5",
  2250. "source": {
  2251. "type": "git",
  2252. "url": "https://github.com/theofidry/console.git",
  2253. "reference": "bc1fe03f600c63f12ec0a39c6b746c1a1fb77bf7"
  2254. },
  2255. "dist": {
  2256. "type": "zip",
  2257. "url": "https://api.github.com/repos/theofidry/console/zipball/bc1fe03f600c63f12ec0a39c6b746c1a1fb77bf7",
  2258. "reference": "bc1fe03f600c63f12ec0a39c6b746c1a1fb77bf7",
  2259. "shasum": ""
  2260. },
  2261. "require": {
  2262. "php": "^7.4.0 || ^8.0.0",
  2263. "symfony/console": "^4.4 || ^5.4 || ^6.1",
  2264. "symfony/event-dispatcher-contracts": "^1.0 || ^2.5 || ^3.0",
  2265. "symfony/service-contracts": "^1.0 || ^2.5 || ^3.0",
  2266. "thecodingmachine/safe": "^1.3 || ^2.0",
  2267. "webmozart/assert": "^1.11"
  2268. },
  2269. "conflict": {
  2270. "symfony/dependency-injection": "<5.3.0",
  2271. "symfony/framework-bundle": "<5.3.0",
  2272. "symfony/http-kernel": "<5.3.0"
  2273. },
  2274. "require-dev": {
  2275. "bamarni/composer-bin-plugin": "^1.4",
  2276. "composer/semver": "^3.3",
  2277. "ergebnis/composer-normalize": "^2.28",
  2278. "infection/infection": "^0.26",
  2279. "phpspec/prophecy-phpunit": "^2.0",
  2280. "phpunit/phpunit": "^9.4.3",
  2281. "symfony/dependency-injection": "^4.4 || ^5.4 || ^6.1",
  2282. "symfony/framework-bundle": "^4.4 || ^5.4 || ^6.1",
  2283. "symfony/http-kernel": "^4.4 || ^5.4 || ^6.1",
  2284. "symfony/phpunit-bridge": "^4.4.47 || ^5.4 || ^6.0",
  2285. "symfony/yaml": "^4.4 || ^5.4 || ^6.1",
  2286. "webmozarts/strict-phpunit": "^7.3"
  2287. },
  2288. "type": "library",
  2289. "extra": {
  2290. "bamarni-bin": {
  2291. "bin-links": false,
  2292. "forward-command": false
  2293. },
  2294. "branch-alias": {
  2295. "dev-main": "1.0.x-dev"
  2296. }
  2297. },
  2298. "autoload": {
  2299. "psr-4": {
  2300. "Fidry\\Console\\": "src"
  2301. }
  2302. },
  2303. "notification-url": "https://packagist.org/downloads/",
  2304. "license": [
  2305. "MIT"
  2306. ],
  2307. "authors": [
  2308. {
  2309. "name": "Théo Fidry",
  2310. "email": "theo.fidry@gmail.com"
  2311. }
  2312. ],
  2313. "description": "Library to create CLI applications",
  2314. "keywords": [
  2315. "cli",
  2316. "console",
  2317. "symfony"
  2318. ],
  2319. "support": {
  2320. "issues": "https://github.com/theofidry/console/issues",
  2321. "source": "https://github.com/theofidry/console/tree/0.5.5"
  2322. },
  2323. "funding": [
  2324. {
  2325. "url": "https://github.com/theofidry",
  2326. "type": "github"
  2327. }
  2328. ],
  2329. "time": "2022-12-18T10:49:34+00:00"
  2330. },
  2331. {
  2332. "name": "fidry/cpu-core-counter",
  2333. "version": "1.2.0",
  2334. "source": {
  2335. "type": "git",
  2336. "url": "https://github.com/theofidry/cpu-core-counter.git",
  2337. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  2338. },
  2339. "dist": {
  2340. "type": "zip",
  2341. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  2342. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  2343. "shasum": ""
  2344. },
  2345. "require": {
  2346. "php": "^7.2 || ^8.0"
  2347. },
  2348. "require-dev": {
  2349. "fidry/makefile": "^0.2.0",
  2350. "fidry/php-cs-fixer-config": "^1.1.2",
  2351. "phpstan/extension-installer": "^1.2.0",
  2352. "phpstan/phpstan": "^1.9.2",
  2353. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  2354. "phpstan/phpstan-phpunit": "^1.2.2",
  2355. "phpstan/phpstan-strict-rules": "^1.4.4",
  2356. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  2357. "webmozarts/strict-phpunit": "^7.5"
  2358. },
  2359. "type": "library",
  2360. "autoload": {
  2361. "psr-4": {
  2362. "Fidry\\CpuCoreCounter\\": "src/"
  2363. }
  2364. },
  2365. "notification-url": "https://packagist.org/downloads/",
  2366. "license": [
  2367. "MIT"
  2368. ],
  2369. "authors": [
  2370. {
  2371. "name": "Théo FIDRY",
  2372. "email": "theo.fidry@gmail.com"
  2373. }
  2374. ],
  2375. "description": "Tiny utility to get the number of CPU cores.",
  2376. "keywords": [
  2377. "CPU",
  2378. "core"
  2379. ],
  2380. "support": {
  2381. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  2382. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  2383. },
  2384. "funding": [
  2385. {
  2386. "url": "https://github.com/theofidry",
  2387. "type": "github"
  2388. }
  2389. ],
  2390. "time": "2024-08-06T10:04:20+00:00"
  2391. },
  2392. {
  2393. "name": "fidry/filesystem",
  2394. "version": "1.2.1",
  2395. "source": {
  2396. "type": "git",
  2397. "url": "https://github.com/theofidry/filesystem.git",
  2398. "reference": "8303225d289da1c434f6009743fbe9aad852de0c"
  2399. },
  2400. "dist": {
  2401. "type": "zip",
  2402. "url": "https://api.github.com/repos/theofidry/filesystem/zipball/8303225d289da1c434f6009743fbe9aad852de0c",
  2403. "reference": "8303225d289da1c434f6009743fbe9aad852de0c",
  2404. "shasum": ""
  2405. },
  2406. "require": {
  2407. "php": "^8.1",
  2408. "symfony/filesystem": "^6.4 || ^7.0",
  2409. "thecodingmachine/safe": "^2.0"
  2410. },
  2411. "require-dev": {
  2412. "bamarni/composer-bin-plugin": "^1.4",
  2413. "ergebnis/composer-normalize": "^2.28",
  2414. "infection/infection": ">=0.26",
  2415. "phpunit/phpunit": "^10.3",
  2416. "symfony/finder": "^6.4 || ^7.0"
  2417. },
  2418. "type": "library",
  2419. "extra": {
  2420. "bamarni-bin": {
  2421. "bin-links": false,
  2422. "forward-command": false
  2423. },
  2424. "branch-alias": {
  2425. "dev-main": "1.0.x-dev"
  2426. }
  2427. },
  2428. "autoload": {
  2429. "psr-4": {
  2430. "Fidry\\FileSystem\\": "src"
  2431. }
  2432. },
  2433. "notification-url": "https://packagist.org/downloads/",
  2434. "license": [
  2435. "BSD-3-Clause"
  2436. ],
  2437. "authors": [
  2438. {
  2439. "name": "Théo Fidry",
  2440. "email": "theo.fidry@gmail.com"
  2441. }
  2442. ],
  2443. "description": "Symfony Filesystem with a few more utilities.",
  2444. "keywords": [
  2445. "filesystem"
  2446. ],
  2447. "support": {
  2448. "issues": "https://github.com/theofidry/filesystem/issues",
  2449. "source": "https://github.com/theofidry/filesystem/tree/1.2.1"
  2450. },
  2451. "funding": [
  2452. {
  2453. "url": "https://github.com/theofidry",
  2454. "type": "github"
  2455. }
  2456. ],
  2457. "time": "2023-12-10T13:29:09+00:00"
  2458. },
  2459. {
  2460. "name": "filp/whoops",
  2461. "version": "2.16.0",
  2462. "source": {
  2463. "type": "git",
  2464. "url": "https://github.com/filp/whoops.git",
  2465. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  2466. },
  2467. "dist": {
  2468. "type": "zip",
  2469. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  2470. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  2471. "shasum": ""
  2472. },
  2473. "require": {
  2474. "php": "^7.1 || ^8.0",
  2475. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2476. },
  2477. "require-dev": {
  2478. "mockery/mockery": "^1.0",
  2479. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  2480. "symfony/var-dumper": "^4.0 || ^5.0"
  2481. },
  2482. "suggest": {
  2483. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  2484. "whoops/soap": "Formats errors as SOAP responses"
  2485. },
  2486. "type": "library",
  2487. "extra": {
  2488. "branch-alias": {
  2489. "dev-master": "2.7-dev"
  2490. }
  2491. },
  2492. "autoload": {
  2493. "psr-4": {
  2494. "Whoops\\": "src/Whoops/"
  2495. }
  2496. },
  2497. "notification-url": "https://packagist.org/downloads/",
  2498. "license": [
  2499. "MIT"
  2500. ],
  2501. "authors": [
  2502. {
  2503. "name": "Filipe Dobreira",
  2504. "homepage": "https://github.com/filp",
  2505. "role": "Developer"
  2506. }
  2507. ],
  2508. "description": "php error handling for cool kids",
  2509. "homepage": "https://filp.github.io/whoops/",
  2510. "keywords": [
  2511. "error",
  2512. "exception",
  2513. "handling",
  2514. "library",
  2515. "throwable",
  2516. "whoops"
  2517. ],
  2518. "support": {
  2519. "issues": "https://github.com/filp/whoops/issues",
  2520. "source": "https://github.com/filp/whoops/tree/2.16.0"
  2521. },
  2522. "funding": [
  2523. {
  2524. "url": "https://github.com/denis-sokolov",
  2525. "type": "github"
  2526. }
  2527. ],
  2528. "time": "2024-09-25T12:00:00+00:00"
  2529. },
  2530. {
  2531. "name": "friendsofphp/php-cs-fixer",
  2532. "version": "v3.64.0",
  2533. "source": {
  2534. "type": "git",
  2535. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  2536. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  2537. },
  2538. "dist": {
  2539. "type": "zip",
  2540. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  2541. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  2542. "shasum": ""
  2543. },
  2544. "require": {
  2545. "clue/ndjson-react": "^1.0",
  2546. "composer/semver": "^3.4",
  2547. "composer/xdebug-handler": "^3.0.3",
  2548. "ext-filter": "*",
  2549. "ext-json": "*",
  2550. "ext-tokenizer": "*",
  2551. "fidry/cpu-core-counter": "^1.0",
  2552. "php": "^7.4 || ^8.0",
  2553. "react/child-process": "^0.6.5",
  2554. "react/event-loop": "^1.0",
  2555. "react/promise": "^2.0 || ^3.0",
  2556. "react/socket": "^1.0",
  2557. "react/stream": "^1.0",
  2558. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  2559. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  2560. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  2561. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  2562. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  2563. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  2564. "symfony/polyfill-mbstring": "^1.28",
  2565. "symfony/polyfill-php80": "^1.28",
  2566. "symfony/polyfill-php81": "^1.28",
  2567. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  2568. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  2569. },
  2570. "require-dev": {
  2571. "facile-it/paraunit": "^1.3 || ^2.3",
  2572. "infection/infection": "^0.29.5",
  2573. "justinrainbow/json-schema": "^5.2",
  2574. "keradus/cli-executor": "^2.1",
  2575. "mikey179/vfsstream": "^1.6.11",
  2576. "php-coveralls/php-coveralls": "^2.7",
  2577. "php-cs-fixer/accessible-object": "^1.1",
  2578. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  2579. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  2580. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  2581. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  2582. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  2583. },
  2584. "suggest": {
  2585. "ext-dom": "For handling output formats in XML",
  2586. "ext-mbstring": "For handling non-UTF8 characters."
  2587. },
  2588. "bin": [
  2589. "php-cs-fixer"
  2590. ],
  2591. "type": "application",
  2592. "autoload": {
  2593. "psr-4": {
  2594. "PhpCsFixer\\": "src/"
  2595. },
  2596. "exclude-from-classmap": [
  2597. "src/Fixer/Internal/*"
  2598. ]
  2599. },
  2600. "notification-url": "https://packagist.org/downloads/",
  2601. "license": [
  2602. "MIT"
  2603. ],
  2604. "authors": [
  2605. {
  2606. "name": "Fabien Potencier",
  2607. "email": "fabien@symfony.com"
  2608. },
  2609. {
  2610. "name": "Dariusz Rumiński",
  2611. "email": "dariusz.ruminski@gmail.com"
  2612. }
  2613. ],
  2614. "description": "A tool to automatically fix PHP code style",
  2615. "keywords": [
  2616. "Static code analysis",
  2617. "fixer",
  2618. "standards",
  2619. "static analysis"
  2620. ],
  2621. "support": {
  2622. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  2623. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  2624. },
  2625. "funding": [
  2626. {
  2627. "url": "https://github.com/keradus",
  2628. "type": "github"
  2629. }
  2630. ],
  2631. "time": "2024-08-30T23:09:38+00:00"
  2632. },
  2633. {
  2634. "name": "humbug/box",
  2635. "version": "4.5.1",
  2636. "source": {
  2637. "type": "git",
  2638. "url": "https://github.com/box-project/box.git",
  2639. "reference": "1e10a1e974a831b64dab801d09dffa6acd43bd7f"
  2640. },
  2641. "dist": {
  2642. "type": "zip",
  2643. "url": "https://api.github.com/repos/box-project/box/zipball/1e10a1e974a831b64dab801d09dffa6acd43bd7f",
  2644. "reference": "1e10a1e974a831b64dab801d09dffa6acd43bd7f",
  2645. "shasum": ""
  2646. },
  2647. "require": {
  2648. "amphp/parallel-functions": "^1.1",
  2649. "composer-plugin-api": "^2.2",
  2650. "composer/semver": "^3.3.2",
  2651. "composer/xdebug-handler": "^3.0.3",
  2652. "ext-iconv": "*",
  2653. "ext-mbstring": "*",
  2654. "ext-phar": "*",
  2655. "ext-sodium": "*",
  2656. "fidry/console": "^0.5.3 || ^0.6.0",
  2657. "fidry/filesystem": "^1.1",
  2658. "humbug/php-scoper": "^0.18.6",
  2659. "justinrainbow/json-schema": "^5.2.12",
  2660. "laravel/serializable-closure": "^1.2.2",
  2661. "nikic/iter": "^2.2",
  2662. "nikic/php-parser": "^4.15.2",
  2663. "paragonie/constant_time_encoding": "^2.6",
  2664. "php": "^8.1",
  2665. "phpdocumentor/reflection-docblock": "^5.3",
  2666. "phpdocumentor/type-resolver": "^1.7",
  2667. "psr/log": "^3.0",
  2668. "sebastian/diff": "^4.0",
  2669. "seld/jsonlint": "^1.9",
  2670. "symfony/console": "^6.1.7",
  2671. "symfony/filesystem": "^6.1.5",
  2672. "symfony/finder": "^6.1.3",
  2673. "symfony/polyfill-iconv": "^1.28",
  2674. "symfony/polyfill-mbstring": "^1.28",
  2675. "symfony/process": "^6.1.3",
  2676. "symfony/var-dumper": "^6.1.6",
  2677. "webmozart/assert": "^1.11"
  2678. },
  2679. "replace": {
  2680. "paragonie/sodium_compat": "*",
  2681. "symfony/polyfill-php80": "*",
  2682. "symfony/polyfill-php81": "*"
  2683. },
  2684. "require-dev": {
  2685. "bamarni/composer-bin-plugin": "^1.8.2",
  2686. "ergebnis/composer-normalize": "^2.29",
  2687. "fidry/makefile": "^1.0.1",
  2688. "mikey179/vfsstream": "^1.6.11",
  2689. "phpspec/prophecy": "^1.17",
  2690. "phpspec/prophecy-phpunit": "^2.0.2",
  2691. "phpunit/phpunit": "^9.5.26",
  2692. "symfony/phpunit-bridge": "^6.1.6",
  2693. "symfony/yaml": "^6.2",
  2694. "webmozarts/strict-phpunit": "^7.6"
  2695. },
  2696. "suggest": {
  2697. "ext-openssl": "To accelerate private key generation."
  2698. },
  2699. "bin": [
  2700. "bin/box"
  2701. ],
  2702. "type": "library",
  2703. "extra": {
  2704. "bamarni-bin": {
  2705. "bin-links": false,
  2706. "forward-command": false
  2707. },
  2708. "branch-alias": {
  2709. "dev-main": "4.x-dev"
  2710. }
  2711. },
  2712. "autoload": {
  2713. "files": [
  2714. "src/consts.php",
  2715. "src/functions.php"
  2716. ],
  2717. "psr-4": {
  2718. "KevinGH\\Box\\": "src"
  2719. },
  2720. "exclude-from-classmap": [
  2721. "/Test/",
  2722. "vendor/humbug/php-scoper/vendor-hotfix"
  2723. ]
  2724. },
  2725. "notification-url": "https://packagist.org/downloads/",
  2726. "license": [
  2727. "MIT"
  2728. ],
  2729. "authors": [
  2730. {
  2731. "name": "Kevin Herrera",
  2732. "email": "kevin@herrera.io",
  2733. "homepage": "http://kevin.herrera.io"
  2734. },
  2735. {
  2736. "name": "Théo Fidry",
  2737. "email": "theo.fidry@gmail.com"
  2738. }
  2739. ],
  2740. "description": "Fast, zero config application bundler with PHARs.",
  2741. "keywords": [
  2742. "phar"
  2743. ],
  2744. "support": {
  2745. "issues": "https://github.com/box-project/box/issues",
  2746. "source": "https://github.com/box-project/box/tree/4.5.1"
  2747. },
  2748. "time": "2023-11-04T17:51:11+00:00"
  2749. },
  2750. {
  2751. "name": "humbug/php-scoper",
  2752. "version": "0.18.7",
  2753. "source": {
  2754. "type": "git",
  2755. "url": "https://github.com/humbug/php-scoper.git",
  2756. "reference": "9386a0af946f175d7a1ebfb68851bc2bb8ad7858"
  2757. },
  2758. "dist": {
  2759. "type": "zip",
  2760. "url": "https://api.github.com/repos/humbug/php-scoper/zipball/9386a0af946f175d7a1ebfb68851bc2bb8ad7858",
  2761. "reference": "9386a0af946f175d7a1ebfb68851bc2bb8ad7858",
  2762. "shasum": ""
  2763. },
  2764. "require": {
  2765. "fidry/console": "^0.5.0",
  2766. "fidry/filesystem": "^1.1",
  2767. "jetbrains/phpstorm-stubs": "^v2022.2",
  2768. "nikic/php-parser": "^4.12",
  2769. "php": "^8.1",
  2770. "symfony/console": "^5.2 || ^6.0",
  2771. "symfony/filesystem": "^5.2 || ^6.0",
  2772. "symfony/finder": "^5.2 || ^6.0",
  2773. "thecodingmachine/safe": "^2.0"
  2774. },
  2775. "require-dev": {
  2776. "bamarni/composer-bin-plugin": "^1.1",
  2777. "ergebnis/composer-normalize": "^2.28",
  2778. "fidry/makefile": "^1.0",
  2779. "humbug/box": "^4.5.1",
  2780. "phpspec/prophecy-phpunit": "^2.0",
  2781. "phpunit/phpunit": "^9.0",
  2782. "symfony/yaml": "^6.1"
  2783. },
  2784. "bin": [
  2785. "bin/php-scoper"
  2786. ],
  2787. "type": "library",
  2788. "extra": {
  2789. "bamarni-bin": {
  2790. "bin-links": false,
  2791. "forward-command": false
  2792. },
  2793. "branch-alias": {
  2794. "dev-master": "1.0-dev"
  2795. }
  2796. },
  2797. "autoload": {
  2798. "files": [
  2799. "src/functions.php"
  2800. ],
  2801. "psr-4": {
  2802. "Humbug\\PhpScoper\\": "src/"
  2803. },
  2804. "classmap": [
  2805. "vendor-hotfix/"
  2806. ]
  2807. },
  2808. "notification-url": "https://packagist.org/downloads/",
  2809. "license": [
  2810. "MIT"
  2811. ],
  2812. "authors": [
  2813. {
  2814. "name": "Bernhard Schussek",
  2815. "email": "bschussek@gmail.com"
  2816. },
  2817. {
  2818. "name": "Théo Fidry",
  2819. "email": "theo.fidry@gmail.com"
  2820. },
  2821. {
  2822. "name": "Pádraic Brady",
  2823. "email": "padraic.brady@gmail.com"
  2824. }
  2825. ],
  2826. "description": "Prefixes all PHP namespaces in a file or directory.",
  2827. "support": {
  2828. "issues": "https://github.com/humbug/php-scoper/issues",
  2829. "source": "https://github.com/humbug/php-scoper/tree/0.18.7"
  2830. },
  2831. "time": "2023-11-04T18:01:12+00:00"
  2832. },
  2833. {
  2834. "name": "jetbrains/phpstorm-stubs",
  2835. "version": "v2022.3",
  2836. "source": {
  2837. "type": "git",
  2838. "url": "https://github.com/JetBrains/phpstorm-stubs.git",
  2839. "reference": "6b568c153cea002dc6fad96285c3063d07cab18d"
  2840. },
  2841. "dist": {
  2842. "type": "zip",
  2843. "url": "https://api.github.com/repos/JetBrains/phpstorm-stubs/zipball/6b568c153cea002dc6fad96285c3063d07cab18d",
  2844. "reference": "6b568c153cea002dc6fad96285c3063d07cab18d",
  2845. "shasum": ""
  2846. },
  2847. "require-dev": {
  2848. "friendsofphp/php-cs-fixer": "@stable",
  2849. "nikic/php-parser": "@stable",
  2850. "php": "^8.0",
  2851. "phpdocumentor/reflection-docblock": "@stable",
  2852. "phpunit/phpunit": "@stable"
  2853. },
  2854. "type": "library",
  2855. "autoload": {
  2856. "files": [
  2857. "PhpStormStubsMap.php"
  2858. ]
  2859. },
  2860. "notification-url": "https://packagist.org/downloads/",
  2861. "license": [
  2862. "Apache-2.0"
  2863. ],
  2864. "description": "PHP runtime & extensions header files for PhpStorm",
  2865. "homepage": "https://www.jetbrains.com/phpstorm",
  2866. "keywords": [
  2867. "autocomplete",
  2868. "code",
  2869. "inference",
  2870. "inspection",
  2871. "jetbrains",
  2872. "phpstorm",
  2873. "stubs",
  2874. "type"
  2875. ],
  2876. "support": {
  2877. "source": "https://github.com/JetBrains/phpstorm-stubs/tree/v2022.3"
  2878. },
  2879. "time": "2022-10-17T09:21:37+00:00"
  2880. },
  2881. {
  2882. "name": "justinrainbow/json-schema",
  2883. "version": "5.3.0",
  2884. "source": {
  2885. "type": "git",
  2886. "url": "https://github.com/jsonrainbow/json-schema.git",
  2887. "reference": "feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8"
  2888. },
  2889. "dist": {
  2890. "type": "zip",
  2891. "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8",
  2892. "reference": "feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8",
  2893. "shasum": ""
  2894. },
  2895. "require": {
  2896. "php": ">=7.1"
  2897. },
  2898. "require-dev": {
  2899. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  2900. "json-schema/json-schema-test-suite": "1.2.0",
  2901. "phpunit/phpunit": "^4.8.35"
  2902. },
  2903. "bin": [
  2904. "bin/validate-json"
  2905. ],
  2906. "type": "library",
  2907. "autoload": {
  2908. "psr-4": {
  2909. "JsonSchema\\": "src/JsonSchema/"
  2910. }
  2911. },
  2912. "notification-url": "https://packagist.org/downloads/",
  2913. "license": [
  2914. "MIT"
  2915. ],
  2916. "authors": [
  2917. {
  2918. "name": "Bruno Prieto Reis",
  2919. "email": "bruno.p.reis@gmail.com"
  2920. },
  2921. {
  2922. "name": "Justin Rainbow",
  2923. "email": "justin.rainbow@gmail.com"
  2924. },
  2925. {
  2926. "name": "Igor Wiedler",
  2927. "email": "igor@wiedler.ch"
  2928. },
  2929. {
  2930. "name": "Robert Schönthal",
  2931. "email": "seroscho@googlemail.com"
  2932. }
  2933. ],
  2934. "description": "A library to validate a json schema.",
  2935. "homepage": "https://github.com/justinrainbow/json-schema",
  2936. "keywords": [
  2937. "json",
  2938. "schema"
  2939. ],
  2940. "support": {
  2941. "issues": "https://github.com/jsonrainbow/json-schema/issues",
  2942. "source": "https://github.com/jsonrainbow/json-schema/tree/5.3.0"
  2943. },
  2944. "time": "2024-07-06T21:00:26+00:00"
  2945. },
  2946. {
  2947. "name": "laravel/serializable-closure",
  2948. "version": "v1.3.5",
  2949. "source": {
  2950. "type": "git",
  2951. "url": "https://github.com/laravel/serializable-closure.git",
  2952. "reference": "1dc4a3dbfa2b7628a3114e43e32120cce7cdda9c"
  2953. },
  2954. "dist": {
  2955. "type": "zip",
  2956. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/1dc4a3dbfa2b7628a3114e43e32120cce7cdda9c",
  2957. "reference": "1dc4a3dbfa2b7628a3114e43e32120cce7cdda9c",
  2958. "shasum": ""
  2959. },
  2960. "require": {
  2961. "php": "^7.3|^8.0"
  2962. },
  2963. "require-dev": {
  2964. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  2965. "nesbot/carbon": "^2.61|^3.0",
  2966. "pestphp/pest": "^1.21.3",
  2967. "phpstan/phpstan": "^1.8.2",
  2968. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  2969. },
  2970. "type": "library",
  2971. "extra": {
  2972. "branch-alias": {
  2973. "dev-master": "1.x-dev"
  2974. }
  2975. },
  2976. "autoload": {
  2977. "psr-4": {
  2978. "Laravel\\SerializableClosure\\": "src/"
  2979. }
  2980. },
  2981. "notification-url": "https://packagist.org/downloads/",
  2982. "license": [
  2983. "MIT"
  2984. ],
  2985. "authors": [
  2986. {
  2987. "name": "Taylor Otwell",
  2988. "email": "taylor@laravel.com"
  2989. },
  2990. {
  2991. "name": "Nuno Maduro",
  2992. "email": "nuno@laravel.com"
  2993. }
  2994. ],
  2995. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2996. "keywords": [
  2997. "closure",
  2998. "laravel",
  2999. "serializable"
  3000. ],
  3001. "support": {
  3002. "issues": "https://github.com/laravel/serializable-closure/issues",
  3003. "source": "https://github.com/laravel/serializable-closure"
  3004. },
  3005. "time": "2024-09-23T13:33:08+00:00"
  3006. },
  3007. {
  3008. "name": "myclabs/deep-copy",
  3009. "version": "1.12.0",
  3010. "source": {
  3011. "type": "git",
  3012. "url": "https://github.com/myclabs/DeepCopy.git",
  3013. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  3014. },
  3015. "dist": {
  3016. "type": "zip",
  3017. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  3018. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  3019. "shasum": ""
  3020. },
  3021. "require": {
  3022. "php": "^7.1 || ^8.0"
  3023. },
  3024. "conflict": {
  3025. "doctrine/collections": "<1.6.8",
  3026. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  3027. },
  3028. "require-dev": {
  3029. "doctrine/collections": "^1.6.8",
  3030. "doctrine/common": "^2.13.3 || ^3.2.2",
  3031. "phpspec/prophecy": "^1.10",
  3032. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  3033. },
  3034. "type": "library",
  3035. "autoload": {
  3036. "files": [
  3037. "src/DeepCopy/deep_copy.php"
  3038. ],
  3039. "psr-4": {
  3040. "DeepCopy\\": "src/DeepCopy/"
  3041. }
  3042. },
  3043. "notification-url": "https://packagist.org/downloads/",
  3044. "license": [
  3045. "MIT"
  3046. ],
  3047. "description": "Create deep copies (clones) of your objects",
  3048. "keywords": [
  3049. "clone",
  3050. "copy",
  3051. "duplicate",
  3052. "object",
  3053. "object graph"
  3054. ],
  3055. "support": {
  3056. "issues": "https://github.com/myclabs/DeepCopy/issues",
  3057. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  3058. },
  3059. "funding": [
  3060. {
  3061. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  3062. "type": "tidelift"
  3063. }
  3064. ],
  3065. "time": "2024-06-12T14:39:25+00:00"
  3066. },
  3067. {
  3068. "name": "nikic/iter",
  3069. "version": "v2.4.1",
  3070. "source": {
  3071. "type": "git",
  3072. "url": "https://github.com/nikic/iter.git",
  3073. "reference": "3f031ae08d82c4394410e76b88b441331a6fa15f"
  3074. },
  3075. "dist": {
  3076. "type": "zip",
  3077. "url": "https://api.github.com/repos/nikic/iter/zipball/3f031ae08d82c4394410e76b88b441331a6fa15f",
  3078. "reference": "3f031ae08d82c4394410e76b88b441331a6fa15f",
  3079. "shasum": ""
  3080. },
  3081. "require": {
  3082. "php": ">=7.1"
  3083. },
  3084. "require-dev": {
  3085. "phpstan/phpstan": "^1.4",
  3086. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3087. "vimeo/psalm": "^4.18 || ^5.13"
  3088. },
  3089. "type": "library",
  3090. "autoload": {
  3091. "files": [
  3092. "src/iter.func.php",
  3093. "src/iter.php",
  3094. "src/iter.rewindable.php"
  3095. ]
  3096. },
  3097. "notification-url": "https://packagist.org/downloads/",
  3098. "license": [
  3099. "BSD-3-Clause"
  3100. ],
  3101. "authors": [
  3102. {
  3103. "name": "Nikita Popov",
  3104. "email": "nikic@php.net"
  3105. }
  3106. ],
  3107. "description": "Iteration primitives using generators",
  3108. "keywords": [
  3109. "functional",
  3110. "generator",
  3111. "iterator"
  3112. ],
  3113. "support": {
  3114. "issues": "https://github.com/nikic/iter/issues",
  3115. "source": "https://github.com/nikic/iter/tree/v2.4.1"
  3116. },
  3117. "time": "2024-03-19T20:45:05+00:00"
  3118. },
  3119. {
  3120. "name": "nikic/php-parser",
  3121. "version": "v4.19.4",
  3122. "source": {
  3123. "type": "git",
  3124. "url": "https://github.com/nikic/PHP-Parser.git",
  3125. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  3126. },
  3127. "dist": {
  3128. "type": "zip",
  3129. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  3130. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  3131. "shasum": ""
  3132. },
  3133. "require": {
  3134. "ext-tokenizer": "*",
  3135. "php": ">=7.1"
  3136. },
  3137. "require-dev": {
  3138. "ircmaxell/php-yacc": "^0.0.7",
  3139. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  3140. },
  3141. "bin": [
  3142. "bin/php-parse"
  3143. ],
  3144. "type": "library",
  3145. "extra": {
  3146. "branch-alias": {
  3147. "dev-master": "4.9-dev"
  3148. }
  3149. },
  3150. "autoload": {
  3151. "psr-4": {
  3152. "PhpParser\\": "lib/PhpParser"
  3153. }
  3154. },
  3155. "notification-url": "https://packagist.org/downloads/",
  3156. "license": [
  3157. "BSD-3-Clause"
  3158. ],
  3159. "authors": [
  3160. {
  3161. "name": "Nikita Popov"
  3162. }
  3163. ],
  3164. "description": "A PHP parser written in PHP",
  3165. "keywords": [
  3166. "parser",
  3167. "php"
  3168. ],
  3169. "support": {
  3170. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3171. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  3172. },
  3173. "time": "2024-09-29T15:01:53+00:00"
  3174. },
  3175. {
  3176. "name": "nunomaduro/collision",
  3177. "version": "v7.10.0",
  3178. "source": {
  3179. "type": "git",
  3180. "url": "https://github.com/nunomaduro/collision.git",
  3181. "reference": "49ec67fa7b002712da8526678abd651c09f375b2"
  3182. },
  3183. "dist": {
  3184. "type": "zip",
  3185. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/49ec67fa7b002712da8526678abd651c09f375b2",
  3186. "reference": "49ec67fa7b002712da8526678abd651c09f375b2",
  3187. "shasum": ""
  3188. },
  3189. "require": {
  3190. "filp/whoops": "^2.15.3",
  3191. "nunomaduro/termwind": "^1.15.1",
  3192. "php": "^8.1.0",
  3193. "symfony/console": "^6.3.4"
  3194. },
  3195. "conflict": {
  3196. "laravel/framework": ">=11.0.0"
  3197. },
  3198. "require-dev": {
  3199. "brianium/paratest": "^7.3.0",
  3200. "laravel/framework": "^10.28.0",
  3201. "laravel/pint": "^1.13.3",
  3202. "laravel/sail": "^1.25.0",
  3203. "laravel/sanctum": "^3.3.1",
  3204. "laravel/tinker": "^2.8.2",
  3205. "nunomaduro/larastan": "^2.6.4",
  3206. "orchestra/testbench-core": "^8.13.0",
  3207. "pestphp/pest": "^2.23.2",
  3208. "phpunit/phpunit": "^10.4.1",
  3209. "sebastian/environment": "^6.0.1",
  3210. "spatie/laravel-ignition": "^2.3.1"
  3211. },
  3212. "type": "library",
  3213. "extra": {
  3214. "laravel": {
  3215. "providers": [
  3216. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  3217. ]
  3218. }
  3219. },
  3220. "autoload": {
  3221. "files": [
  3222. "./src/Adapters/Phpunit/Autoload.php"
  3223. ],
  3224. "psr-4": {
  3225. "NunoMaduro\\Collision\\": "src/"
  3226. }
  3227. },
  3228. "notification-url": "https://packagist.org/downloads/",
  3229. "license": [
  3230. "MIT"
  3231. ],
  3232. "authors": [
  3233. {
  3234. "name": "Nuno Maduro",
  3235. "email": "enunomaduro@gmail.com"
  3236. }
  3237. ],
  3238. "description": "Cli error handling for console/command-line PHP applications.",
  3239. "keywords": [
  3240. "artisan",
  3241. "cli",
  3242. "command-line",
  3243. "console",
  3244. "error",
  3245. "handling",
  3246. "laravel",
  3247. "laravel-zero",
  3248. "php",
  3249. "symfony"
  3250. ],
  3251. "support": {
  3252. "issues": "https://github.com/nunomaduro/collision/issues",
  3253. "source": "https://github.com/nunomaduro/collision"
  3254. },
  3255. "funding": [
  3256. {
  3257. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3258. "type": "custom"
  3259. },
  3260. {
  3261. "url": "https://github.com/nunomaduro",
  3262. "type": "github"
  3263. },
  3264. {
  3265. "url": "https://www.patreon.com/nunomaduro",
  3266. "type": "patreon"
  3267. }
  3268. ],
  3269. "time": "2023-10-11T15:45:01+00:00"
  3270. },
  3271. {
  3272. "name": "nunomaduro/termwind",
  3273. "version": "v1.15.1",
  3274. "source": {
  3275. "type": "git",
  3276. "url": "https://github.com/nunomaduro/termwind.git",
  3277. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  3278. },
  3279. "dist": {
  3280. "type": "zip",
  3281. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3282. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3283. "shasum": ""
  3284. },
  3285. "require": {
  3286. "ext-mbstring": "*",
  3287. "php": "^8.0",
  3288. "symfony/console": "^5.3.0|^6.0.0"
  3289. },
  3290. "require-dev": {
  3291. "ergebnis/phpstan-rules": "^1.0.",
  3292. "illuminate/console": "^8.0|^9.0",
  3293. "illuminate/support": "^8.0|^9.0",
  3294. "laravel/pint": "^1.0.0",
  3295. "pestphp/pest": "^1.21.0",
  3296. "pestphp/pest-plugin-mock": "^1.0",
  3297. "phpstan/phpstan": "^1.4.6",
  3298. "phpstan/phpstan-strict-rules": "^1.1.0",
  3299. "symfony/var-dumper": "^5.2.7|^6.0.0",
  3300. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3301. },
  3302. "type": "library",
  3303. "extra": {
  3304. "laravel": {
  3305. "providers": [
  3306. "Termwind\\Laravel\\TermwindServiceProvider"
  3307. ]
  3308. }
  3309. },
  3310. "autoload": {
  3311. "files": [
  3312. "src/Functions.php"
  3313. ],
  3314. "psr-4": {
  3315. "Termwind\\": "src/"
  3316. }
  3317. },
  3318. "notification-url": "https://packagist.org/downloads/",
  3319. "license": [
  3320. "MIT"
  3321. ],
  3322. "authors": [
  3323. {
  3324. "name": "Nuno Maduro",
  3325. "email": "enunomaduro@gmail.com"
  3326. }
  3327. ],
  3328. "description": "Its like Tailwind CSS, but for the console.",
  3329. "keywords": [
  3330. "cli",
  3331. "console",
  3332. "css",
  3333. "package",
  3334. "php",
  3335. "style"
  3336. ],
  3337. "support": {
  3338. "issues": "https://github.com/nunomaduro/termwind/issues",
  3339. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  3340. },
  3341. "funding": [
  3342. {
  3343. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3344. "type": "custom"
  3345. },
  3346. {
  3347. "url": "https://github.com/nunomaduro",
  3348. "type": "github"
  3349. },
  3350. {
  3351. "url": "https://github.com/xiCO2k",
  3352. "type": "github"
  3353. }
  3354. ],
  3355. "time": "2023-02-08T01:06:31+00:00"
  3356. },
  3357. {
  3358. "name": "paragonie/constant_time_encoding",
  3359. "version": "v2.7.0",
  3360. "source": {
  3361. "type": "git",
  3362. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3363. "reference": "52a0d99e69f56b9ec27ace92ba56897fe6993105"
  3364. },
  3365. "dist": {
  3366. "type": "zip",
  3367. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/52a0d99e69f56b9ec27ace92ba56897fe6993105",
  3368. "reference": "52a0d99e69f56b9ec27ace92ba56897fe6993105",
  3369. "shasum": ""
  3370. },
  3371. "require": {
  3372. "php": "^7|^8"
  3373. },
  3374. "require-dev": {
  3375. "phpunit/phpunit": "^6|^7|^8|^9",
  3376. "vimeo/psalm": "^1|^2|^3|^4"
  3377. },
  3378. "type": "library",
  3379. "autoload": {
  3380. "psr-4": {
  3381. "ParagonIE\\ConstantTime\\": "src/"
  3382. }
  3383. },
  3384. "notification-url": "https://packagist.org/downloads/",
  3385. "license": [
  3386. "MIT"
  3387. ],
  3388. "authors": [
  3389. {
  3390. "name": "Paragon Initiative Enterprises",
  3391. "email": "security@paragonie.com",
  3392. "homepage": "https://paragonie.com",
  3393. "role": "Maintainer"
  3394. },
  3395. {
  3396. "name": "Steve 'Sc00bz' Thomas",
  3397. "email": "steve@tobtu.com",
  3398. "homepage": "https://www.tobtu.com",
  3399. "role": "Original Developer"
  3400. }
  3401. ],
  3402. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3403. "keywords": [
  3404. "base16",
  3405. "base32",
  3406. "base32_decode",
  3407. "base32_encode",
  3408. "base64",
  3409. "base64_decode",
  3410. "base64_encode",
  3411. "bin2hex",
  3412. "encoding",
  3413. "hex",
  3414. "hex2bin",
  3415. "rfc4648"
  3416. ],
  3417. "support": {
  3418. "email": "info@paragonie.com",
  3419. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3420. "source": "https://github.com/paragonie/constant_time_encoding"
  3421. },
  3422. "time": "2024-05-08T12:18:48+00:00"
  3423. },
  3424. {
  3425. "name": "phar-io/composer-distributor",
  3426. "version": "1.0.2",
  3427. "source": {
  3428. "type": "git",
  3429. "url": "https://github.com/phar-io/composer-distributor.git",
  3430. "reference": "dd7d936290b2a42b0c64bfe08090b5c597c280c9"
  3431. },
  3432. "dist": {
  3433. "type": "zip",
  3434. "url": "https://api.github.com/repos/phar-io/composer-distributor/zipball/dd7d936290b2a42b0c64bfe08090b5c597c280c9",
  3435. "reference": "dd7d936290b2a42b0c64bfe08090b5c597c280c9",
  3436. "shasum": ""
  3437. },
  3438. "require": {
  3439. "composer-plugin-api": "^1.1 || ^2.0",
  3440. "ext-dom": "*",
  3441. "ext-libxml": "*",
  3442. "phar-io/filesystem": "^2.0",
  3443. "phar-io/gnupg": "^1.0",
  3444. "php": "^7.3 || ^8.0"
  3445. },
  3446. "require-dev": {
  3447. "composer/composer": "^2.0",
  3448. "phpunit/phpunit": "^9.4"
  3449. },
  3450. "type": "library",
  3451. "autoload": {
  3452. "psr-4": {
  3453. "PharIo\\ComposerDistributor\\": "src/"
  3454. }
  3455. },
  3456. "notification-url": "https://packagist.org/downloads/",
  3457. "license": [
  3458. "MIT"
  3459. ],
  3460. "authors": [
  3461. {
  3462. "name": "Andreas Heigl",
  3463. "email": "andreas@heigl.org",
  3464. "role": "Developer"
  3465. },
  3466. {
  3467. "name": "Arne Blankerts",
  3468. "email": "arne@blankerts.de",
  3469. "role": "Developer"
  3470. },
  3471. {
  3472. "name": "Sebastian Feldmann",
  3473. "email": "sf@sebastian-feldmann.info",
  3474. "role": "Developer"
  3475. }
  3476. ],
  3477. "description": "Base Code for a composer plugin that installs PHAR-files",
  3478. "homepage": "https://phar.io",
  3479. "keywords": [
  3480. "bin",
  3481. "binary",
  3482. "composer",
  3483. "distribute",
  3484. "phar",
  3485. "phive"
  3486. ],
  3487. "support": {
  3488. "issues": "https://github.com/phar-io/composer-distributor/issues",
  3489. "source": "https://github.com/phar-io/composer-distributor/tree/1.0.2"
  3490. },
  3491. "funding": [
  3492. {
  3493. "url": "https://phar.io",
  3494. "type": "other"
  3495. }
  3496. ],
  3497. "time": "2023-05-31T17:05:49+00:00"
  3498. },
  3499. {
  3500. "name": "phar-io/executor",
  3501. "version": "1.0.1",
  3502. "source": {
  3503. "type": "git",
  3504. "url": "https://github.com/phar-io/executor.git",
  3505. "reference": "5bfb7400224a0c1cf83343660af85c7f5a073473"
  3506. },
  3507. "dist": {
  3508. "type": "zip",
  3509. "url": "https://api.github.com/repos/phar-io/executor/zipball/5bfb7400224a0c1cf83343660af85c7f5a073473",
  3510. "reference": "5bfb7400224a0c1cf83343660af85c7f5a073473",
  3511. "shasum": ""
  3512. },
  3513. "require": {
  3514. "phar-io/filesystem": "^2.0",
  3515. "php": "^7.2||^8.0"
  3516. },
  3517. "type": "library",
  3518. "autoload": {
  3519. "classmap": [
  3520. "src/"
  3521. ]
  3522. },
  3523. "notification-url": "https://packagist.org/downloads/",
  3524. "license": [
  3525. "BSD-3-Clause"
  3526. ],
  3527. "authors": [
  3528. {
  3529. "name": "Arne Blankerts",
  3530. "email": "arne@blankerts.de",
  3531. "role": "Developer"
  3532. },
  3533. {
  3534. "name": "Sebastian Heuer",
  3535. "email": "sebastian@phpeople.de",
  3536. "role": "Developer"
  3537. }
  3538. ],
  3539. "support": {
  3540. "issues": "https://github.com/phar-io/executor/issues",
  3541. "source": "https://github.com/phar-io/executor/tree/1.0.1"
  3542. },
  3543. "time": "2020-11-30T10:53:57+00:00"
  3544. },
  3545. {
  3546. "name": "phar-io/filesystem",
  3547. "version": "2.0.1",
  3548. "source": {
  3549. "type": "git",
  3550. "url": "https://github.com/phar-io/filesystem.git",
  3551. "reference": "222e3ea432262a05706b7066697c21257664d9d1"
  3552. },
  3553. "dist": {
  3554. "type": "zip",
  3555. "url": "https://api.github.com/repos/phar-io/filesystem/zipball/222e3ea432262a05706b7066697c21257664d9d1",
  3556. "reference": "222e3ea432262a05706b7066697c21257664d9d1",
  3557. "shasum": ""
  3558. },
  3559. "require": {
  3560. "php": "^7.2 || ^8.0"
  3561. },
  3562. "type": "library",
  3563. "autoload": {
  3564. "classmap": [
  3565. "src/"
  3566. ]
  3567. },
  3568. "notification-url": "https://packagist.org/downloads/",
  3569. "license": [
  3570. "BSD-3-Clause"
  3571. ],
  3572. "authors": [
  3573. {
  3574. "name": "Arne Blankerts",
  3575. "email": "arne@blankerts.de",
  3576. "role": "Developer"
  3577. },
  3578. {
  3579. "name": "Sebastian Heuer",
  3580. "email": "sebastian@phpeople.de",
  3581. "role": "Developer"
  3582. }
  3583. ],
  3584. "support": {
  3585. "issues": "https://github.com/phar-io/filesystem/issues",
  3586. "source": "https://github.com/phar-io/filesystem/tree/2.0.1"
  3587. },
  3588. "time": "2020-11-30T10:16:22+00:00"
  3589. },
  3590. {
  3591. "name": "phar-io/gnupg",
  3592. "version": "1.0.3",
  3593. "source": {
  3594. "type": "git",
  3595. "url": "https://github.com/phar-io/gnupg.git",
  3596. "reference": "ed8ab1740ac4e9db99500e7252911f2821357093"
  3597. },
  3598. "dist": {
  3599. "type": "zip",
  3600. "url": "https://api.github.com/repos/phar-io/gnupg/zipball/ed8ab1740ac4e9db99500e7252911f2821357093",
  3601. "reference": "ed8ab1740ac4e9db99500e7252911f2821357093",
  3602. "shasum": ""
  3603. },
  3604. "require": {
  3605. "phar-io/executor": "^1.0",
  3606. "phar-io/filesystem": "^2.0",
  3607. "php": "^7.2||^8.0"
  3608. },
  3609. "type": "library",
  3610. "autoload": {
  3611. "classmap": [
  3612. "src/"
  3613. ]
  3614. },
  3615. "notification-url": "https://packagist.org/downloads/",
  3616. "license": [
  3617. "BSD-3-Clause"
  3618. ],
  3619. "authors": [
  3620. {
  3621. "name": "Arne Blankerts",
  3622. "email": "arne@blankerts.de",
  3623. "role": "Developer"
  3624. },
  3625. {
  3626. "name": "Sebastian Heuer",
  3627. "email": "sebastian@phpeople.de",
  3628. "role": "Developer"
  3629. }
  3630. ],
  3631. "description": "Thin GnuPG wrapper class around the gnupg binary, mimicking the pecl/gnupg api",
  3632. "support": {
  3633. "issues": "https://github.com/phar-io/gnupg/issues",
  3634. "source": "https://github.com/phar-io/gnupg/tree/1.0.3"
  3635. },
  3636. "time": "2024-08-22T20:45:57+00:00"
  3637. },
  3638. {
  3639. "name": "phar-io/manifest",
  3640. "version": "2.0.4",
  3641. "source": {
  3642. "type": "git",
  3643. "url": "https://github.com/phar-io/manifest.git",
  3644. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  3645. },
  3646. "dist": {
  3647. "type": "zip",
  3648. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  3649. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  3650. "shasum": ""
  3651. },
  3652. "require": {
  3653. "ext-dom": "*",
  3654. "ext-libxml": "*",
  3655. "ext-phar": "*",
  3656. "ext-xmlwriter": "*",
  3657. "phar-io/version": "^3.0.1",
  3658. "php": "^7.2 || ^8.0"
  3659. },
  3660. "type": "library",
  3661. "extra": {
  3662. "branch-alias": {
  3663. "dev-master": "2.0.x-dev"
  3664. }
  3665. },
  3666. "autoload": {
  3667. "classmap": [
  3668. "src/"
  3669. ]
  3670. },
  3671. "notification-url": "https://packagist.org/downloads/",
  3672. "license": [
  3673. "BSD-3-Clause"
  3674. ],
  3675. "authors": [
  3676. {
  3677. "name": "Arne Blankerts",
  3678. "email": "arne@blankerts.de",
  3679. "role": "Developer"
  3680. },
  3681. {
  3682. "name": "Sebastian Heuer",
  3683. "email": "sebastian@phpeople.de",
  3684. "role": "Developer"
  3685. },
  3686. {
  3687. "name": "Sebastian Bergmann",
  3688. "email": "sebastian@phpunit.de",
  3689. "role": "Developer"
  3690. }
  3691. ],
  3692. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  3693. "support": {
  3694. "issues": "https://github.com/phar-io/manifest/issues",
  3695. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  3696. },
  3697. "funding": [
  3698. {
  3699. "url": "https://github.com/theseer",
  3700. "type": "github"
  3701. }
  3702. ],
  3703. "time": "2024-03-03T12:33:53+00:00"
  3704. },
  3705. {
  3706. "name": "phar-io/version",
  3707. "version": "3.2.1",
  3708. "source": {
  3709. "type": "git",
  3710. "url": "https://github.com/phar-io/version.git",
  3711. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  3712. },
  3713. "dist": {
  3714. "type": "zip",
  3715. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  3716. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  3717. "shasum": ""
  3718. },
  3719. "require": {
  3720. "php": "^7.2 || ^8.0"
  3721. },
  3722. "type": "library",
  3723. "autoload": {
  3724. "classmap": [
  3725. "src/"
  3726. ]
  3727. },
  3728. "notification-url": "https://packagist.org/downloads/",
  3729. "license": [
  3730. "BSD-3-Clause"
  3731. ],
  3732. "authors": [
  3733. {
  3734. "name": "Arne Blankerts",
  3735. "email": "arne@blankerts.de",
  3736. "role": "Developer"
  3737. },
  3738. {
  3739. "name": "Sebastian Heuer",
  3740. "email": "sebastian@phpeople.de",
  3741. "role": "Developer"
  3742. },
  3743. {
  3744. "name": "Sebastian Bergmann",
  3745. "email": "sebastian@phpunit.de",
  3746. "role": "Developer"
  3747. }
  3748. ],
  3749. "description": "Library for handling version information and constraints",
  3750. "support": {
  3751. "issues": "https://github.com/phar-io/version/issues",
  3752. "source": "https://github.com/phar-io/version/tree/3.2.1"
  3753. },
  3754. "time": "2022-02-21T01:04:05+00:00"
  3755. },
  3756. {
  3757. "name": "phpdocumentor/reflection-common",
  3758. "version": "2.2.0",
  3759. "source": {
  3760. "type": "git",
  3761. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3762. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3763. },
  3764. "dist": {
  3765. "type": "zip",
  3766. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3767. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3768. "shasum": ""
  3769. },
  3770. "require": {
  3771. "php": "^7.2 || ^8.0"
  3772. },
  3773. "type": "library",
  3774. "extra": {
  3775. "branch-alias": {
  3776. "dev-2.x": "2.x-dev"
  3777. }
  3778. },
  3779. "autoload": {
  3780. "psr-4": {
  3781. "phpDocumentor\\Reflection\\": "src/"
  3782. }
  3783. },
  3784. "notification-url": "https://packagist.org/downloads/",
  3785. "license": [
  3786. "MIT"
  3787. ],
  3788. "authors": [
  3789. {
  3790. "name": "Jaap van Otterdijk",
  3791. "email": "opensource@ijaap.nl"
  3792. }
  3793. ],
  3794. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3795. "homepage": "http://www.phpdoc.org",
  3796. "keywords": [
  3797. "FQSEN",
  3798. "phpDocumentor",
  3799. "phpdoc",
  3800. "reflection",
  3801. "static analysis"
  3802. ],
  3803. "support": {
  3804. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3805. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  3806. },
  3807. "time": "2020-06-27T09:03:43+00:00"
  3808. },
  3809. {
  3810. "name": "phpdocumentor/reflection-docblock",
  3811. "version": "5.4.1",
  3812. "source": {
  3813. "type": "git",
  3814. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3815. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c"
  3816. },
  3817. "dist": {
  3818. "type": "zip",
  3819. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  3820. "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c",
  3821. "shasum": ""
  3822. },
  3823. "require": {
  3824. "doctrine/deprecations": "^1.1",
  3825. "ext-filter": "*",
  3826. "php": "^7.4 || ^8.0",
  3827. "phpdocumentor/reflection-common": "^2.2",
  3828. "phpdocumentor/type-resolver": "^1.7",
  3829. "phpstan/phpdoc-parser": "^1.7",
  3830. "webmozart/assert": "^1.9.1"
  3831. },
  3832. "require-dev": {
  3833. "mockery/mockery": "~1.3.5",
  3834. "phpstan/extension-installer": "^1.1",
  3835. "phpstan/phpstan": "^1.8",
  3836. "phpstan/phpstan-mockery": "^1.1",
  3837. "phpstan/phpstan-webmozart-assert": "^1.2",
  3838. "phpunit/phpunit": "^9.5",
  3839. "vimeo/psalm": "^5.13"
  3840. },
  3841. "type": "library",
  3842. "extra": {
  3843. "branch-alias": {
  3844. "dev-master": "5.x-dev"
  3845. }
  3846. },
  3847. "autoload": {
  3848. "psr-4": {
  3849. "phpDocumentor\\Reflection\\": "src"
  3850. }
  3851. },
  3852. "notification-url": "https://packagist.org/downloads/",
  3853. "license": [
  3854. "MIT"
  3855. ],
  3856. "authors": [
  3857. {
  3858. "name": "Mike van Riel",
  3859. "email": "me@mikevanriel.com"
  3860. },
  3861. {
  3862. "name": "Jaap van Otterdijk",
  3863. "email": "opensource@ijaap.nl"
  3864. }
  3865. ],
  3866. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3867. "support": {
  3868. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  3869. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1"
  3870. },
  3871. "time": "2024-05-21T05:55:05+00:00"
  3872. },
  3873. {
  3874. "name": "phpdocumentor/type-resolver",
  3875. "version": "1.8.2",
  3876. "source": {
  3877. "type": "git",
  3878. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3879. "reference": "153ae662783729388a584b4361f2545e4d841e3c"
  3880. },
  3881. "dist": {
  3882. "type": "zip",
  3883. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c",
  3884. "reference": "153ae662783729388a584b4361f2545e4d841e3c",
  3885. "shasum": ""
  3886. },
  3887. "require": {
  3888. "doctrine/deprecations": "^1.0",
  3889. "php": "^7.3 || ^8.0",
  3890. "phpdocumentor/reflection-common": "^2.0",
  3891. "phpstan/phpdoc-parser": "^1.13"
  3892. },
  3893. "require-dev": {
  3894. "ext-tokenizer": "*",
  3895. "phpbench/phpbench": "^1.2",
  3896. "phpstan/extension-installer": "^1.1",
  3897. "phpstan/phpstan": "^1.8",
  3898. "phpstan/phpstan-phpunit": "^1.1",
  3899. "phpunit/phpunit": "^9.5",
  3900. "rector/rector": "^0.13.9",
  3901. "vimeo/psalm": "^4.25"
  3902. },
  3903. "type": "library",
  3904. "extra": {
  3905. "branch-alias": {
  3906. "dev-1.x": "1.x-dev"
  3907. }
  3908. },
  3909. "autoload": {
  3910. "psr-4": {
  3911. "phpDocumentor\\Reflection\\": "src"
  3912. }
  3913. },
  3914. "notification-url": "https://packagist.org/downloads/",
  3915. "license": [
  3916. "MIT"
  3917. ],
  3918. "authors": [
  3919. {
  3920. "name": "Mike van Riel",
  3921. "email": "me@mikevanriel.com"
  3922. }
  3923. ],
  3924. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3925. "support": {
  3926. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  3927. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2"
  3928. },
  3929. "time": "2024-02-23T11:10:43+00:00"
  3930. },
  3931. {
  3932. "name": "phpstan/phpdoc-parser",
  3933. "version": "1.32.0",
  3934. "source": {
  3935. "type": "git",
  3936. "url": "https://github.com/phpstan/phpdoc-parser.git",
  3937. "reference": "6ca22b154efdd9e3c68c56f5d94670920a1c19a4"
  3938. },
  3939. "dist": {
  3940. "type": "zip",
  3941. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/6ca22b154efdd9e3c68c56f5d94670920a1c19a4",
  3942. "reference": "6ca22b154efdd9e3c68c56f5d94670920a1c19a4",
  3943. "shasum": ""
  3944. },
  3945. "require": {
  3946. "php": "^7.2 || ^8.0"
  3947. },
  3948. "require-dev": {
  3949. "doctrine/annotations": "^2.0",
  3950. "nikic/php-parser": "^4.15",
  3951. "php-parallel-lint/php-parallel-lint": "^1.2",
  3952. "phpstan/extension-installer": "^1.0",
  3953. "phpstan/phpstan": "^1.5",
  3954. "phpstan/phpstan-phpunit": "^1.1",
  3955. "phpstan/phpstan-strict-rules": "^1.0",
  3956. "phpunit/phpunit": "^9.5",
  3957. "symfony/process": "^5.2"
  3958. },
  3959. "type": "library",
  3960. "autoload": {
  3961. "psr-4": {
  3962. "PHPStan\\PhpDocParser\\": [
  3963. "src/"
  3964. ]
  3965. }
  3966. },
  3967. "notification-url": "https://packagist.org/downloads/",
  3968. "license": [
  3969. "MIT"
  3970. ],
  3971. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  3972. "support": {
  3973. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  3974. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.32.0"
  3975. },
  3976. "time": "2024-09-26T07:23:32+00:00"
  3977. },
  3978. {
  3979. "name": "phpstan/phpstan",
  3980. "version": "1.12.5",
  3981. "source": {
  3982. "type": "git",
  3983. "url": "https://github.com/phpstan/phpstan.git",
  3984. "reference": "7e6c6cb7cecb0a6254009a1a8a7d54ec99812b17"
  3985. },
  3986. "dist": {
  3987. "type": "zip",
  3988. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/7e6c6cb7cecb0a6254009a1a8a7d54ec99812b17",
  3989. "reference": "7e6c6cb7cecb0a6254009a1a8a7d54ec99812b17",
  3990. "shasum": ""
  3991. },
  3992. "require": {
  3993. "php": "^7.2|^8.0"
  3994. },
  3995. "conflict": {
  3996. "phpstan/phpstan-shim": "*"
  3997. },
  3998. "bin": [
  3999. "phpstan",
  4000. "phpstan.phar"
  4001. ],
  4002. "type": "library",
  4003. "autoload": {
  4004. "files": [
  4005. "bootstrap.php"
  4006. ]
  4007. },
  4008. "notification-url": "https://packagist.org/downloads/",
  4009. "license": [
  4010. "MIT"
  4011. ],
  4012. "description": "PHPStan - PHP Static Analysis Tool",
  4013. "keywords": [
  4014. "dev",
  4015. "static analysis"
  4016. ],
  4017. "support": {
  4018. "docs": "https://phpstan.org/user-guide/getting-started",
  4019. "forum": "https://github.com/phpstan/phpstan/discussions",
  4020. "issues": "https://github.com/phpstan/phpstan/issues",
  4021. "security": "https://github.com/phpstan/phpstan/security/policy",
  4022. "source": "https://github.com/phpstan/phpstan-src"
  4023. },
  4024. "funding": [
  4025. {
  4026. "url": "https://github.com/ondrejmirtes",
  4027. "type": "github"
  4028. },
  4029. {
  4030. "url": "https://github.com/phpstan",
  4031. "type": "github"
  4032. }
  4033. ],
  4034. "time": "2024-09-26T12:45:22+00:00"
  4035. },
  4036. {
  4037. "name": "phpunit/php-code-coverage",
  4038. "version": "9.2.32",
  4039. "source": {
  4040. "type": "git",
  4041. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4042. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  4043. },
  4044. "dist": {
  4045. "type": "zip",
  4046. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  4047. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  4048. "shasum": ""
  4049. },
  4050. "require": {
  4051. "ext-dom": "*",
  4052. "ext-libxml": "*",
  4053. "ext-xmlwriter": "*",
  4054. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  4055. "php": ">=7.3",
  4056. "phpunit/php-file-iterator": "^3.0.6",
  4057. "phpunit/php-text-template": "^2.0.4",
  4058. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  4059. "sebastian/complexity": "^2.0.3",
  4060. "sebastian/environment": "^5.1.5",
  4061. "sebastian/lines-of-code": "^1.0.4",
  4062. "sebastian/version": "^3.0.2",
  4063. "theseer/tokenizer": "^1.2.3"
  4064. },
  4065. "require-dev": {
  4066. "phpunit/phpunit": "^9.6"
  4067. },
  4068. "suggest": {
  4069. "ext-pcov": "PHP extension that provides line coverage",
  4070. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  4071. },
  4072. "type": "library",
  4073. "extra": {
  4074. "branch-alias": {
  4075. "dev-main": "9.2.x-dev"
  4076. }
  4077. },
  4078. "autoload": {
  4079. "classmap": [
  4080. "src/"
  4081. ]
  4082. },
  4083. "notification-url": "https://packagist.org/downloads/",
  4084. "license": [
  4085. "BSD-3-Clause"
  4086. ],
  4087. "authors": [
  4088. {
  4089. "name": "Sebastian Bergmann",
  4090. "email": "sebastian@phpunit.de",
  4091. "role": "lead"
  4092. }
  4093. ],
  4094. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4095. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4096. "keywords": [
  4097. "coverage",
  4098. "testing",
  4099. "xunit"
  4100. ],
  4101. "support": {
  4102. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  4103. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  4104. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  4105. },
  4106. "funding": [
  4107. {
  4108. "url": "https://github.com/sebastianbergmann",
  4109. "type": "github"
  4110. }
  4111. ],
  4112. "time": "2024-08-22T04:23:01+00:00"
  4113. },
  4114. {
  4115. "name": "phpunit/php-file-iterator",
  4116. "version": "3.0.6",
  4117. "source": {
  4118. "type": "git",
  4119. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4120. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  4121. },
  4122. "dist": {
  4123. "type": "zip",
  4124. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  4125. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  4126. "shasum": ""
  4127. },
  4128. "require": {
  4129. "php": ">=7.3"
  4130. },
  4131. "require-dev": {
  4132. "phpunit/phpunit": "^9.3"
  4133. },
  4134. "type": "library",
  4135. "extra": {
  4136. "branch-alias": {
  4137. "dev-master": "3.0-dev"
  4138. }
  4139. },
  4140. "autoload": {
  4141. "classmap": [
  4142. "src/"
  4143. ]
  4144. },
  4145. "notification-url": "https://packagist.org/downloads/",
  4146. "license": [
  4147. "BSD-3-Clause"
  4148. ],
  4149. "authors": [
  4150. {
  4151. "name": "Sebastian Bergmann",
  4152. "email": "sebastian@phpunit.de",
  4153. "role": "lead"
  4154. }
  4155. ],
  4156. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4157. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4158. "keywords": [
  4159. "filesystem",
  4160. "iterator"
  4161. ],
  4162. "support": {
  4163. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  4164. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  4165. },
  4166. "funding": [
  4167. {
  4168. "url": "https://github.com/sebastianbergmann",
  4169. "type": "github"
  4170. }
  4171. ],
  4172. "time": "2021-12-02T12:48:52+00:00"
  4173. },
  4174. {
  4175. "name": "phpunit/php-invoker",
  4176. "version": "3.1.1",
  4177. "source": {
  4178. "type": "git",
  4179. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  4180. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  4181. },
  4182. "dist": {
  4183. "type": "zip",
  4184. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  4185. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  4186. "shasum": ""
  4187. },
  4188. "require": {
  4189. "php": ">=7.3"
  4190. },
  4191. "require-dev": {
  4192. "ext-pcntl": "*",
  4193. "phpunit/phpunit": "^9.3"
  4194. },
  4195. "suggest": {
  4196. "ext-pcntl": "*"
  4197. },
  4198. "type": "library",
  4199. "extra": {
  4200. "branch-alias": {
  4201. "dev-master": "3.1-dev"
  4202. }
  4203. },
  4204. "autoload": {
  4205. "classmap": [
  4206. "src/"
  4207. ]
  4208. },
  4209. "notification-url": "https://packagist.org/downloads/",
  4210. "license": [
  4211. "BSD-3-Clause"
  4212. ],
  4213. "authors": [
  4214. {
  4215. "name": "Sebastian Bergmann",
  4216. "email": "sebastian@phpunit.de",
  4217. "role": "lead"
  4218. }
  4219. ],
  4220. "description": "Invoke callables with a timeout",
  4221. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  4222. "keywords": [
  4223. "process"
  4224. ],
  4225. "support": {
  4226. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  4227. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  4228. },
  4229. "funding": [
  4230. {
  4231. "url": "https://github.com/sebastianbergmann",
  4232. "type": "github"
  4233. }
  4234. ],
  4235. "time": "2020-09-28T05:58:55+00:00"
  4236. },
  4237. {
  4238. "name": "phpunit/php-text-template",
  4239. "version": "2.0.4",
  4240. "source": {
  4241. "type": "git",
  4242. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4243. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  4244. },
  4245. "dist": {
  4246. "type": "zip",
  4247. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  4248. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  4249. "shasum": ""
  4250. },
  4251. "require": {
  4252. "php": ">=7.3"
  4253. },
  4254. "require-dev": {
  4255. "phpunit/phpunit": "^9.3"
  4256. },
  4257. "type": "library",
  4258. "extra": {
  4259. "branch-alias": {
  4260. "dev-master": "2.0-dev"
  4261. }
  4262. },
  4263. "autoload": {
  4264. "classmap": [
  4265. "src/"
  4266. ]
  4267. },
  4268. "notification-url": "https://packagist.org/downloads/",
  4269. "license": [
  4270. "BSD-3-Clause"
  4271. ],
  4272. "authors": [
  4273. {
  4274. "name": "Sebastian Bergmann",
  4275. "email": "sebastian@phpunit.de",
  4276. "role": "lead"
  4277. }
  4278. ],
  4279. "description": "Simple template engine.",
  4280. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4281. "keywords": [
  4282. "template"
  4283. ],
  4284. "support": {
  4285. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  4286. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  4287. },
  4288. "funding": [
  4289. {
  4290. "url": "https://github.com/sebastianbergmann",
  4291. "type": "github"
  4292. }
  4293. ],
  4294. "time": "2020-10-26T05:33:50+00:00"
  4295. },
  4296. {
  4297. "name": "phpunit/php-timer",
  4298. "version": "5.0.3",
  4299. "source": {
  4300. "type": "git",
  4301. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4302. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  4303. },
  4304. "dist": {
  4305. "type": "zip",
  4306. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  4307. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  4308. "shasum": ""
  4309. },
  4310. "require": {
  4311. "php": ">=7.3"
  4312. },
  4313. "require-dev": {
  4314. "phpunit/phpunit": "^9.3"
  4315. },
  4316. "type": "library",
  4317. "extra": {
  4318. "branch-alias": {
  4319. "dev-master": "5.0-dev"
  4320. }
  4321. },
  4322. "autoload": {
  4323. "classmap": [
  4324. "src/"
  4325. ]
  4326. },
  4327. "notification-url": "https://packagist.org/downloads/",
  4328. "license": [
  4329. "BSD-3-Clause"
  4330. ],
  4331. "authors": [
  4332. {
  4333. "name": "Sebastian Bergmann",
  4334. "email": "sebastian@phpunit.de",
  4335. "role": "lead"
  4336. }
  4337. ],
  4338. "description": "Utility class for timing",
  4339. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4340. "keywords": [
  4341. "timer"
  4342. ],
  4343. "support": {
  4344. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  4345. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  4346. },
  4347. "funding": [
  4348. {
  4349. "url": "https://github.com/sebastianbergmann",
  4350. "type": "github"
  4351. }
  4352. ],
  4353. "time": "2020-10-26T13:16:10+00:00"
  4354. },
  4355. {
  4356. "name": "phpunit/phpunit",
  4357. "version": "9.6.21",
  4358. "source": {
  4359. "type": "git",
  4360. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4361. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa"
  4362. },
  4363. "dist": {
  4364. "type": "zip",
  4365. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  4366. "reference": "de6abf3b6f8dd955fac3caad3af7a9504e8c2ffa",
  4367. "shasum": ""
  4368. },
  4369. "require": {
  4370. "doctrine/instantiator": "^1.5.0 || ^2",
  4371. "ext-dom": "*",
  4372. "ext-json": "*",
  4373. "ext-libxml": "*",
  4374. "ext-mbstring": "*",
  4375. "ext-xml": "*",
  4376. "ext-xmlwriter": "*",
  4377. "myclabs/deep-copy": "^1.12.0",
  4378. "phar-io/manifest": "^2.0.4",
  4379. "phar-io/version": "^3.2.1",
  4380. "php": ">=7.3",
  4381. "phpunit/php-code-coverage": "^9.2.32",
  4382. "phpunit/php-file-iterator": "^3.0.6",
  4383. "phpunit/php-invoker": "^3.1.1",
  4384. "phpunit/php-text-template": "^2.0.4",
  4385. "phpunit/php-timer": "^5.0.3",
  4386. "sebastian/cli-parser": "^1.0.2",
  4387. "sebastian/code-unit": "^1.0.8",
  4388. "sebastian/comparator": "^4.0.8",
  4389. "sebastian/diff": "^4.0.6",
  4390. "sebastian/environment": "^5.1.5",
  4391. "sebastian/exporter": "^4.0.6",
  4392. "sebastian/global-state": "^5.0.7",
  4393. "sebastian/object-enumerator": "^4.0.4",
  4394. "sebastian/resource-operations": "^3.0.4",
  4395. "sebastian/type": "^3.2.1",
  4396. "sebastian/version": "^3.0.2"
  4397. },
  4398. "suggest": {
  4399. "ext-soap": "To be able to generate mocks based on WSDL files",
  4400. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  4401. },
  4402. "bin": [
  4403. "phpunit"
  4404. ],
  4405. "type": "library",
  4406. "extra": {
  4407. "branch-alias": {
  4408. "dev-master": "9.6-dev"
  4409. }
  4410. },
  4411. "autoload": {
  4412. "files": [
  4413. "src/Framework/Assert/Functions.php"
  4414. ],
  4415. "classmap": [
  4416. "src/"
  4417. ]
  4418. },
  4419. "notification-url": "https://packagist.org/downloads/",
  4420. "license": [
  4421. "BSD-3-Clause"
  4422. ],
  4423. "authors": [
  4424. {
  4425. "name": "Sebastian Bergmann",
  4426. "email": "sebastian@phpunit.de",
  4427. "role": "lead"
  4428. }
  4429. ],
  4430. "description": "The PHP Unit Testing framework.",
  4431. "homepage": "https://phpunit.de/",
  4432. "keywords": [
  4433. "phpunit",
  4434. "testing",
  4435. "xunit"
  4436. ],
  4437. "support": {
  4438. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  4439. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  4440. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.21"
  4441. },
  4442. "funding": [
  4443. {
  4444. "url": "https://phpunit.de/sponsors.html",
  4445. "type": "custom"
  4446. },
  4447. {
  4448. "url": "https://github.com/sebastianbergmann",
  4449. "type": "github"
  4450. },
  4451. {
  4452. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  4453. "type": "tidelift"
  4454. }
  4455. ],
  4456. "time": "2024-09-19T10:50:18+00:00"
  4457. },
  4458. {
  4459. "name": "psr/event-dispatcher",
  4460. "version": "1.0.0",
  4461. "source": {
  4462. "type": "git",
  4463. "url": "https://github.com/php-fig/event-dispatcher.git",
  4464. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4465. },
  4466. "dist": {
  4467. "type": "zip",
  4468. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4469. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4470. "shasum": ""
  4471. },
  4472. "require": {
  4473. "php": ">=7.2.0"
  4474. },
  4475. "type": "library",
  4476. "extra": {
  4477. "branch-alias": {
  4478. "dev-master": "1.0.x-dev"
  4479. }
  4480. },
  4481. "autoload": {
  4482. "psr-4": {
  4483. "Psr\\EventDispatcher\\": "src/"
  4484. }
  4485. },
  4486. "notification-url": "https://packagist.org/downloads/",
  4487. "license": [
  4488. "MIT"
  4489. ],
  4490. "authors": [
  4491. {
  4492. "name": "PHP-FIG",
  4493. "homepage": "http://www.php-fig.org/"
  4494. }
  4495. ],
  4496. "description": "Standard interfaces for event handling.",
  4497. "keywords": [
  4498. "events",
  4499. "psr",
  4500. "psr-14"
  4501. ],
  4502. "support": {
  4503. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4504. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4505. },
  4506. "time": "2019-01-08T18:20:26+00:00"
  4507. },
  4508. {
  4509. "name": "react/cache",
  4510. "version": "v1.2.0",
  4511. "source": {
  4512. "type": "git",
  4513. "url": "https://github.com/reactphp/cache.git",
  4514. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  4515. },
  4516. "dist": {
  4517. "type": "zip",
  4518. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  4519. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  4520. "shasum": ""
  4521. },
  4522. "require": {
  4523. "php": ">=5.3.0",
  4524. "react/promise": "^3.0 || ^2.0 || ^1.1"
  4525. },
  4526. "require-dev": {
  4527. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  4528. },
  4529. "type": "library",
  4530. "autoload": {
  4531. "psr-4": {
  4532. "React\\Cache\\": "src/"
  4533. }
  4534. },
  4535. "notification-url": "https://packagist.org/downloads/",
  4536. "license": [
  4537. "MIT"
  4538. ],
  4539. "authors": [
  4540. {
  4541. "name": "Christian Lück",
  4542. "email": "christian@clue.engineering",
  4543. "homepage": "https://clue.engineering/"
  4544. },
  4545. {
  4546. "name": "Cees-Jan Kiewiet",
  4547. "email": "reactphp@ceesjankiewiet.nl",
  4548. "homepage": "https://wyrihaximus.net/"
  4549. },
  4550. {
  4551. "name": "Jan Sorgalla",
  4552. "email": "jsorgalla@gmail.com",
  4553. "homepage": "https://sorgalla.com/"
  4554. },
  4555. {
  4556. "name": "Chris Boden",
  4557. "email": "cboden@gmail.com",
  4558. "homepage": "https://cboden.dev/"
  4559. }
  4560. ],
  4561. "description": "Async, Promise-based cache interface for ReactPHP",
  4562. "keywords": [
  4563. "cache",
  4564. "caching",
  4565. "promise",
  4566. "reactphp"
  4567. ],
  4568. "support": {
  4569. "issues": "https://github.com/reactphp/cache/issues",
  4570. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  4571. },
  4572. "funding": [
  4573. {
  4574. "url": "https://opencollective.com/reactphp",
  4575. "type": "open_collective"
  4576. }
  4577. ],
  4578. "time": "2022-11-30T15:59:55+00:00"
  4579. },
  4580. {
  4581. "name": "react/child-process",
  4582. "version": "v0.6.5",
  4583. "source": {
  4584. "type": "git",
  4585. "url": "https://github.com/reactphp/child-process.git",
  4586. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  4587. },
  4588. "dist": {
  4589. "type": "zip",
  4590. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  4591. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  4592. "shasum": ""
  4593. },
  4594. "require": {
  4595. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  4596. "php": ">=5.3.0",
  4597. "react/event-loop": "^1.2",
  4598. "react/stream": "^1.2"
  4599. },
  4600. "require-dev": {
  4601. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  4602. "react/socket": "^1.8",
  4603. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  4604. },
  4605. "type": "library",
  4606. "autoload": {
  4607. "psr-4": {
  4608. "React\\ChildProcess\\": "src"
  4609. }
  4610. },
  4611. "notification-url": "https://packagist.org/downloads/",
  4612. "license": [
  4613. "MIT"
  4614. ],
  4615. "authors": [
  4616. {
  4617. "name": "Christian Lück",
  4618. "email": "christian@clue.engineering",
  4619. "homepage": "https://clue.engineering/"
  4620. },
  4621. {
  4622. "name": "Cees-Jan Kiewiet",
  4623. "email": "reactphp@ceesjankiewiet.nl",
  4624. "homepage": "https://wyrihaximus.net/"
  4625. },
  4626. {
  4627. "name": "Jan Sorgalla",
  4628. "email": "jsorgalla@gmail.com",
  4629. "homepage": "https://sorgalla.com/"
  4630. },
  4631. {
  4632. "name": "Chris Boden",
  4633. "email": "cboden@gmail.com",
  4634. "homepage": "https://cboden.dev/"
  4635. }
  4636. ],
  4637. "description": "Event-driven library for executing child processes with ReactPHP.",
  4638. "keywords": [
  4639. "event-driven",
  4640. "process",
  4641. "reactphp"
  4642. ],
  4643. "support": {
  4644. "issues": "https://github.com/reactphp/child-process/issues",
  4645. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  4646. },
  4647. "funding": [
  4648. {
  4649. "url": "https://github.com/WyriHaximus",
  4650. "type": "github"
  4651. },
  4652. {
  4653. "url": "https://github.com/clue",
  4654. "type": "github"
  4655. }
  4656. ],
  4657. "time": "2022-09-16T13:41:56+00:00"
  4658. },
  4659. {
  4660. "name": "react/dns",
  4661. "version": "v1.13.0",
  4662. "source": {
  4663. "type": "git",
  4664. "url": "https://github.com/reactphp/dns.git",
  4665. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  4666. },
  4667. "dist": {
  4668. "type": "zip",
  4669. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  4670. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  4671. "shasum": ""
  4672. },
  4673. "require": {
  4674. "php": ">=5.3.0",
  4675. "react/cache": "^1.0 || ^0.6 || ^0.5",
  4676. "react/event-loop": "^1.2",
  4677. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  4678. },
  4679. "require-dev": {
  4680. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  4681. "react/async": "^4.3 || ^3 || ^2",
  4682. "react/promise-timer": "^1.11"
  4683. },
  4684. "type": "library",
  4685. "autoload": {
  4686. "psr-4": {
  4687. "React\\Dns\\": "src/"
  4688. }
  4689. },
  4690. "notification-url": "https://packagist.org/downloads/",
  4691. "license": [
  4692. "MIT"
  4693. ],
  4694. "authors": [
  4695. {
  4696. "name": "Christian Lück",
  4697. "email": "christian@clue.engineering",
  4698. "homepage": "https://clue.engineering/"
  4699. },
  4700. {
  4701. "name": "Cees-Jan Kiewiet",
  4702. "email": "reactphp@ceesjankiewiet.nl",
  4703. "homepage": "https://wyrihaximus.net/"
  4704. },
  4705. {
  4706. "name": "Jan Sorgalla",
  4707. "email": "jsorgalla@gmail.com",
  4708. "homepage": "https://sorgalla.com/"
  4709. },
  4710. {
  4711. "name": "Chris Boden",
  4712. "email": "cboden@gmail.com",
  4713. "homepage": "https://cboden.dev/"
  4714. }
  4715. ],
  4716. "description": "Async DNS resolver for ReactPHP",
  4717. "keywords": [
  4718. "async",
  4719. "dns",
  4720. "dns-resolver",
  4721. "reactphp"
  4722. ],
  4723. "support": {
  4724. "issues": "https://github.com/reactphp/dns/issues",
  4725. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  4726. },
  4727. "funding": [
  4728. {
  4729. "url": "https://opencollective.com/reactphp",
  4730. "type": "open_collective"
  4731. }
  4732. ],
  4733. "time": "2024-06-13T14:18:03+00:00"
  4734. },
  4735. {
  4736. "name": "react/event-loop",
  4737. "version": "v1.5.0",
  4738. "source": {
  4739. "type": "git",
  4740. "url": "https://github.com/reactphp/event-loop.git",
  4741. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  4742. },
  4743. "dist": {
  4744. "type": "zip",
  4745. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  4746. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  4747. "shasum": ""
  4748. },
  4749. "require": {
  4750. "php": ">=5.3.0"
  4751. },
  4752. "require-dev": {
  4753. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  4754. },
  4755. "suggest": {
  4756. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  4757. },
  4758. "type": "library",
  4759. "autoload": {
  4760. "psr-4": {
  4761. "React\\EventLoop\\": "src/"
  4762. }
  4763. },
  4764. "notification-url": "https://packagist.org/downloads/",
  4765. "license": [
  4766. "MIT"
  4767. ],
  4768. "authors": [
  4769. {
  4770. "name": "Christian Lück",
  4771. "email": "christian@clue.engineering",
  4772. "homepage": "https://clue.engineering/"
  4773. },
  4774. {
  4775. "name": "Cees-Jan Kiewiet",
  4776. "email": "reactphp@ceesjankiewiet.nl",
  4777. "homepage": "https://wyrihaximus.net/"
  4778. },
  4779. {
  4780. "name": "Jan Sorgalla",
  4781. "email": "jsorgalla@gmail.com",
  4782. "homepage": "https://sorgalla.com/"
  4783. },
  4784. {
  4785. "name": "Chris Boden",
  4786. "email": "cboden@gmail.com",
  4787. "homepage": "https://cboden.dev/"
  4788. }
  4789. ],
  4790. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  4791. "keywords": [
  4792. "asynchronous",
  4793. "event-loop"
  4794. ],
  4795. "support": {
  4796. "issues": "https://github.com/reactphp/event-loop/issues",
  4797. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  4798. },
  4799. "funding": [
  4800. {
  4801. "url": "https://opencollective.com/reactphp",
  4802. "type": "open_collective"
  4803. }
  4804. ],
  4805. "time": "2023-11-13T13:48:05+00:00"
  4806. },
  4807. {
  4808. "name": "react/promise",
  4809. "version": "v3.2.0",
  4810. "source": {
  4811. "type": "git",
  4812. "url": "https://github.com/reactphp/promise.git",
  4813. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  4814. },
  4815. "dist": {
  4816. "type": "zip",
  4817. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  4818. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  4819. "shasum": ""
  4820. },
  4821. "require": {
  4822. "php": ">=7.1.0"
  4823. },
  4824. "require-dev": {
  4825. "phpstan/phpstan": "1.10.39 || 1.4.10",
  4826. "phpunit/phpunit": "^9.6 || ^7.5"
  4827. },
  4828. "type": "library",
  4829. "autoload": {
  4830. "files": [
  4831. "src/functions_include.php"
  4832. ],
  4833. "psr-4": {
  4834. "React\\Promise\\": "src/"
  4835. }
  4836. },
  4837. "notification-url": "https://packagist.org/downloads/",
  4838. "license": [
  4839. "MIT"
  4840. ],
  4841. "authors": [
  4842. {
  4843. "name": "Jan Sorgalla",
  4844. "email": "jsorgalla@gmail.com",
  4845. "homepage": "https://sorgalla.com/"
  4846. },
  4847. {
  4848. "name": "Christian Lück",
  4849. "email": "christian@clue.engineering",
  4850. "homepage": "https://clue.engineering/"
  4851. },
  4852. {
  4853. "name": "Cees-Jan Kiewiet",
  4854. "email": "reactphp@ceesjankiewiet.nl",
  4855. "homepage": "https://wyrihaximus.net/"
  4856. },
  4857. {
  4858. "name": "Chris Boden",
  4859. "email": "cboden@gmail.com",
  4860. "homepage": "https://cboden.dev/"
  4861. }
  4862. ],
  4863. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  4864. "keywords": [
  4865. "promise",
  4866. "promises"
  4867. ],
  4868. "support": {
  4869. "issues": "https://github.com/reactphp/promise/issues",
  4870. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  4871. },
  4872. "funding": [
  4873. {
  4874. "url": "https://opencollective.com/reactphp",
  4875. "type": "open_collective"
  4876. }
  4877. ],
  4878. "time": "2024-05-24T10:39:05+00:00"
  4879. },
  4880. {
  4881. "name": "react/socket",
  4882. "version": "v1.16.0",
  4883. "source": {
  4884. "type": "git",
  4885. "url": "https://github.com/reactphp/socket.git",
  4886. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  4887. },
  4888. "dist": {
  4889. "type": "zip",
  4890. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  4891. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  4892. "shasum": ""
  4893. },
  4894. "require": {
  4895. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  4896. "php": ">=5.3.0",
  4897. "react/dns": "^1.13",
  4898. "react/event-loop": "^1.2",
  4899. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  4900. "react/stream": "^1.4"
  4901. },
  4902. "require-dev": {
  4903. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  4904. "react/async": "^4.3 || ^3.3 || ^2",
  4905. "react/promise-stream": "^1.4",
  4906. "react/promise-timer": "^1.11"
  4907. },
  4908. "type": "library",
  4909. "autoload": {
  4910. "psr-4": {
  4911. "React\\Socket\\": "src/"
  4912. }
  4913. },
  4914. "notification-url": "https://packagist.org/downloads/",
  4915. "license": [
  4916. "MIT"
  4917. ],
  4918. "authors": [
  4919. {
  4920. "name": "Christian Lück",
  4921. "email": "christian@clue.engineering",
  4922. "homepage": "https://clue.engineering/"
  4923. },
  4924. {
  4925. "name": "Cees-Jan Kiewiet",
  4926. "email": "reactphp@ceesjankiewiet.nl",
  4927. "homepage": "https://wyrihaximus.net/"
  4928. },
  4929. {
  4930. "name": "Jan Sorgalla",
  4931. "email": "jsorgalla@gmail.com",
  4932. "homepage": "https://sorgalla.com/"
  4933. },
  4934. {
  4935. "name": "Chris Boden",
  4936. "email": "cboden@gmail.com",
  4937. "homepage": "https://cboden.dev/"
  4938. }
  4939. ],
  4940. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  4941. "keywords": [
  4942. "Connection",
  4943. "Socket",
  4944. "async",
  4945. "reactphp",
  4946. "stream"
  4947. ],
  4948. "support": {
  4949. "issues": "https://github.com/reactphp/socket/issues",
  4950. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  4951. },
  4952. "funding": [
  4953. {
  4954. "url": "https://opencollective.com/reactphp",
  4955. "type": "open_collective"
  4956. }
  4957. ],
  4958. "time": "2024-07-26T10:38:09+00:00"
  4959. },
  4960. {
  4961. "name": "react/stream",
  4962. "version": "v1.4.0",
  4963. "source": {
  4964. "type": "git",
  4965. "url": "https://github.com/reactphp/stream.git",
  4966. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  4967. },
  4968. "dist": {
  4969. "type": "zip",
  4970. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  4971. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  4972. "shasum": ""
  4973. },
  4974. "require": {
  4975. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  4976. "php": ">=5.3.8",
  4977. "react/event-loop": "^1.2"
  4978. },
  4979. "require-dev": {
  4980. "clue/stream-filter": "~1.2",
  4981. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  4982. },
  4983. "type": "library",
  4984. "autoload": {
  4985. "psr-4": {
  4986. "React\\Stream\\": "src/"
  4987. }
  4988. },
  4989. "notification-url": "https://packagist.org/downloads/",
  4990. "license": [
  4991. "MIT"
  4992. ],
  4993. "authors": [
  4994. {
  4995. "name": "Christian Lück",
  4996. "email": "christian@clue.engineering",
  4997. "homepage": "https://clue.engineering/"
  4998. },
  4999. {
  5000. "name": "Cees-Jan Kiewiet",
  5001. "email": "reactphp@ceesjankiewiet.nl",
  5002. "homepage": "https://wyrihaximus.net/"
  5003. },
  5004. {
  5005. "name": "Jan Sorgalla",
  5006. "email": "jsorgalla@gmail.com",
  5007. "homepage": "https://sorgalla.com/"
  5008. },
  5009. {
  5010. "name": "Chris Boden",
  5011. "email": "cboden@gmail.com",
  5012. "homepage": "https://cboden.dev/"
  5013. }
  5014. ],
  5015. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  5016. "keywords": [
  5017. "event-driven",
  5018. "io",
  5019. "non-blocking",
  5020. "pipe",
  5021. "reactphp",
  5022. "readable",
  5023. "stream",
  5024. "writable"
  5025. ],
  5026. "support": {
  5027. "issues": "https://github.com/reactphp/stream/issues",
  5028. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  5029. },
  5030. "funding": [
  5031. {
  5032. "url": "https://opencollective.com/reactphp",
  5033. "type": "open_collective"
  5034. }
  5035. ],
  5036. "time": "2024-06-11T12:45:25+00:00"
  5037. },
  5038. {
  5039. "name": "sebastian/cli-parser",
  5040. "version": "1.0.2",
  5041. "source": {
  5042. "type": "git",
  5043. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  5044. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  5045. },
  5046. "dist": {
  5047. "type": "zip",
  5048. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  5049. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  5050. "shasum": ""
  5051. },
  5052. "require": {
  5053. "php": ">=7.3"
  5054. },
  5055. "require-dev": {
  5056. "phpunit/phpunit": "^9.3"
  5057. },
  5058. "type": "library",
  5059. "extra": {
  5060. "branch-alias": {
  5061. "dev-master": "1.0-dev"
  5062. }
  5063. },
  5064. "autoload": {
  5065. "classmap": [
  5066. "src/"
  5067. ]
  5068. },
  5069. "notification-url": "https://packagist.org/downloads/",
  5070. "license": [
  5071. "BSD-3-Clause"
  5072. ],
  5073. "authors": [
  5074. {
  5075. "name": "Sebastian Bergmann",
  5076. "email": "sebastian@phpunit.de",
  5077. "role": "lead"
  5078. }
  5079. ],
  5080. "description": "Library for parsing CLI options",
  5081. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  5082. "support": {
  5083. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  5084. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  5085. },
  5086. "funding": [
  5087. {
  5088. "url": "https://github.com/sebastianbergmann",
  5089. "type": "github"
  5090. }
  5091. ],
  5092. "time": "2024-03-02T06:27:43+00:00"
  5093. },
  5094. {
  5095. "name": "sebastian/code-unit",
  5096. "version": "1.0.8",
  5097. "source": {
  5098. "type": "git",
  5099. "url": "https://github.com/sebastianbergmann/code-unit.git",
  5100. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  5101. },
  5102. "dist": {
  5103. "type": "zip",
  5104. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  5105. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  5106. "shasum": ""
  5107. },
  5108. "require": {
  5109. "php": ">=7.3"
  5110. },
  5111. "require-dev": {
  5112. "phpunit/phpunit": "^9.3"
  5113. },
  5114. "type": "library",
  5115. "extra": {
  5116. "branch-alias": {
  5117. "dev-master": "1.0-dev"
  5118. }
  5119. },
  5120. "autoload": {
  5121. "classmap": [
  5122. "src/"
  5123. ]
  5124. },
  5125. "notification-url": "https://packagist.org/downloads/",
  5126. "license": [
  5127. "BSD-3-Clause"
  5128. ],
  5129. "authors": [
  5130. {
  5131. "name": "Sebastian Bergmann",
  5132. "email": "sebastian@phpunit.de",
  5133. "role": "lead"
  5134. }
  5135. ],
  5136. "description": "Collection of value objects that represent the PHP code units",
  5137. "homepage": "https://github.com/sebastianbergmann/code-unit",
  5138. "support": {
  5139. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  5140. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  5141. },
  5142. "funding": [
  5143. {
  5144. "url": "https://github.com/sebastianbergmann",
  5145. "type": "github"
  5146. }
  5147. ],
  5148. "time": "2020-10-26T13:08:54+00:00"
  5149. },
  5150. {
  5151. "name": "sebastian/code-unit-reverse-lookup",
  5152. "version": "2.0.3",
  5153. "source": {
  5154. "type": "git",
  5155. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5156. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  5157. },
  5158. "dist": {
  5159. "type": "zip",
  5160. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  5161. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  5162. "shasum": ""
  5163. },
  5164. "require": {
  5165. "php": ">=7.3"
  5166. },
  5167. "require-dev": {
  5168. "phpunit/phpunit": "^9.3"
  5169. },
  5170. "type": "library",
  5171. "extra": {
  5172. "branch-alias": {
  5173. "dev-master": "2.0-dev"
  5174. }
  5175. },
  5176. "autoload": {
  5177. "classmap": [
  5178. "src/"
  5179. ]
  5180. },
  5181. "notification-url": "https://packagist.org/downloads/",
  5182. "license": [
  5183. "BSD-3-Clause"
  5184. ],
  5185. "authors": [
  5186. {
  5187. "name": "Sebastian Bergmann",
  5188. "email": "sebastian@phpunit.de"
  5189. }
  5190. ],
  5191. "description": "Looks up which function or method a line of code belongs to",
  5192. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5193. "support": {
  5194. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  5195. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  5196. },
  5197. "funding": [
  5198. {
  5199. "url": "https://github.com/sebastianbergmann",
  5200. "type": "github"
  5201. }
  5202. ],
  5203. "time": "2020-09-28T05:30:19+00:00"
  5204. },
  5205. {
  5206. "name": "sebastian/comparator",
  5207. "version": "4.0.8",
  5208. "source": {
  5209. "type": "git",
  5210. "url": "https://github.com/sebastianbergmann/comparator.git",
  5211. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  5212. },
  5213. "dist": {
  5214. "type": "zip",
  5215. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  5216. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  5217. "shasum": ""
  5218. },
  5219. "require": {
  5220. "php": ">=7.3",
  5221. "sebastian/diff": "^4.0",
  5222. "sebastian/exporter": "^4.0"
  5223. },
  5224. "require-dev": {
  5225. "phpunit/phpunit": "^9.3"
  5226. },
  5227. "type": "library",
  5228. "extra": {
  5229. "branch-alias": {
  5230. "dev-master": "4.0-dev"
  5231. }
  5232. },
  5233. "autoload": {
  5234. "classmap": [
  5235. "src/"
  5236. ]
  5237. },
  5238. "notification-url": "https://packagist.org/downloads/",
  5239. "license": [
  5240. "BSD-3-Clause"
  5241. ],
  5242. "authors": [
  5243. {
  5244. "name": "Sebastian Bergmann",
  5245. "email": "sebastian@phpunit.de"
  5246. },
  5247. {
  5248. "name": "Jeff Welch",
  5249. "email": "whatthejeff@gmail.com"
  5250. },
  5251. {
  5252. "name": "Volker Dusch",
  5253. "email": "github@wallbash.com"
  5254. },
  5255. {
  5256. "name": "Bernhard Schussek",
  5257. "email": "bschussek@2bepublished.at"
  5258. }
  5259. ],
  5260. "description": "Provides the functionality to compare PHP values for equality",
  5261. "homepage": "https://github.com/sebastianbergmann/comparator",
  5262. "keywords": [
  5263. "comparator",
  5264. "compare",
  5265. "equality"
  5266. ],
  5267. "support": {
  5268. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  5269. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  5270. },
  5271. "funding": [
  5272. {
  5273. "url": "https://github.com/sebastianbergmann",
  5274. "type": "github"
  5275. }
  5276. ],
  5277. "time": "2022-09-14T12:41:17+00:00"
  5278. },
  5279. {
  5280. "name": "sebastian/complexity",
  5281. "version": "2.0.3",
  5282. "source": {
  5283. "type": "git",
  5284. "url": "https://github.com/sebastianbergmann/complexity.git",
  5285. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  5286. },
  5287. "dist": {
  5288. "type": "zip",
  5289. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  5290. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  5291. "shasum": ""
  5292. },
  5293. "require": {
  5294. "nikic/php-parser": "^4.18 || ^5.0",
  5295. "php": ">=7.3"
  5296. },
  5297. "require-dev": {
  5298. "phpunit/phpunit": "^9.3"
  5299. },
  5300. "type": "library",
  5301. "extra": {
  5302. "branch-alias": {
  5303. "dev-master": "2.0-dev"
  5304. }
  5305. },
  5306. "autoload": {
  5307. "classmap": [
  5308. "src/"
  5309. ]
  5310. },
  5311. "notification-url": "https://packagist.org/downloads/",
  5312. "license": [
  5313. "BSD-3-Clause"
  5314. ],
  5315. "authors": [
  5316. {
  5317. "name": "Sebastian Bergmann",
  5318. "email": "sebastian@phpunit.de",
  5319. "role": "lead"
  5320. }
  5321. ],
  5322. "description": "Library for calculating the complexity of PHP code units",
  5323. "homepage": "https://github.com/sebastianbergmann/complexity",
  5324. "support": {
  5325. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  5326. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  5327. },
  5328. "funding": [
  5329. {
  5330. "url": "https://github.com/sebastianbergmann",
  5331. "type": "github"
  5332. }
  5333. ],
  5334. "time": "2023-12-22T06:19:30+00:00"
  5335. },
  5336. {
  5337. "name": "sebastian/diff",
  5338. "version": "4.0.6",
  5339. "source": {
  5340. "type": "git",
  5341. "url": "https://github.com/sebastianbergmann/diff.git",
  5342. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  5343. },
  5344. "dist": {
  5345. "type": "zip",
  5346. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  5347. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  5348. "shasum": ""
  5349. },
  5350. "require": {
  5351. "php": ">=7.3"
  5352. },
  5353. "require-dev": {
  5354. "phpunit/phpunit": "^9.3",
  5355. "symfony/process": "^4.2 || ^5"
  5356. },
  5357. "type": "library",
  5358. "extra": {
  5359. "branch-alias": {
  5360. "dev-master": "4.0-dev"
  5361. }
  5362. },
  5363. "autoload": {
  5364. "classmap": [
  5365. "src/"
  5366. ]
  5367. },
  5368. "notification-url": "https://packagist.org/downloads/",
  5369. "license": [
  5370. "BSD-3-Clause"
  5371. ],
  5372. "authors": [
  5373. {
  5374. "name": "Sebastian Bergmann",
  5375. "email": "sebastian@phpunit.de"
  5376. },
  5377. {
  5378. "name": "Kore Nordmann",
  5379. "email": "mail@kore-nordmann.de"
  5380. }
  5381. ],
  5382. "description": "Diff implementation",
  5383. "homepage": "https://github.com/sebastianbergmann/diff",
  5384. "keywords": [
  5385. "diff",
  5386. "udiff",
  5387. "unidiff",
  5388. "unified diff"
  5389. ],
  5390. "support": {
  5391. "issues": "https://github.com/sebastianbergmann/diff/issues",
  5392. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  5393. },
  5394. "funding": [
  5395. {
  5396. "url": "https://github.com/sebastianbergmann",
  5397. "type": "github"
  5398. }
  5399. ],
  5400. "time": "2024-03-02T06:30:58+00:00"
  5401. },
  5402. {
  5403. "name": "sebastian/environment",
  5404. "version": "5.1.5",
  5405. "source": {
  5406. "type": "git",
  5407. "url": "https://github.com/sebastianbergmann/environment.git",
  5408. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  5409. },
  5410. "dist": {
  5411. "type": "zip",
  5412. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  5413. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  5414. "shasum": ""
  5415. },
  5416. "require": {
  5417. "php": ">=7.3"
  5418. },
  5419. "require-dev": {
  5420. "phpunit/phpunit": "^9.3"
  5421. },
  5422. "suggest": {
  5423. "ext-posix": "*"
  5424. },
  5425. "type": "library",
  5426. "extra": {
  5427. "branch-alias": {
  5428. "dev-master": "5.1-dev"
  5429. }
  5430. },
  5431. "autoload": {
  5432. "classmap": [
  5433. "src/"
  5434. ]
  5435. },
  5436. "notification-url": "https://packagist.org/downloads/",
  5437. "license": [
  5438. "BSD-3-Clause"
  5439. ],
  5440. "authors": [
  5441. {
  5442. "name": "Sebastian Bergmann",
  5443. "email": "sebastian@phpunit.de"
  5444. }
  5445. ],
  5446. "description": "Provides functionality to handle HHVM/PHP environments",
  5447. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5448. "keywords": [
  5449. "Xdebug",
  5450. "environment",
  5451. "hhvm"
  5452. ],
  5453. "support": {
  5454. "issues": "https://github.com/sebastianbergmann/environment/issues",
  5455. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  5456. },
  5457. "funding": [
  5458. {
  5459. "url": "https://github.com/sebastianbergmann",
  5460. "type": "github"
  5461. }
  5462. ],
  5463. "time": "2023-02-03T06:03:51+00:00"
  5464. },
  5465. {
  5466. "name": "sebastian/exporter",
  5467. "version": "4.0.6",
  5468. "source": {
  5469. "type": "git",
  5470. "url": "https://github.com/sebastianbergmann/exporter.git",
  5471. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  5472. },
  5473. "dist": {
  5474. "type": "zip",
  5475. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  5476. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  5477. "shasum": ""
  5478. },
  5479. "require": {
  5480. "php": ">=7.3",
  5481. "sebastian/recursion-context": "^4.0"
  5482. },
  5483. "require-dev": {
  5484. "ext-mbstring": "*",
  5485. "phpunit/phpunit": "^9.3"
  5486. },
  5487. "type": "library",
  5488. "extra": {
  5489. "branch-alias": {
  5490. "dev-master": "4.0-dev"
  5491. }
  5492. },
  5493. "autoload": {
  5494. "classmap": [
  5495. "src/"
  5496. ]
  5497. },
  5498. "notification-url": "https://packagist.org/downloads/",
  5499. "license": [
  5500. "BSD-3-Clause"
  5501. ],
  5502. "authors": [
  5503. {
  5504. "name": "Sebastian Bergmann",
  5505. "email": "sebastian@phpunit.de"
  5506. },
  5507. {
  5508. "name": "Jeff Welch",
  5509. "email": "whatthejeff@gmail.com"
  5510. },
  5511. {
  5512. "name": "Volker Dusch",
  5513. "email": "github@wallbash.com"
  5514. },
  5515. {
  5516. "name": "Adam Harvey",
  5517. "email": "aharvey@php.net"
  5518. },
  5519. {
  5520. "name": "Bernhard Schussek",
  5521. "email": "bschussek@gmail.com"
  5522. }
  5523. ],
  5524. "description": "Provides the functionality to export PHP variables for visualization",
  5525. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  5526. "keywords": [
  5527. "export",
  5528. "exporter"
  5529. ],
  5530. "support": {
  5531. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  5532. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  5533. },
  5534. "funding": [
  5535. {
  5536. "url": "https://github.com/sebastianbergmann",
  5537. "type": "github"
  5538. }
  5539. ],
  5540. "time": "2024-03-02T06:33:00+00:00"
  5541. },
  5542. {
  5543. "name": "sebastian/global-state",
  5544. "version": "5.0.7",
  5545. "source": {
  5546. "type": "git",
  5547. "url": "https://github.com/sebastianbergmann/global-state.git",
  5548. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  5549. },
  5550. "dist": {
  5551. "type": "zip",
  5552. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  5553. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  5554. "shasum": ""
  5555. },
  5556. "require": {
  5557. "php": ">=7.3",
  5558. "sebastian/object-reflector": "^2.0",
  5559. "sebastian/recursion-context": "^4.0"
  5560. },
  5561. "require-dev": {
  5562. "ext-dom": "*",
  5563. "phpunit/phpunit": "^9.3"
  5564. },
  5565. "suggest": {
  5566. "ext-uopz": "*"
  5567. },
  5568. "type": "library",
  5569. "extra": {
  5570. "branch-alias": {
  5571. "dev-master": "5.0-dev"
  5572. }
  5573. },
  5574. "autoload": {
  5575. "classmap": [
  5576. "src/"
  5577. ]
  5578. },
  5579. "notification-url": "https://packagist.org/downloads/",
  5580. "license": [
  5581. "BSD-3-Clause"
  5582. ],
  5583. "authors": [
  5584. {
  5585. "name": "Sebastian Bergmann",
  5586. "email": "sebastian@phpunit.de"
  5587. }
  5588. ],
  5589. "description": "Snapshotting of global state",
  5590. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5591. "keywords": [
  5592. "global state"
  5593. ],
  5594. "support": {
  5595. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  5596. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  5597. },
  5598. "funding": [
  5599. {
  5600. "url": "https://github.com/sebastianbergmann",
  5601. "type": "github"
  5602. }
  5603. ],
  5604. "time": "2024-03-02T06:35:11+00:00"
  5605. },
  5606. {
  5607. "name": "sebastian/lines-of-code",
  5608. "version": "1.0.4",
  5609. "source": {
  5610. "type": "git",
  5611. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  5612. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  5613. },
  5614. "dist": {
  5615. "type": "zip",
  5616. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  5617. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  5618. "shasum": ""
  5619. },
  5620. "require": {
  5621. "nikic/php-parser": "^4.18 || ^5.0",
  5622. "php": ">=7.3"
  5623. },
  5624. "require-dev": {
  5625. "phpunit/phpunit": "^9.3"
  5626. },
  5627. "type": "library",
  5628. "extra": {
  5629. "branch-alias": {
  5630. "dev-master": "1.0-dev"
  5631. }
  5632. },
  5633. "autoload": {
  5634. "classmap": [
  5635. "src/"
  5636. ]
  5637. },
  5638. "notification-url": "https://packagist.org/downloads/",
  5639. "license": [
  5640. "BSD-3-Clause"
  5641. ],
  5642. "authors": [
  5643. {
  5644. "name": "Sebastian Bergmann",
  5645. "email": "sebastian@phpunit.de",
  5646. "role": "lead"
  5647. }
  5648. ],
  5649. "description": "Library for counting the lines of code in PHP source code",
  5650. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  5651. "support": {
  5652. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  5653. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  5654. },
  5655. "funding": [
  5656. {
  5657. "url": "https://github.com/sebastianbergmann",
  5658. "type": "github"
  5659. }
  5660. ],
  5661. "time": "2023-12-22T06:20:34+00:00"
  5662. },
  5663. {
  5664. "name": "sebastian/object-enumerator",
  5665. "version": "4.0.4",
  5666. "source": {
  5667. "type": "git",
  5668. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5669. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  5670. },
  5671. "dist": {
  5672. "type": "zip",
  5673. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  5674. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  5675. "shasum": ""
  5676. },
  5677. "require": {
  5678. "php": ">=7.3",
  5679. "sebastian/object-reflector": "^2.0",
  5680. "sebastian/recursion-context": "^4.0"
  5681. },
  5682. "require-dev": {
  5683. "phpunit/phpunit": "^9.3"
  5684. },
  5685. "type": "library",
  5686. "extra": {
  5687. "branch-alias": {
  5688. "dev-master": "4.0-dev"
  5689. }
  5690. },
  5691. "autoload": {
  5692. "classmap": [
  5693. "src/"
  5694. ]
  5695. },
  5696. "notification-url": "https://packagist.org/downloads/",
  5697. "license": [
  5698. "BSD-3-Clause"
  5699. ],
  5700. "authors": [
  5701. {
  5702. "name": "Sebastian Bergmann",
  5703. "email": "sebastian@phpunit.de"
  5704. }
  5705. ],
  5706. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5707. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5708. "support": {
  5709. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  5710. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  5711. },
  5712. "funding": [
  5713. {
  5714. "url": "https://github.com/sebastianbergmann",
  5715. "type": "github"
  5716. }
  5717. ],
  5718. "time": "2020-10-26T13:12:34+00:00"
  5719. },
  5720. {
  5721. "name": "sebastian/object-reflector",
  5722. "version": "2.0.4",
  5723. "source": {
  5724. "type": "git",
  5725. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5726. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  5727. },
  5728. "dist": {
  5729. "type": "zip",
  5730. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  5731. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  5732. "shasum": ""
  5733. },
  5734. "require": {
  5735. "php": ">=7.3"
  5736. },
  5737. "require-dev": {
  5738. "phpunit/phpunit": "^9.3"
  5739. },
  5740. "type": "library",
  5741. "extra": {
  5742. "branch-alias": {
  5743. "dev-master": "2.0-dev"
  5744. }
  5745. },
  5746. "autoload": {
  5747. "classmap": [
  5748. "src/"
  5749. ]
  5750. },
  5751. "notification-url": "https://packagist.org/downloads/",
  5752. "license": [
  5753. "BSD-3-Clause"
  5754. ],
  5755. "authors": [
  5756. {
  5757. "name": "Sebastian Bergmann",
  5758. "email": "sebastian@phpunit.de"
  5759. }
  5760. ],
  5761. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  5762. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  5763. "support": {
  5764. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  5765. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  5766. },
  5767. "funding": [
  5768. {
  5769. "url": "https://github.com/sebastianbergmann",
  5770. "type": "github"
  5771. }
  5772. ],
  5773. "time": "2020-10-26T13:14:26+00:00"
  5774. },
  5775. {
  5776. "name": "sebastian/recursion-context",
  5777. "version": "4.0.5",
  5778. "source": {
  5779. "type": "git",
  5780. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5781. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  5782. },
  5783. "dist": {
  5784. "type": "zip",
  5785. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  5786. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  5787. "shasum": ""
  5788. },
  5789. "require": {
  5790. "php": ">=7.3"
  5791. },
  5792. "require-dev": {
  5793. "phpunit/phpunit": "^9.3"
  5794. },
  5795. "type": "library",
  5796. "extra": {
  5797. "branch-alias": {
  5798. "dev-master": "4.0-dev"
  5799. }
  5800. },
  5801. "autoload": {
  5802. "classmap": [
  5803. "src/"
  5804. ]
  5805. },
  5806. "notification-url": "https://packagist.org/downloads/",
  5807. "license": [
  5808. "BSD-3-Clause"
  5809. ],
  5810. "authors": [
  5811. {
  5812. "name": "Sebastian Bergmann",
  5813. "email": "sebastian@phpunit.de"
  5814. },
  5815. {
  5816. "name": "Jeff Welch",
  5817. "email": "whatthejeff@gmail.com"
  5818. },
  5819. {
  5820. "name": "Adam Harvey",
  5821. "email": "aharvey@php.net"
  5822. }
  5823. ],
  5824. "description": "Provides functionality to recursively process PHP variables",
  5825. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  5826. "support": {
  5827. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  5828. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  5829. },
  5830. "funding": [
  5831. {
  5832. "url": "https://github.com/sebastianbergmann",
  5833. "type": "github"
  5834. }
  5835. ],
  5836. "time": "2023-02-03T06:07:39+00:00"
  5837. },
  5838. {
  5839. "name": "sebastian/resource-operations",
  5840. "version": "3.0.4",
  5841. "source": {
  5842. "type": "git",
  5843. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5844. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  5845. },
  5846. "dist": {
  5847. "type": "zip",
  5848. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  5849. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  5850. "shasum": ""
  5851. },
  5852. "require": {
  5853. "php": ">=7.3"
  5854. },
  5855. "require-dev": {
  5856. "phpunit/phpunit": "^9.0"
  5857. },
  5858. "type": "library",
  5859. "extra": {
  5860. "branch-alias": {
  5861. "dev-main": "3.0-dev"
  5862. }
  5863. },
  5864. "autoload": {
  5865. "classmap": [
  5866. "src/"
  5867. ]
  5868. },
  5869. "notification-url": "https://packagist.org/downloads/",
  5870. "license": [
  5871. "BSD-3-Clause"
  5872. ],
  5873. "authors": [
  5874. {
  5875. "name": "Sebastian Bergmann",
  5876. "email": "sebastian@phpunit.de"
  5877. }
  5878. ],
  5879. "description": "Provides a list of PHP built-in functions that operate on resources",
  5880. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5881. "support": {
  5882. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  5883. },
  5884. "funding": [
  5885. {
  5886. "url": "https://github.com/sebastianbergmann",
  5887. "type": "github"
  5888. }
  5889. ],
  5890. "time": "2024-03-14T16:00:52+00:00"
  5891. },
  5892. {
  5893. "name": "sebastian/type",
  5894. "version": "3.2.1",
  5895. "source": {
  5896. "type": "git",
  5897. "url": "https://github.com/sebastianbergmann/type.git",
  5898. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  5899. },
  5900. "dist": {
  5901. "type": "zip",
  5902. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  5903. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  5904. "shasum": ""
  5905. },
  5906. "require": {
  5907. "php": ">=7.3"
  5908. },
  5909. "require-dev": {
  5910. "phpunit/phpunit": "^9.5"
  5911. },
  5912. "type": "library",
  5913. "extra": {
  5914. "branch-alias": {
  5915. "dev-master": "3.2-dev"
  5916. }
  5917. },
  5918. "autoload": {
  5919. "classmap": [
  5920. "src/"
  5921. ]
  5922. },
  5923. "notification-url": "https://packagist.org/downloads/",
  5924. "license": [
  5925. "BSD-3-Clause"
  5926. ],
  5927. "authors": [
  5928. {
  5929. "name": "Sebastian Bergmann",
  5930. "email": "sebastian@phpunit.de",
  5931. "role": "lead"
  5932. }
  5933. ],
  5934. "description": "Collection of value objects that represent the types of the PHP type system",
  5935. "homepage": "https://github.com/sebastianbergmann/type",
  5936. "support": {
  5937. "issues": "https://github.com/sebastianbergmann/type/issues",
  5938. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  5939. },
  5940. "funding": [
  5941. {
  5942. "url": "https://github.com/sebastianbergmann",
  5943. "type": "github"
  5944. }
  5945. ],
  5946. "time": "2023-02-03T06:13:03+00:00"
  5947. },
  5948. {
  5949. "name": "sebastian/version",
  5950. "version": "3.0.2",
  5951. "source": {
  5952. "type": "git",
  5953. "url": "https://github.com/sebastianbergmann/version.git",
  5954. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  5955. },
  5956. "dist": {
  5957. "type": "zip",
  5958. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  5959. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  5960. "shasum": ""
  5961. },
  5962. "require": {
  5963. "php": ">=7.3"
  5964. },
  5965. "type": "library",
  5966. "extra": {
  5967. "branch-alias": {
  5968. "dev-master": "3.0-dev"
  5969. }
  5970. },
  5971. "autoload": {
  5972. "classmap": [
  5973. "src/"
  5974. ]
  5975. },
  5976. "notification-url": "https://packagist.org/downloads/",
  5977. "license": [
  5978. "BSD-3-Clause"
  5979. ],
  5980. "authors": [
  5981. {
  5982. "name": "Sebastian Bergmann",
  5983. "email": "sebastian@phpunit.de",
  5984. "role": "lead"
  5985. }
  5986. ],
  5987. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5988. "homepage": "https://github.com/sebastianbergmann/version",
  5989. "support": {
  5990. "issues": "https://github.com/sebastianbergmann/version/issues",
  5991. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  5992. },
  5993. "funding": [
  5994. {
  5995. "url": "https://github.com/sebastianbergmann",
  5996. "type": "github"
  5997. }
  5998. ],
  5999. "time": "2020-09-28T06:39:44+00:00"
  6000. },
  6001. {
  6002. "name": "seld/jsonlint",
  6003. "version": "1.11.0",
  6004. "source": {
  6005. "type": "git",
  6006. "url": "https://github.com/Seldaek/jsonlint.git",
  6007. "reference": "1748aaf847fc731cfad7725aec413ee46f0cc3a2"
  6008. },
  6009. "dist": {
  6010. "type": "zip",
  6011. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/1748aaf847fc731cfad7725aec413ee46f0cc3a2",
  6012. "reference": "1748aaf847fc731cfad7725aec413ee46f0cc3a2",
  6013. "shasum": ""
  6014. },
  6015. "require": {
  6016. "php": "^5.3 || ^7.0 || ^8.0"
  6017. },
  6018. "require-dev": {
  6019. "phpstan/phpstan": "^1.11",
  6020. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13"
  6021. },
  6022. "bin": [
  6023. "bin/jsonlint"
  6024. ],
  6025. "type": "library",
  6026. "autoload": {
  6027. "psr-4": {
  6028. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  6029. }
  6030. },
  6031. "notification-url": "https://packagist.org/downloads/",
  6032. "license": [
  6033. "MIT"
  6034. ],
  6035. "authors": [
  6036. {
  6037. "name": "Jordi Boggiano",
  6038. "email": "j.boggiano@seld.be",
  6039. "homepage": "https://seld.be"
  6040. }
  6041. ],
  6042. "description": "JSON Linter",
  6043. "keywords": [
  6044. "json",
  6045. "linter",
  6046. "parser",
  6047. "validator"
  6048. ],
  6049. "support": {
  6050. "issues": "https://github.com/Seldaek/jsonlint/issues",
  6051. "source": "https://github.com/Seldaek/jsonlint/tree/1.11.0"
  6052. },
  6053. "funding": [
  6054. {
  6055. "url": "https://github.com/Seldaek",
  6056. "type": "github"
  6057. },
  6058. {
  6059. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  6060. "type": "tidelift"
  6061. }
  6062. ],
  6063. "time": "2024-07-11T14:55:45+00:00"
  6064. },
  6065. {
  6066. "name": "symfony/event-dispatcher",
  6067. "version": "v6.4.8",
  6068. "source": {
  6069. "type": "git",
  6070. "url": "https://github.com/symfony/event-dispatcher.git",
  6071. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  6072. },
  6073. "dist": {
  6074. "type": "zip",
  6075. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  6076. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  6077. "shasum": ""
  6078. },
  6079. "require": {
  6080. "php": ">=8.1",
  6081. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6082. },
  6083. "conflict": {
  6084. "symfony/dependency-injection": "<5.4",
  6085. "symfony/service-contracts": "<2.5"
  6086. },
  6087. "provide": {
  6088. "psr/event-dispatcher-implementation": "1.0",
  6089. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6090. },
  6091. "require-dev": {
  6092. "psr/log": "^1|^2|^3",
  6093. "symfony/config": "^5.4|^6.0|^7.0",
  6094. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6095. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6096. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6097. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6098. "symfony/service-contracts": "^2.5|^3",
  6099. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  6100. },
  6101. "type": "library",
  6102. "autoload": {
  6103. "psr-4": {
  6104. "Symfony\\Component\\EventDispatcher\\": ""
  6105. },
  6106. "exclude-from-classmap": [
  6107. "/Tests/"
  6108. ]
  6109. },
  6110. "notification-url": "https://packagist.org/downloads/",
  6111. "license": [
  6112. "MIT"
  6113. ],
  6114. "authors": [
  6115. {
  6116. "name": "Fabien Potencier",
  6117. "email": "fabien@symfony.com"
  6118. },
  6119. {
  6120. "name": "Symfony Community",
  6121. "homepage": "https://symfony.com/contributors"
  6122. }
  6123. ],
  6124. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6125. "homepage": "https://symfony.com",
  6126. "support": {
  6127. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  6128. },
  6129. "funding": [
  6130. {
  6131. "url": "https://symfony.com/sponsor",
  6132. "type": "custom"
  6133. },
  6134. {
  6135. "url": "https://github.com/fabpot",
  6136. "type": "github"
  6137. },
  6138. {
  6139. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6140. "type": "tidelift"
  6141. }
  6142. ],
  6143. "time": "2024-05-31T14:49:08+00:00"
  6144. },
  6145. {
  6146. "name": "symfony/event-dispatcher-contracts",
  6147. "version": "v3.5.0",
  6148. "source": {
  6149. "type": "git",
  6150. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6151. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  6152. },
  6153. "dist": {
  6154. "type": "zip",
  6155. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  6156. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  6157. "shasum": ""
  6158. },
  6159. "require": {
  6160. "php": ">=8.1",
  6161. "psr/event-dispatcher": "^1"
  6162. },
  6163. "type": "library",
  6164. "extra": {
  6165. "branch-alias": {
  6166. "dev-main": "3.5-dev"
  6167. },
  6168. "thanks": {
  6169. "name": "symfony/contracts",
  6170. "url": "https://github.com/symfony/contracts"
  6171. }
  6172. },
  6173. "autoload": {
  6174. "psr-4": {
  6175. "Symfony\\Contracts\\EventDispatcher\\": ""
  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 dispatching event",
  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/event-dispatcher-contracts/tree/v3.5.0"
  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": "2024-04-18T09:32:20+00:00"
  6220. },
  6221. {
  6222. "name": "symfony/filesystem",
  6223. "version": "v6.4.12",
  6224. "source": {
  6225. "type": "git",
  6226. "url": "https://github.com/symfony/filesystem.git",
  6227. "reference": "f810e3cbdf7fdc35983968523d09f349fa9ada12"
  6228. },
  6229. "dist": {
  6230. "type": "zip",
  6231. "url": "https://api.github.com/repos/symfony/filesystem/zipball/f810e3cbdf7fdc35983968523d09f349fa9ada12",
  6232. "reference": "f810e3cbdf7fdc35983968523d09f349fa9ada12",
  6233. "shasum": ""
  6234. },
  6235. "require": {
  6236. "php": ">=8.1",
  6237. "symfony/polyfill-ctype": "~1.8",
  6238. "symfony/polyfill-mbstring": "~1.8"
  6239. },
  6240. "require-dev": {
  6241. "symfony/process": "^5.4|^6.4|^7.0"
  6242. },
  6243. "type": "library",
  6244. "autoload": {
  6245. "psr-4": {
  6246. "Symfony\\Component\\Filesystem\\": ""
  6247. },
  6248. "exclude-from-classmap": [
  6249. "/Tests/"
  6250. ]
  6251. },
  6252. "notification-url": "https://packagist.org/downloads/",
  6253. "license": [
  6254. "MIT"
  6255. ],
  6256. "authors": [
  6257. {
  6258. "name": "Fabien Potencier",
  6259. "email": "fabien@symfony.com"
  6260. },
  6261. {
  6262. "name": "Symfony Community",
  6263. "homepage": "https://symfony.com/contributors"
  6264. }
  6265. ],
  6266. "description": "Provides basic utilities for the filesystem",
  6267. "homepage": "https://symfony.com",
  6268. "support": {
  6269. "source": "https://github.com/symfony/filesystem/tree/v6.4.12"
  6270. },
  6271. "funding": [
  6272. {
  6273. "url": "https://symfony.com/sponsor",
  6274. "type": "custom"
  6275. },
  6276. {
  6277. "url": "https://github.com/fabpot",
  6278. "type": "github"
  6279. },
  6280. {
  6281. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6282. "type": "tidelift"
  6283. }
  6284. ],
  6285. "time": "2024-09-16T16:01:33+00:00"
  6286. },
  6287. {
  6288. "name": "symfony/finder",
  6289. "version": "v6.4.11",
  6290. "source": {
  6291. "type": "git",
  6292. "url": "https://github.com/symfony/finder.git",
  6293. "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453"
  6294. },
  6295. "dist": {
  6296. "type": "zip",
  6297. "url": "https://api.github.com/repos/symfony/finder/zipball/d7eb6daf8cd7e9ac4976e9576b32042ef7253453",
  6298. "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453",
  6299. "shasum": ""
  6300. },
  6301. "require": {
  6302. "php": ">=8.1"
  6303. },
  6304. "require-dev": {
  6305. "symfony/filesystem": "^6.0|^7.0"
  6306. },
  6307. "type": "library",
  6308. "autoload": {
  6309. "psr-4": {
  6310. "Symfony\\Component\\Finder\\": ""
  6311. },
  6312. "exclude-from-classmap": [
  6313. "/Tests/"
  6314. ]
  6315. },
  6316. "notification-url": "https://packagist.org/downloads/",
  6317. "license": [
  6318. "MIT"
  6319. ],
  6320. "authors": [
  6321. {
  6322. "name": "Fabien Potencier",
  6323. "email": "fabien@symfony.com"
  6324. },
  6325. {
  6326. "name": "Symfony Community",
  6327. "homepage": "https://symfony.com/contributors"
  6328. }
  6329. ],
  6330. "description": "Finds files and directories via an intuitive fluent interface",
  6331. "homepage": "https://symfony.com",
  6332. "support": {
  6333. "source": "https://github.com/symfony/finder/tree/v6.4.11"
  6334. },
  6335. "funding": [
  6336. {
  6337. "url": "https://symfony.com/sponsor",
  6338. "type": "custom"
  6339. },
  6340. {
  6341. "url": "https://github.com/fabpot",
  6342. "type": "github"
  6343. },
  6344. {
  6345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6346. "type": "tidelift"
  6347. }
  6348. ],
  6349. "time": "2024-08-13T14:27:37+00:00"
  6350. },
  6351. {
  6352. "name": "symfony/options-resolver",
  6353. "version": "v6.4.8",
  6354. "source": {
  6355. "type": "git",
  6356. "url": "https://github.com/symfony/options-resolver.git",
  6357. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  6358. },
  6359. "dist": {
  6360. "type": "zip",
  6361. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  6362. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  6363. "shasum": ""
  6364. },
  6365. "require": {
  6366. "php": ">=8.1",
  6367. "symfony/deprecation-contracts": "^2.5|^3"
  6368. },
  6369. "type": "library",
  6370. "autoload": {
  6371. "psr-4": {
  6372. "Symfony\\Component\\OptionsResolver\\": ""
  6373. },
  6374. "exclude-from-classmap": [
  6375. "/Tests/"
  6376. ]
  6377. },
  6378. "notification-url": "https://packagist.org/downloads/",
  6379. "license": [
  6380. "MIT"
  6381. ],
  6382. "authors": [
  6383. {
  6384. "name": "Fabien Potencier",
  6385. "email": "fabien@symfony.com"
  6386. },
  6387. {
  6388. "name": "Symfony Community",
  6389. "homepage": "https://symfony.com/contributors"
  6390. }
  6391. ],
  6392. "description": "Provides an improved replacement for the array_replace PHP function",
  6393. "homepage": "https://symfony.com",
  6394. "keywords": [
  6395. "config",
  6396. "configuration",
  6397. "options"
  6398. ],
  6399. "support": {
  6400. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  6401. },
  6402. "funding": [
  6403. {
  6404. "url": "https://symfony.com/sponsor",
  6405. "type": "custom"
  6406. },
  6407. {
  6408. "url": "https://github.com/fabpot",
  6409. "type": "github"
  6410. },
  6411. {
  6412. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6413. "type": "tidelift"
  6414. }
  6415. ],
  6416. "time": "2024-05-31T14:49:08+00:00"
  6417. },
  6418. {
  6419. "name": "symfony/polyfill-iconv",
  6420. "version": "v1.31.0",
  6421. "source": {
  6422. "type": "git",
  6423. "url": "https://github.com/symfony/polyfill-iconv.git",
  6424. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  6425. },
  6426. "dist": {
  6427. "type": "zip",
  6428. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  6429. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  6430. "shasum": ""
  6431. },
  6432. "require": {
  6433. "php": ">=7.2"
  6434. },
  6435. "provide": {
  6436. "ext-iconv": "*"
  6437. },
  6438. "suggest": {
  6439. "ext-iconv": "For best performance"
  6440. },
  6441. "type": "library",
  6442. "extra": {
  6443. "thanks": {
  6444. "name": "symfony/polyfill",
  6445. "url": "https://github.com/symfony/polyfill"
  6446. }
  6447. },
  6448. "autoload": {
  6449. "files": [
  6450. "bootstrap.php"
  6451. ],
  6452. "psr-4": {
  6453. "Symfony\\Polyfill\\Iconv\\": ""
  6454. }
  6455. },
  6456. "notification-url": "https://packagist.org/downloads/",
  6457. "license": [
  6458. "MIT"
  6459. ],
  6460. "authors": [
  6461. {
  6462. "name": "Nicolas Grekas",
  6463. "email": "p@tchwork.com"
  6464. },
  6465. {
  6466. "name": "Symfony Community",
  6467. "homepage": "https://symfony.com/contributors"
  6468. }
  6469. ],
  6470. "description": "Symfony polyfill for the Iconv extension",
  6471. "homepage": "https://symfony.com",
  6472. "keywords": [
  6473. "compatibility",
  6474. "iconv",
  6475. "polyfill",
  6476. "portable",
  6477. "shim"
  6478. ],
  6479. "support": {
  6480. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  6481. },
  6482. "funding": [
  6483. {
  6484. "url": "https://symfony.com/sponsor",
  6485. "type": "custom"
  6486. },
  6487. {
  6488. "url": "https://github.com/fabpot",
  6489. "type": "github"
  6490. },
  6491. {
  6492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6493. "type": "tidelift"
  6494. }
  6495. ],
  6496. "time": "2024-09-09T11:45:10+00:00"
  6497. },
  6498. {
  6499. "name": "symfony/process",
  6500. "version": "v6.4.12",
  6501. "source": {
  6502. "type": "git",
  6503. "url": "https://github.com/symfony/process.git",
  6504. "reference": "3f94e5f13ff58df371a7ead461b6e8068900fbb3"
  6505. },
  6506. "dist": {
  6507. "type": "zip",
  6508. "url": "https://api.github.com/repos/symfony/process/zipball/3f94e5f13ff58df371a7ead461b6e8068900fbb3",
  6509. "reference": "3f94e5f13ff58df371a7ead461b6e8068900fbb3",
  6510. "shasum": ""
  6511. },
  6512. "require": {
  6513. "php": ">=8.1"
  6514. },
  6515. "type": "library",
  6516. "autoload": {
  6517. "psr-4": {
  6518. "Symfony\\Component\\Process\\": ""
  6519. },
  6520. "exclude-from-classmap": [
  6521. "/Tests/"
  6522. ]
  6523. },
  6524. "notification-url": "https://packagist.org/downloads/",
  6525. "license": [
  6526. "MIT"
  6527. ],
  6528. "authors": [
  6529. {
  6530. "name": "Fabien Potencier",
  6531. "email": "fabien@symfony.com"
  6532. },
  6533. {
  6534. "name": "Symfony Community",
  6535. "homepage": "https://symfony.com/contributors"
  6536. }
  6537. ],
  6538. "description": "Executes commands in sub-processes",
  6539. "homepage": "https://symfony.com",
  6540. "support": {
  6541. "source": "https://github.com/symfony/process/tree/v6.4.12"
  6542. },
  6543. "funding": [
  6544. {
  6545. "url": "https://symfony.com/sponsor",
  6546. "type": "custom"
  6547. },
  6548. {
  6549. "url": "https://github.com/fabpot",
  6550. "type": "github"
  6551. },
  6552. {
  6553. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6554. "type": "tidelift"
  6555. }
  6556. ],
  6557. "time": "2024-09-17T12:47:12+00:00"
  6558. },
  6559. {
  6560. "name": "symfony/stopwatch",
  6561. "version": "v6.4.8",
  6562. "source": {
  6563. "type": "git",
  6564. "url": "https://github.com/symfony/stopwatch.git",
  6565. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  6566. },
  6567. "dist": {
  6568. "type": "zip",
  6569. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  6570. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  6571. "shasum": ""
  6572. },
  6573. "require": {
  6574. "php": ">=8.1",
  6575. "symfony/service-contracts": "^2.5|^3"
  6576. },
  6577. "type": "library",
  6578. "autoload": {
  6579. "psr-4": {
  6580. "Symfony\\Component\\Stopwatch\\": ""
  6581. },
  6582. "exclude-from-classmap": [
  6583. "/Tests/"
  6584. ]
  6585. },
  6586. "notification-url": "https://packagist.org/downloads/",
  6587. "license": [
  6588. "MIT"
  6589. ],
  6590. "authors": [
  6591. {
  6592. "name": "Fabien Potencier",
  6593. "email": "fabien@symfony.com"
  6594. },
  6595. {
  6596. "name": "Symfony Community",
  6597. "homepage": "https://symfony.com/contributors"
  6598. }
  6599. ],
  6600. "description": "Provides a way to profile code",
  6601. "homepage": "https://symfony.com",
  6602. "support": {
  6603. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  6604. },
  6605. "funding": [
  6606. {
  6607. "url": "https://symfony.com/sponsor",
  6608. "type": "custom"
  6609. },
  6610. {
  6611. "url": "https://github.com/fabpot",
  6612. "type": "github"
  6613. },
  6614. {
  6615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6616. "type": "tidelift"
  6617. }
  6618. ],
  6619. "time": "2024-05-31T14:49:08+00:00"
  6620. },
  6621. {
  6622. "name": "symfony/var-dumper",
  6623. "version": "v6.4.11",
  6624. "source": {
  6625. "type": "git",
  6626. "url": "https://github.com/symfony/var-dumper.git",
  6627. "reference": "ee14c8254a480913268b1e3b1cba8045ed122694"
  6628. },
  6629. "dist": {
  6630. "type": "zip",
  6631. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ee14c8254a480913268b1e3b1cba8045ed122694",
  6632. "reference": "ee14c8254a480913268b1e3b1cba8045ed122694",
  6633. "shasum": ""
  6634. },
  6635. "require": {
  6636. "php": ">=8.1",
  6637. "symfony/deprecation-contracts": "^2.5|^3",
  6638. "symfony/polyfill-mbstring": "~1.0"
  6639. },
  6640. "conflict": {
  6641. "symfony/console": "<5.4"
  6642. },
  6643. "require-dev": {
  6644. "ext-iconv": "*",
  6645. "symfony/console": "^5.4|^6.0|^7.0",
  6646. "symfony/error-handler": "^6.3|^7.0",
  6647. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6648. "symfony/process": "^5.4|^6.0|^7.0",
  6649. "symfony/uid": "^5.4|^6.0|^7.0",
  6650. "twig/twig": "^2.13|^3.0.4"
  6651. },
  6652. "bin": [
  6653. "Resources/bin/var-dump-server"
  6654. ],
  6655. "type": "library",
  6656. "autoload": {
  6657. "files": [
  6658. "Resources/functions/dump.php"
  6659. ],
  6660. "psr-4": {
  6661. "Symfony\\Component\\VarDumper\\": ""
  6662. },
  6663. "exclude-from-classmap": [
  6664. "/Tests/"
  6665. ]
  6666. },
  6667. "notification-url": "https://packagist.org/downloads/",
  6668. "license": [
  6669. "MIT"
  6670. ],
  6671. "authors": [
  6672. {
  6673. "name": "Nicolas Grekas",
  6674. "email": "p@tchwork.com"
  6675. },
  6676. {
  6677. "name": "Symfony Community",
  6678. "homepage": "https://symfony.com/contributors"
  6679. }
  6680. ],
  6681. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6682. "homepage": "https://symfony.com",
  6683. "keywords": [
  6684. "debug",
  6685. "dump"
  6686. ],
  6687. "support": {
  6688. "source": "https://github.com/symfony/var-dumper/tree/v6.4.11"
  6689. },
  6690. "funding": [
  6691. {
  6692. "url": "https://symfony.com/sponsor",
  6693. "type": "custom"
  6694. },
  6695. {
  6696. "url": "https://github.com/fabpot",
  6697. "type": "github"
  6698. },
  6699. {
  6700. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6701. "type": "tidelift"
  6702. }
  6703. ],
  6704. "time": "2024-08-30T16:03:21+00:00"
  6705. },
  6706. {
  6707. "name": "thecodingmachine/safe",
  6708. "version": "v2.5.0",
  6709. "source": {
  6710. "type": "git",
  6711. "url": "https://github.com/thecodingmachine/safe.git",
  6712. "reference": "3115ecd6b4391662b4931daac4eba6b07a2ac1f0"
  6713. },
  6714. "dist": {
  6715. "type": "zip",
  6716. "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/3115ecd6b4391662b4931daac4eba6b07a2ac1f0",
  6717. "reference": "3115ecd6b4391662b4931daac4eba6b07a2ac1f0",
  6718. "shasum": ""
  6719. },
  6720. "require": {
  6721. "php": "^8.0"
  6722. },
  6723. "require-dev": {
  6724. "phpstan/phpstan": "^1.5",
  6725. "phpunit/phpunit": "^9.5",
  6726. "squizlabs/php_codesniffer": "^3.2",
  6727. "thecodingmachine/phpstan-strict-rules": "^1.0"
  6728. },
  6729. "type": "library",
  6730. "extra": {
  6731. "branch-alias": {
  6732. "dev-master": "2.2.x-dev"
  6733. }
  6734. },
  6735. "autoload": {
  6736. "files": [
  6737. "deprecated/apc.php",
  6738. "deprecated/array.php",
  6739. "deprecated/datetime.php",
  6740. "deprecated/libevent.php",
  6741. "deprecated/misc.php",
  6742. "deprecated/password.php",
  6743. "deprecated/mssql.php",
  6744. "deprecated/stats.php",
  6745. "deprecated/strings.php",
  6746. "lib/special_cases.php",
  6747. "deprecated/mysqli.php",
  6748. "generated/apache.php",
  6749. "generated/apcu.php",
  6750. "generated/array.php",
  6751. "generated/bzip2.php",
  6752. "generated/calendar.php",
  6753. "generated/classobj.php",
  6754. "generated/com.php",
  6755. "generated/cubrid.php",
  6756. "generated/curl.php",
  6757. "generated/datetime.php",
  6758. "generated/dir.php",
  6759. "generated/eio.php",
  6760. "generated/errorfunc.php",
  6761. "generated/exec.php",
  6762. "generated/fileinfo.php",
  6763. "generated/filesystem.php",
  6764. "generated/filter.php",
  6765. "generated/fpm.php",
  6766. "generated/ftp.php",
  6767. "generated/funchand.php",
  6768. "generated/gettext.php",
  6769. "generated/gmp.php",
  6770. "generated/gnupg.php",
  6771. "generated/hash.php",
  6772. "generated/ibase.php",
  6773. "generated/ibmDb2.php",
  6774. "generated/iconv.php",
  6775. "generated/image.php",
  6776. "generated/imap.php",
  6777. "generated/info.php",
  6778. "generated/inotify.php",
  6779. "generated/json.php",
  6780. "generated/ldap.php",
  6781. "generated/libxml.php",
  6782. "generated/lzf.php",
  6783. "generated/mailparse.php",
  6784. "generated/mbstring.php",
  6785. "generated/misc.php",
  6786. "generated/mysql.php",
  6787. "generated/network.php",
  6788. "generated/oci8.php",
  6789. "generated/opcache.php",
  6790. "generated/openssl.php",
  6791. "generated/outcontrol.php",
  6792. "generated/pcntl.php",
  6793. "generated/pcre.php",
  6794. "generated/pgsql.php",
  6795. "generated/posix.php",
  6796. "generated/ps.php",
  6797. "generated/pspell.php",
  6798. "generated/readline.php",
  6799. "generated/rpminfo.php",
  6800. "generated/rrd.php",
  6801. "generated/sem.php",
  6802. "generated/session.php",
  6803. "generated/shmop.php",
  6804. "generated/sockets.php",
  6805. "generated/sodium.php",
  6806. "generated/solr.php",
  6807. "generated/spl.php",
  6808. "generated/sqlsrv.php",
  6809. "generated/ssdeep.php",
  6810. "generated/ssh2.php",
  6811. "generated/stream.php",
  6812. "generated/strings.php",
  6813. "generated/swoole.php",
  6814. "generated/uodbc.php",
  6815. "generated/uopz.php",
  6816. "generated/url.php",
  6817. "generated/var.php",
  6818. "generated/xdiff.php",
  6819. "generated/xml.php",
  6820. "generated/xmlrpc.php",
  6821. "generated/yaml.php",
  6822. "generated/yaz.php",
  6823. "generated/zip.php",
  6824. "generated/zlib.php"
  6825. ],
  6826. "classmap": [
  6827. "lib/DateTime.php",
  6828. "lib/DateTimeImmutable.php",
  6829. "lib/Exceptions/",
  6830. "deprecated/Exceptions/",
  6831. "generated/Exceptions/"
  6832. ]
  6833. },
  6834. "notification-url": "https://packagist.org/downloads/",
  6835. "license": [
  6836. "MIT"
  6837. ],
  6838. "description": "PHP core functions that throw exceptions instead of returning FALSE on error",
  6839. "support": {
  6840. "issues": "https://github.com/thecodingmachine/safe/issues",
  6841. "source": "https://github.com/thecodingmachine/safe/tree/v2.5.0"
  6842. },
  6843. "time": "2023-04-05T11:54:14+00:00"
  6844. },
  6845. {
  6846. "name": "theseer/tokenizer",
  6847. "version": "1.2.3",
  6848. "source": {
  6849. "type": "git",
  6850. "url": "https://github.com/theseer/tokenizer.git",
  6851. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  6852. },
  6853. "dist": {
  6854. "type": "zip",
  6855. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  6856. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  6857. "shasum": ""
  6858. },
  6859. "require": {
  6860. "ext-dom": "*",
  6861. "ext-tokenizer": "*",
  6862. "ext-xmlwriter": "*",
  6863. "php": "^7.2 || ^8.0"
  6864. },
  6865. "type": "library",
  6866. "autoload": {
  6867. "classmap": [
  6868. "src/"
  6869. ]
  6870. },
  6871. "notification-url": "https://packagist.org/downloads/",
  6872. "license": [
  6873. "BSD-3-Clause"
  6874. ],
  6875. "authors": [
  6876. {
  6877. "name": "Arne Blankerts",
  6878. "email": "arne@blankerts.de",
  6879. "role": "Developer"
  6880. }
  6881. ],
  6882. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6883. "support": {
  6884. "issues": "https://github.com/theseer/tokenizer/issues",
  6885. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  6886. },
  6887. "funding": [
  6888. {
  6889. "url": "https://github.com/theseer",
  6890. "type": "github"
  6891. }
  6892. ],
  6893. "time": "2024-03-03T12:36:25+00:00"
  6894. },
  6895. {
  6896. "name": "webmozart/assert",
  6897. "version": "1.11.0",
  6898. "source": {
  6899. "type": "git",
  6900. "url": "https://github.com/webmozarts/assert.git",
  6901. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6902. },
  6903. "dist": {
  6904. "type": "zip",
  6905. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6906. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6907. "shasum": ""
  6908. },
  6909. "require": {
  6910. "ext-ctype": "*",
  6911. "php": "^7.2 || ^8.0"
  6912. },
  6913. "conflict": {
  6914. "phpstan/phpstan": "<0.12.20",
  6915. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6916. },
  6917. "require-dev": {
  6918. "phpunit/phpunit": "^8.5.13"
  6919. },
  6920. "type": "library",
  6921. "extra": {
  6922. "branch-alias": {
  6923. "dev-master": "1.10-dev"
  6924. }
  6925. },
  6926. "autoload": {
  6927. "psr-4": {
  6928. "Webmozart\\Assert\\": "src/"
  6929. }
  6930. },
  6931. "notification-url": "https://packagist.org/downloads/",
  6932. "license": [
  6933. "MIT"
  6934. ],
  6935. "authors": [
  6936. {
  6937. "name": "Bernhard Schussek",
  6938. "email": "bschussek@gmail.com"
  6939. }
  6940. ],
  6941. "description": "Assertions to validate method input/output with nice error messages.",
  6942. "keywords": [
  6943. "assert",
  6944. "check",
  6945. "validate"
  6946. ],
  6947. "support": {
  6948. "issues": "https://github.com/webmozarts/assert/issues",
  6949. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  6950. },
  6951. "time": "2022-06-03T18:03:27+00:00"
  6952. }
  6953. ],
  6954. "aliases": [],
  6955. "minimum-stability": "stable",
  6956. "stability-flags": [],
  6957. "prefer-stable": false,
  6958. "prefer-lowest": false,
  6959. "platform": {
  6960. "php": ">= 8.1",
  6961. "ext-mbstring": "*",
  6962. "ext-zlib": "*"
  6963. },
  6964. "platform-dev": [],
  6965. "plugin-api-version": "2.2.0"
  6966. }