composer.lock 311 KB

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