composer.lock 315 KB

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