composer.lock 359 KB

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