composer.lock 334 KB

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