composer.lock 246 KB

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