composer.lock 212 KB

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