composer.lock 431 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933
  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": "088f91031013fd995be205117d3e3567",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": "^5.5 || ^7.0 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  35. "squizlabs/php_codesniffer": "^3.6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  65. },
  66. "time": "2022-10-14T20:31:46+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/client",
  70. "version": "1.5.32",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  74. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  79. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.4.1",
  90. "clagiordano/weblibs-configmanager": "^1.0",
  91. "ext-curl": "*",
  92. "ext-json": "*",
  93. "ext-libxml": "*",
  94. "ext-mbstring": "*",
  95. "ext-openssl": "*",
  96. "ext-simplexml": "*",
  97. "ext-xmlwriter": "*",
  98. "guzzlehttp/guzzle": "^6.3|^7.0",
  99. "mtdowling/jmespath.php": "^2.5",
  100. "php": ">=5.5"
  101. },
  102. "require-dev": {
  103. "composer/composer": "^1.8",
  104. "drupal/coder": "^8.3",
  105. "ext-dom": "*",
  106. "ext-pcre": "*",
  107. "ext-sockets": "*",
  108. "ext-spl": "*",
  109. "league/climate": "^3.2.4",
  110. "mikey179/vfsstream": "^1.6",
  111. "monolog/monolog": "^1.24",
  112. "phpunit/phpunit": "^5.7|^6.6|^7.5|^8.5|^9.5",
  113. "psr/cache": "^1.0",
  114. "symfony/dotenv": "^3.4",
  115. "symfony/var-dumper": "^3.4"
  116. },
  117. "suggest": {
  118. "ext-sockets": "To use client-side monitoring"
  119. },
  120. "type": "library",
  121. "autoload": {
  122. "files": [
  123. "src/Functions.php"
  124. ],
  125. "psr-4": {
  126. "AlibabaCloud\\Client\\": "src"
  127. }
  128. },
  129. "notification-url": "https://packagist.org/downloads/",
  130. "license": [
  131. "Apache-2.0"
  132. ],
  133. "authors": [
  134. {
  135. "name": "Alibaba Cloud SDK",
  136. "email": "sdk-team@alibabacloud.com",
  137. "homepage": "http://www.alibabacloud.com"
  138. }
  139. ],
  140. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  141. "homepage": "https://www.alibabacloud.com/",
  142. "keywords": [
  143. "alibaba",
  144. "alibabacloud",
  145. "aliyun",
  146. "client",
  147. "cloud",
  148. "library",
  149. "sdk",
  150. "tool"
  151. ],
  152. "support": {
  153. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  154. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  155. },
  156. "time": "2022-12-09T04:05:55+00:00"
  157. },
  158. {
  159. "name": "alibabacloud/credentials",
  160. "version": "1.2.3",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/aliyun/credentials-php.git",
  164. "reference": "f6d1986e7b7be8da781d0b99f24c92d9860ba0c1"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/f6d1986e7b7be8da781d0b99f24c92d9860ba0c1",
  169. "reference": "f6d1986e7b7be8da781d0b99f24c92d9860ba0c1",
  170. "shasum": "",
  171. "mirrors": [
  172. {
  173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  174. "preferred": true
  175. }
  176. ]
  177. },
  178. "require": {
  179. "adbario/php-dot-notation": "^2.2",
  180. "alibabacloud/tea": "^3.0",
  181. "ext-curl": "*",
  182. "ext-json": "*",
  183. "ext-libxml": "*",
  184. "ext-mbstring": "*",
  185. "ext-openssl": "*",
  186. "ext-simplexml": "*",
  187. "ext-xmlwriter": "*",
  188. "guzzlehttp/guzzle": "^6.3|^7.0",
  189. "php": ">=5.6"
  190. },
  191. "require-dev": {
  192. "composer/composer": "^1.8",
  193. "drupal/coder": "^8.3",
  194. "ext-dom": "*",
  195. "ext-pcre": "*",
  196. "ext-sockets": "*",
  197. "ext-spl": "*",
  198. "mikey179/vfsstream": "^1.6",
  199. "monolog/monolog": "^1.24",
  200. "phpunit/phpunit": "^5.7|^6.6|^9.3",
  201. "psr/cache": "^1.0",
  202. "symfony/dotenv": "^3.4",
  203. "symfony/var-dumper": "^3.4"
  204. },
  205. "suggest": {
  206. "ext-sockets": "To use client-side monitoring"
  207. },
  208. "type": "library",
  209. "autoload": {
  210. "psr-4": {
  211. "AlibabaCloud\\Credentials\\": "src"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "Apache-2.0"
  217. ],
  218. "authors": [
  219. {
  220. "name": "Alibaba Cloud SDK",
  221. "email": "sdk-team@alibabacloud.com",
  222. "homepage": "http://www.alibabacloud.com"
  223. }
  224. ],
  225. "description": "Alibaba Cloud Credentials for PHP",
  226. "homepage": "https://www.alibabacloud.com/",
  227. "keywords": [
  228. "alibaba",
  229. "alibabacloud",
  230. "aliyun",
  231. "client",
  232. "cloud",
  233. "credentials",
  234. "library",
  235. "sdk",
  236. "tool"
  237. ],
  238. "support": {
  239. "issues": "https://github.com/aliyun/credentials-php/issues",
  240. "source": "https://github.com/aliyun/credentials-php"
  241. },
  242. "time": "2025-04-18T09:09:46+00:00"
  243. },
  244. {
  245. "name": "alibabacloud/darabonba-openapi",
  246. "version": "0.2.17",
  247. "source": {
  248. "type": "git",
  249. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  250. "reference": "051cd22db3da16ab7d0110feb3fc45dd0f999f92"
  251. },
  252. "dist": {
  253. "type": "zip",
  254. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/051cd22db3da16ab7d0110feb3fc45dd0f999f92",
  255. "reference": "051cd22db3da16ab7d0110feb3fc45dd0f999f92",
  256. "shasum": "",
  257. "mirrors": [
  258. {
  259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  260. "preferred": true
  261. }
  262. ]
  263. },
  264. "require": {
  265. "alibabacloud/credentials": "^1.2.2",
  266. "alibabacloud/gateway-spi": "^1",
  267. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  268. "alibabacloud/tea-utils": "^0.2.21",
  269. "alibabacloud/tea-xml": "^0.2",
  270. "php": ">5.5"
  271. },
  272. "type": "library",
  273. "autoload": {
  274. "psr-4": {
  275. "Darabonba\\OpenApi\\": "src"
  276. }
  277. },
  278. "notification-url": "https://packagist.org/downloads/",
  279. "license": [
  280. "Apache-2.0"
  281. ],
  282. "authors": [
  283. {
  284. "name": "Alibaba Cloud SDK",
  285. "email": "sdk-team@alibabacloud.com"
  286. }
  287. ],
  288. "description": "Alibaba Cloud OpenApi Client",
  289. "support": {
  290. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  291. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.17"
  292. },
  293. "time": "2025-07-04T09:26:04+00:00"
  294. },
  295. {
  296. "name": "alibabacloud/dysmsapi-20170525",
  297. "version": "3.1.1",
  298. "source": {
  299. "type": "git",
  300. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  301. "reference": "5a301a076b29449a488607cbfbb7f12b8cc50c1f"
  302. },
  303. "dist": {
  304. "type": "zip",
  305. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/5a301a076b29449a488607cbfbb7f12b8cc50c1f",
  306. "reference": "5a301a076b29449a488607cbfbb7f12b8cc50c1f",
  307. "shasum": "",
  308. "mirrors": [
  309. {
  310. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  311. "preferred": true
  312. }
  313. ]
  314. },
  315. "require": {
  316. "alibabacloud/darabonba-openapi": "^0.2.13",
  317. "alibabacloud/endpoint-util": "^0.1.0",
  318. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  319. "alibabacloud/tea-utils": "^0.2.21",
  320. "php": ">5.5"
  321. },
  322. "type": "library",
  323. "autoload": {
  324. "psr-4": {
  325. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  326. }
  327. },
  328. "notification-url": "https://packagist.org/downloads/",
  329. "license": [
  330. "Apache-2.0"
  331. ],
  332. "authors": [
  333. {
  334. "name": "Alibaba Cloud SDK",
  335. "email": "sdk-team@alibabacloud.com"
  336. }
  337. ],
  338. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  339. "support": {
  340. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/3.1.1"
  341. },
  342. "time": "2025-01-03T17:14:56+00:00"
  343. },
  344. {
  345. "name": "alibabacloud/endpoint-util",
  346. "version": "0.1.1",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  350. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  355. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  356. "shasum": "",
  357. "mirrors": [
  358. {
  359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  360. "preferred": true
  361. }
  362. ]
  363. },
  364. "require": {
  365. "php": ">5.5"
  366. },
  367. "require-dev": {
  368. "phpunit/phpunit": "^4.8.35|^5.4.3"
  369. },
  370. "type": "library",
  371. "autoload": {
  372. "psr-4": {
  373. "AlibabaCloud\\Endpoint\\": "src"
  374. }
  375. },
  376. "notification-url": "https://packagist.org/downloads/",
  377. "license": [
  378. "Apache-2.0"
  379. ],
  380. "authors": [
  381. {
  382. "name": "Alibaba Cloud SDK",
  383. "email": "sdk-team@alibabacloud.com"
  384. }
  385. ],
  386. "description": "Alibaba Cloud Endpoint Library for PHP",
  387. "support": {
  388. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  389. },
  390. "time": "2020-06-04T10:57:15+00:00"
  391. },
  392. {
  393. "name": "alibabacloud/gateway-spi",
  394. "version": "1.0.0",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  398. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  403. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  404. "shasum": "",
  405. "mirrors": [
  406. {
  407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  408. "preferred": true
  409. }
  410. ]
  411. },
  412. "require": {
  413. "alibabacloud/credentials": "^1.1",
  414. "php": ">5.5"
  415. },
  416. "type": "library",
  417. "autoload": {
  418. "psr-4": {
  419. "Darabonba\\GatewaySpi\\": "src"
  420. }
  421. },
  422. "notification-url": "https://packagist.org/downloads/",
  423. "license": [
  424. "Apache-2.0"
  425. ],
  426. "authors": [
  427. {
  428. "name": "Alibaba Cloud SDK",
  429. "email": "sdk-team@alibabacloud.com"
  430. }
  431. ],
  432. "description": "Alibaba Cloud Gateway SPI Client",
  433. "support": {
  434. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  435. },
  436. "time": "2022-07-14T05:31:35+00:00"
  437. },
  438. {
  439. "name": "alibabacloud/green-20220302",
  440. "version": "2.19.3",
  441. "source": {
  442. "type": "git",
  443. "url": "https://github.com/alibabacloud-sdk-php/green-20220302.git",
  444. "reference": "a7a701d2aaef70db9cf96068d35e4ac4b2aa5e3a"
  445. },
  446. "dist": {
  447. "type": "zip",
  448. "url": "https://api.github.com/repos/alibabacloud-sdk-php/green-20220302/zipball/a7a701d2aaef70db9cf96068d35e4ac4b2aa5e3a",
  449. "reference": "a7a701d2aaef70db9cf96068d35e4ac4b2aa5e3a",
  450. "shasum": "",
  451. "mirrors": [
  452. {
  453. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  454. "preferred": true
  455. }
  456. ]
  457. },
  458. "require": {
  459. "alibabacloud/darabonba-openapi": "^0.2.13",
  460. "alibabacloud/endpoint-util": "^0.1.0",
  461. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  462. "alibabacloud/tea-utils": "^0.2.21",
  463. "php": ">5.5"
  464. },
  465. "type": "library",
  466. "autoload": {
  467. "psr-4": {
  468. "AlibabaCloud\\SDK\\Green\\V20220302\\": "src"
  469. }
  470. },
  471. "notification-url": "https://packagist.org/downloads/",
  472. "license": [
  473. "Apache-2.0"
  474. ],
  475. "authors": [
  476. {
  477. "name": "Alibaba Cloud SDK",
  478. "email": "sdk-team@alibabacloud.com"
  479. }
  480. ],
  481. "description": "Alibaba Cloud Green (20220302) SDK Library for PHP",
  482. "support": {
  483. "source": "https://github.com/alibabacloud-sdk-php/green-20220302/tree/2.19.3"
  484. },
  485. "time": "2025-01-09T17:19:57+00:00"
  486. },
  487. {
  488. "name": "alibabacloud/live",
  489. "version": "1.8.958",
  490. "source": {
  491. "type": "git",
  492. "url": "https://github.com/alibabacloud-sdk-php/live.git",
  493. "reference": "2dc756e9e156cb33bc1287d28fc3fade87e4ae60"
  494. },
  495. "dist": {
  496. "type": "zip",
  497. "url": "https://api.github.com/repos/alibabacloud-sdk-php/live/zipball/2dc756e9e156cb33bc1287d28fc3fade87e4ae60",
  498. "reference": "2dc756e9e156cb33bc1287d28fc3fade87e4ae60",
  499. "shasum": "",
  500. "mirrors": [
  501. {
  502. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  503. "preferred": true
  504. }
  505. ]
  506. },
  507. "require": {
  508. "alibabacloud/client": "^1.5",
  509. "php": ">=5.5"
  510. },
  511. "type": "library",
  512. "autoload": {
  513. "psr-4": {
  514. "AlibabaCloud\\Live\\": ""
  515. }
  516. },
  517. "notification-url": "https://packagist.org/downloads/",
  518. "license": [
  519. "Apache-2.0"
  520. ],
  521. "authors": [
  522. {
  523. "name": "Alibaba Cloud SDK",
  524. "email": "sdk-team@alibabacloud.com",
  525. "homepage": "http://www.alibabacloud.com"
  526. }
  527. ],
  528. "description": "Alibaba Cloud Live SDK for PHP",
  529. "homepage": "https://www.alibabacloud.com/",
  530. "keywords": [
  531. "alibaba",
  532. "alibabacloud",
  533. "aliyun",
  534. "cloud",
  535. "library",
  536. "live",
  537. "sdk"
  538. ],
  539. "support": {
  540. "issues": "https://github.com/alibabacloud-sdk-php/live/issues",
  541. "source": "https://github.com/alibabacloud-sdk-php/live"
  542. },
  543. "time": "2021-04-29T09:14:45+00:00"
  544. },
  545. {
  546. "name": "alibabacloud/openapi-util",
  547. "version": "0.2.1",
  548. "source": {
  549. "type": "git",
  550. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  551. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  552. },
  553. "dist": {
  554. "type": "zip",
  555. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  556. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  557. "shasum": "",
  558. "mirrors": [
  559. {
  560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  561. "preferred": true
  562. }
  563. ]
  564. },
  565. "require": {
  566. "alibabacloud/tea": "^3.1",
  567. "alibabacloud/tea-utils": "^0.2",
  568. "lizhichao/one-sm": "^1.5",
  569. "php": ">5.5"
  570. },
  571. "require-dev": {
  572. "phpunit/phpunit": "*"
  573. },
  574. "type": "library",
  575. "autoload": {
  576. "psr-4": {
  577. "AlibabaCloud\\OpenApiUtil\\": "src"
  578. }
  579. },
  580. "notification-url": "https://packagist.org/downloads/",
  581. "license": [
  582. "Apache-2.0"
  583. ],
  584. "authors": [
  585. {
  586. "name": "Alibaba Cloud SDK",
  587. "email": "sdk-team@alibabacloud.com"
  588. }
  589. ],
  590. "description": "Alibaba Cloud OpenApi Util",
  591. "support": {
  592. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  593. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  594. },
  595. "time": "2023-01-10T09:10:10+00:00"
  596. },
  597. {
  598. "name": "alibabacloud/tea",
  599. "version": "3.2.1",
  600. "source": {
  601. "type": "git",
  602. "url": "https://github.com/aliyun/tea-php.git",
  603. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  604. },
  605. "dist": {
  606. "type": "zip",
  607. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  608. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  609. "shasum": "",
  610. "mirrors": [
  611. {
  612. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  613. "preferred": true
  614. }
  615. ]
  616. },
  617. "require": {
  618. "adbario/php-dot-notation": "^2.4",
  619. "ext-curl": "*",
  620. "ext-json": "*",
  621. "ext-libxml": "*",
  622. "ext-mbstring": "*",
  623. "ext-openssl": "*",
  624. "ext-simplexml": "*",
  625. "ext-xmlwriter": "*",
  626. "guzzlehttp/guzzle": "^6.3|^7.0",
  627. "php": ">=5.5"
  628. },
  629. "require-dev": {
  630. "phpunit/phpunit": "*",
  631. "symfony/dotenv": "^3.4",
  632. "symfony/var-dumper": "^3.4"
  633. },
  634. "suggest": {
  635. "ext-sockets": "To use client-side monitoring"
  636. },
  637. "type": "library",
  638. "autoload": {
  639. "psr-4": {
  640. "AlibabaCloud\\Tea\\": "src"
  641. }
  642. },
  643. "notification-url": "https://packagist.org/downloads/",
  644. "license": [
  645. "Apache-2.0"
  646. ],
  647. "authors": [
  648. {
  649. "name": "Alibaba Cloud SDK",
  650. "email": "sdk-team@alibabacloud.com",
  651. "homepage": "http://www.alibabacloud.com"
  652. }
  653. ],
  654. "description": "Client of Tea for PHP",
  655. "homepage": "https://www.alibabacloud.com/",
  656. "keywords": [
  657. "alibabacloud",
  658. "client",
  659. "cloud",
  660. "tea"
  661. ],
  662. "support": {
  663. "issues": "https://github.com/aliyun/tea-php/issues",
  664. "source": "https://github.com/aliyun/tea-php"
  665. },
  666. "time": "2023-05-16T06:43:41+00:00"
  667. },
  668. {
  669. "name": "alibabacloud/tea-fileform",
  670. "version": "0.3.4",
  671. "source": {
  672. "type": "git",
  673. "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
  674. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181"
  675. },
  676. "dist": {
  677. "type": "zip",
  678. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  679. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  680. "shasum": "",
  681. "mirrors": [
  682. {
  683. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  684. "preferred": true
  685. }
  686. ]
  687. },
  688. "require": {
  689. "alibabacloud/tea": "^3.0",
  690. "php": ">5.5"
  691. },
  692. "require-dev": {
  693. "phpunit/phpunit": "^4.8.35|^5.4.3"
  694. },
  695. "type": "library",
  696. "autoload": {
  697. "psr-4": {
  698. "AlibabaCloud\\Tea\\FileForm\\": "src"
  699. }
  700. },
  701. "notification-url": "https://packagist.org/downloads/",
  702. "license": [
  703. "Apache-2.0"
  704. ],
  705. "authors": [
  706. {
  707. "name": "Alibaba Cloud SDK",
  708. "email": "sdk-team@alibabacloud.com"
  709. }
  710. ],
  711. "description": "Alibaba Cloud Tea File Library for PHP",
  712. "support": {
  713. "issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues",
  714. "source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4"
  715. },
  716. "time": "2020-12-01T07:24:35+00:00"
  717. },
  718. {
  719. "name": "alibabacloud/tea-utils",
  720. "version": "0.2.21",
  721. "source": {
  722. "type": "git",
  723. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  724. "reference": "5039e45714c6456186d267f5d81a4b260a652495"
  725. },
  726. "dist": {
  727. "type": "zip",
  728. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/5039e45714c6456186d267f5d81a4b260a652495",
  729. "reference": "5039e45714c6456186d267f5d81a4b260a652495",
  730. "shasum": "",
  731. "mirrors": [
  732. {
  733. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  734. "preferred": true
  735. }
  736. ]
  737. },
  738. "require": {
  739. "alibabacloud/tea": "^3.1",
  740. "php": ">5.5"
  741. },
  742. "type": "library",
  743. "autoload": {
  744. "psr-4": {
  745. "AlibabaCloud\\Tea\\Utils\\": "src"
  746. }
  747. },
  748. "notification-url": "https://packagist.org/downloads/",
  749. "license": [
  750. "Apache-2.0"
  751. ],
  752. "authors": [
  753. {
  754. "name": "Alibaba Cloud SDK",
  755. "email": "sdk-team@alibabacloud.com"
  756. }
  757. ],
  758. "description": "Alibaba Cloud Tea Utils for PHP",
  759. "support": {
  760. "issues": "https://github.com/aliyun/tea-util/issues",
  761. "source": "https://github.com/aliyun/tea-util"
  762. },
  763. "time": "2024-07-05T06:05:54+00:00"
  764. },
  765. {
  766. "name": "alibabacloud/tea-xml",
  767. "version": "0.2.4",
  768. "source": {
  769. "type": "git",
  770. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  771. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  772. },
  773. "dist": {
  774. "type": "zip",
  775. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  776. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  777. "shasum": "",
  778. "mirrors": [
  779. {
  780. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  781. "preferred": true
  782. }
  783. ]
  784. },
  785. "require": {
  786. "php": ">5.5"
  787. },
  788. "require-dev": {
  789. "phpunit/phpunit": "*",
  790. "symfony/var-dumper": "*"
  791. },
  792. "type": "library",
  793. "autoload": {
  794. "psr-4": {
  795. "AlibabaCloud\\Tea\\XML\\": "src"
  796. }
  797. },
  798. "notification-url": "https://packagist.org/downloads/",
  799. "license": [
  800. "Apache-2.0"
  801. ],
  802. "authors": [
  803. {
  804. "name": "Alibaba Cloud SDK",
  805. "email": "sdk-team@alibabacloud.com"
  806. }
  807. ],
  808. "description": "Alibaba Cloud Tea XML Library for PHP",
  809. "support": {
  810. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  811. },
  812. "time": "2022-08-02T04:12:58+00:00"
  813. },
  814. {
  815. "name": "alipaysdk/easysdk",
  816. "version": "2.2.3",
  817. "source": {
  818. "type": "git",
  819. "url": "https://github.com/alipay/alipay-easysdk.git",
  820. "reference": "c6008839a22a5fca08e9f8536730f7abfed522d5"
  821. },
  822. "dist": {
  823. "type": "zip",
  824. "url": "https://api.github.com/repos/alipay/alipay-easysdk/zipball/c6008839a22a5fca08e9f8536730f7abfed522d5",
  825. "reference": "c6008839a22a5fca08e9f8536730f7abfed522d5",
  826. "shasum": "",
  827. "mirrors": [
  828. {
  829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  830. "preferred": true
  831. }
  832. ]
  833. },
  834. "require": {
  835. "alibabacloud/tea": "^3.1",
  836. "alibabacloud/tea-fileform": "^0.3.2",
  837. "ext-ctype": "*",
  838. "ext-curl": "*",
  839. "ext-dom": "*",
  840. "ext-fileinfo": "*",
  841. "ext-json": "*",
  842. "ext-libxml": "*",
  843. "ext-mbstring": "*",
  844. "ext-openssl": "*",
  845. "ext-simplexml": "*",
  846. "ext-xmlwriter": "*",
  847. "guzzlehttp/guzzle": ">=6.3",
  848. "php": ">=7.0"
  849. },
  850. "require-dev": {
  851. "phpunit/phpunit": "^7.5"
  852. },
  853. "type": "library",
  854. "autoload": {
  855. "psr-4": {
  856. "Alipay\\EasySDK\\": "php/src/"
  857. }
  858. },
  859. "notification-url": "https://packagist.org/downloads/",
  860. "license": [
  861. "Apache-2.0"
  862. ],
  863. "authors": [
  864. {
  865. "name": "junying.wjy",
  866. "email": "junying.wjy@antfin.com"
  867. }
  868. ],
  869. "description": "支付宝官方 Alipay Easy SDK",
  870. "support": {
  871. "source": "https://github.com/alipay/alipay-easysdk/tree/v2.2.3"
  872. },
  873. "time": "2022-11-28T14:04:57+00:00"
  874. },
  875. {
  876. "name": "aliyuncs/oss-sdk-php",
  877. "version": "v2.7.2",
  878. "source": {
  879. "type": "git",
  880. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  881. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5"
  882. },
  883. "dist": {
  884. "type": "zip",
  885. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  886. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  887. "shasum": "",
  888. "mirrors": [
  889. {
  890. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  891. "preferred": true
  892. }
  893. ]
  894. },
  895. "require": {
  896. "php": ">=5.3"
  897. },
  898. "require-dev": {
  899. "php-coveralls/php-coveralls": "*",
  900. "phpunit/phpunit": "*"
  901. },
  902. "type": "library",
  903. "autoload": {
  904. "psr-4": {
  905. "OSS\\": "src/OSS"
  906. }
  907. },
  908. "notification-url": "https://packagist.org/downloads/",
  909. "license": [
  910. "MIT"
  911. ],
  912. "authors": [
  913. {
  914. "name": "Aliyuncs",
  915. "homepage": "http://www.aliyun.com"
  916. }
  917. ],
  918. "description": "Aliyun OSS SDK for PHP",
  919. "homepage": "http://www.aliyun.com/product/oss/",
  920. "support": {
  921. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  922. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.2"
  923. },
  924. "time": "2024-10-28T10:41:12+00:00"
  925. },
  926. {
  927. "name": "asm89/stack-cors",
  928. "version": "v2.3.0",
  929. "source": {
  930. "type": "git",
  931. "url": "https://github.com/asm89/stack-cors.git",
  932. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70"
  933. },
  934. "dist": {
  935. "type": "zip",
  936. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  937. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  938. "shasum": "",
  939. "mirrors": [
  940. {
  941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  942. "preferred": true
  943. }
  944. ]
  945. },
  946. "require": {
  947. "php": "^7.3|^8.0",
  948. "symfony/http-foundation": "^5.3|^6|^7",
  949. "symfony/http-kernel": "^5.3|^6|^7"
  950. },
  951. "require-dev": {
  952. "phpunit/phpunit": "^9",
  953. "squizlabs/php_codesniffer": "^3.5"
  954. },
  955. "type": "library",
  956. "extra": {
  957. "branch-alias": {
  958. "dev-master": "2.2-dev"
  959. }
  960. },
  961. "autoload": {
  962. "psr-4": {
  963. "Asm89\\Stack\\": "src/"
  964. }
  965. },
  966. "notification-url": "https://packagist.org/downloads/",
  967. "license": [
  968. "MIT"
  969. ],
  970. "authors": [
  971. {
  972. "name": "Alexander",
  973. "email": "iam.asm89@gmail.com"
  974. }
  975. ],
  976. "description": "Cross-origin resource sharing library and stack middleware",
  977. "homepage": "https://github.com/asm89/stack-cors",
  978. "keywords": [
  979. "cors",
  980. "stack"
  981. ],
  982. "support": {
  983. "issues": "https://github.com/asm89/stack-cors/issues",
  984. "source": "https://github.com/asm89/stack-cors/tree/v2.3.0"
  985. },
  986. "time": "2025-03-13T08:50:04+00:00"
  987. },
  988. {
  989. "name": "bacon/bacon-qr-code",
  990. "version": "2.0.8",
  991. "source": {
  992. "type": "git",
  993. "url": "https://github.com/Bacon/BaconQrCode.git",
  994. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  995. },
  996. "dist": {
  997. "type": "zip",
  998. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  999. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  1000. "shasum": "",
  1001. "mirrors": [
  1002. {
  1003. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1004. "preferred": true
  1005. }
  1006. ]
  1007. },
  1008. "require": {
  1009. "dasprid/enum": "^1.0.3",
  1010. "ext-iconv": "*",
  1011. "php": "^7.1 || ^8.0"
  1012. },
  1013. "require-dev": {
  1014. "phly/keep-a-changelog": "^2.1",
  1015. "phpunit/phpunit": "^7 | ^8 | ^9",
  1016. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  1017. "squizlabs/php_codesniffer": "^3.4"
  1018. },
  1019. "suggest": {
  1020. "ext-imagick": "to generate QR code images"
  1021. },
  1022. "type": "library",
  1023. "autoload": {
  1024. "psr-4": {
  1025. "BaconQrCode\\": "src/"
  1026. }
  1027. },
  1028. "notification-url": "https://packagist.org/downloads/",
  1029. "license": [
  1030. "BSD-2-Clause"
  1031. ],
  1032. "authors": [
  1033. {
  1034. "name": "Ben Scholzen 'DASPRiD'",
  1035. "email": "mail@dasprids.de",
  1036. "homepage": "https://dasprids.de/",
  1037. "role": "Developer"
  1038. }
  1039. ],
  1040. "description": "BaconQrCode is a QR code generator for PHP.",
  1041. "homepage": "https://github.com/Bacon/BaconQrCode",
  1042. "support": {
  1043. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  1044. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  1045. },
  1046. "time": "2022-12-07T17:46:57+00:00"
  1047. },
  1048. {
  1049. "name": "brick/math",
  1050. "version": "0.9.3",
  1051. "source": {
  1052. "type": "git",
  1053. "url": "https://github.com/brick/math.git",
  1054. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  1055. },
  1056. "dist": {
  1057. "type": "zip",
  1058. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  1059. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  1060. "shasum": "",
  1061. "mirrors": [
  1062. {
  1063. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1064. "preferred": true
  1065. }
  1066. ]
  1067. },
  1068. "require": {
  1069. "ext-json": "*",
  1070. "php": "^7.1 || ^8.0"
  1071. },
  1072. "require-dev": {
  1073. "php-coveralls/php-coveralls": "^2.2",
  1074. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  1075. "vimeo/psalm": "4.9.2"
  1076. },
  1077. "type": "library",
  1078. "autoload": {
  1079. "psr-4": {
  1080. "Brick\\Math\\": "src/"
  1081. }
  1082. },
  1083. "notification-url": "https://packagist.org/downloads/",
  1084. "license": [
  1085. "MIT"
  1086. ],
  1087. "description": "Arbitrary-precision arithmetic library",
  1088. "keywords": [
  1089. "Arbitrary-precision",
  1090. "BigInteger",
  1091. "BigRational",
  1092. "arithmetic",
  1093. "bigdecimal",
  1094. "bignum",
  1095. "brick",
  1096. "math"
  1097. ],
  1098. "support": {
  1099. "issues": "https://github.com/brick/math/issues",
  1100. "source": "https://github.com/brick/math/tree/0.9.3"
  1101. },
  1102. "funding": [
  1103. {
  1104. "url": "https://github.com/BenMorel",
  1105. "type": "github"
  1106. },
  1107. {
  1108. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  1109. "type": "tidelift"
  1110. }
  1111. ],
  1112. "time": "2021-08-15T20:50:18+00:00"
  1113. },
  1114. {
  1115. "name": "carbonphp/carbon-doctrine-types",
  1116. "version": "2.1.0",
  1117. "source": {
  1118. "type": "git",
  1119. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  1120. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  1121. },
  1122. "dist": {
  1123. "type": "zip",
  1124. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1125. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1126. "shasum": "",
  1127. "mirrors": [
  1128. {
  1129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1130. "preferred": true
  1131. }
  1132. ]
  1133. },
  1134. "require": {
  1135. "php": "^7.4 || ^8.0"
  1136. },
  1137. "conflict": {
  1138. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  1139. },
  1140. "require-dev": {
  1141. "doctrine/dbal": "^3.7.0",
  1142. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  1143. "phpunit/phpunit": "^10.3"
  1144. },
  1145. "type": "library",
  1146. "autoload": {
  1147. "psr-4": {
  1148. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  1149. }
  1150. },
  1151. "notification-url": "https://packagist.org/downloads/",
  1152. "license": [
  1153. "MIT"
  1154. ],
  1155. "authors": [
  1156. {
  1157. "name": "KyleKatarn",
  1158. "email": "kylekatarnls@gmail.com"
  1159. }
  1160. ],
  1161. "description": "Types to use Carbon in Doctrine",
  1162. "keywords": [
  1163. "carbon",
  1164. "date",
  1165. "datetime",
  1166. "doctrine",
  1167. "time"
  1168. ],
  1169. "support": {
  1170. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1171. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  1172. },
  1173. "funding": [
  1174. {
  1175. "url": "https://github.com/kylekatarnls",
  1176. "type": "github"
  1177. },
  1178. {
  1179. "url": "https://opencollective.com/Carbon",
  1180. "type": "open_collective"
  1181. },
  1182. {
  1183. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1184. "type": "tidelift"
  1185. }
  1186. ],
  1187. "time": "2023-12-11T17:09:12+00:00"
  1188. },
  1189. {
  1190. "name": "clagiordano/weblibs-configmanager",
  1191. "version": "v1.2.0",
  1192. "source": {
  1193. "type": "git",
  1194. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  1195. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059"
  1196. },
  1197. "dist": {
  1198. "type": "zip",
  1199. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/5c8ebcc62782313b1278afe802b120d18c07a059",
  1200. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059",
  1201. "shasum": "",
  1202. "mirrors": [
  1203. {
  1204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1205. "preferred": true
  1206. }
  1207. ]
  1208. },
  1209. "require": {
  1210. "php": ">=5.4"
  1211. },
  1212. "require-dev": {
  1213. "clagiordano/phpunit-result-printer": "^1",
  1214. "phpunit/phpunit": "^4.8"
  1215. },
  1216. "type": "library",
  1217. "autoload": {
  1218. "psr-4": {
  1219. "clagiordano\\weblibs\\configmanager\\": "src/"
  1220. }
  1221. },
  1222. "notification-url": "https://packagist.org/downloads/",
  1223. "license": [
  1224. "LGPL-3.0-or-later"
  1225. ],
  1226. "authors": [
  1227. {
  1228. "name": "Claudio Giordano",
  1229. "email": "claudio.giordano@autistici.org",
  1230. "role": "Developer"
  1231. }
  1232. ],
  1233. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  1234. "keywords": [
  1235. "clagiordano",
  1236. "configuration",
  1237. "manager",
  1238. "tool",
  1239. "weblibs"
  1240. ],
  1241. "support": {
  1242. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  1243. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.2.0"
  1244. },
  1245. "time": "2021-05-18T17:55:57+00:00"
  1246. },
  1247. {
  1248. "name": "composer/pcre",
  1249. "version": "3.3.2",
  1250. "source": {
  1251. "type": "git",
  1252. "url": "https://github.com/composer/pcre.git",
  1253. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  1254. },
  1255. "dist": {
  1256. "type": "zip",
  1257. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  1258. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  1259. "shasum": "",
  1260. "mirrors": [
  1261. {
  1262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1263. "preferred": true
  1264. }
  1265. ]
  1266. },
  1267. "require": {
  1268. "php": "^7.4 || ^8.0"
  1269. },
  1270. "conflict": {
  1271. "phpstan/phpstan": "<1.11.10"
  1272. },
  1273. "require-dev": {
  1274. "phpstan/phpstan": "^1.12 || ^2",
  1275. "phpstan/phpstan-strict-rules": "^1 || ^2",
  1276. "phpunit/phpunit": "^8 || ^9"
  1277. },
  1278. "type": "library",
  1279. "extra": {
  1280. "branch-alias": {
  1281. "dev-main": "3.x-dev"
  1282. },
  1283. "phpstan": {
  1284. "includes": [
  1285. "extension.neon"
  1286. ]
  1287. }
  1288. },
  1289. "autoload": {
  1290. "psr-4": {
  1291. "Composer\\Pcre\\": "src"
  1292. }
  1293. },
  1294. "notification-url": "https://packagist.org/downloads/",
  1295. "license": [
  1296. "MIT"
  1297. ],
  1298. "authors": [
  1299. {
  1300. "name": "Jordi Boggiano",
  1301. "email": "j.boggiano@seld.be",
  1302. "homepage": "http://seld.be"
  1303. }
  1304. ],
  1305. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  1306. "keywords": [
  1307. "PCRE",
  1308. "preg",
  1309. "regex",
  1310. "regular expression"
  1311. ],
  1312. "support": {
  1313. "issues": "https://github.com/composer/pcre/issues",
  1314. "source": "https://github.com/composer/pcre/tree/3.3.2"
  1315. },
  1316. "funding": [
  1317. {
  1318. "url": "https://packagist.com",
  1319. "type": "custom"
  1320. },
  1321. {
  1322. "url": "https://github.com/composer",
  1323. "type": "github"
  1324. },
  1325. {
  1326. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1327. "type": "tidelift"
  1328. }
  1329. ],
  1330. "time": "2024-11-12T16:29:46+00:00"
  1331. },
  1332. {
  1333. "name": "dasprid/enum",
  1334. "version": "1.0.5",
  1335. "source": {
  1336. "type": "git",
  1337. "url": "https://github.com/DASPRiD/Enum.git",
  1338. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016"
  1339. },
  1340. "dist": {
  1341. "type": "zip",
  1342. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6faf451159fb8ba4126b925ed2d78acfce0dc016",
  1343. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016",
  1344. "shasum": "",
  1345. "mirrors": [
  1346. {
  1347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1348. "preferred": true
  1349. }
  1350. ]
  1351. },
  1352. "require": {
  1353. "php": ">=7.1 <9.0"
  1354. },
  1355. "require-dev": {
  1356. "phpunit/phpunit": "^7 | ^8 | ^9",
  1357. "squizlabs/php_codesniffer": "*"
  1358. },
  1359. "type": "library",
  1360. "autoload": {
  1361. "psr-4": {
  1362. "DASPRiD\\Enum\\": "src/"
  1363. }
  1364. },
  1365. "notification-url": "https://packagist.org/downloads/",
  1366. "license": [
  1367. "BSD-2-Clause"
  1368. ],
  1369. "authors": [
  1370. {
  1371. "name": "Ben Scholzen 'DASPRiD'",
  1372. "email": "mail@dasprids.de",
  1373. "homepage": "https://dasprids.de/",
  1374. "role": "Developer"
  1375. }
  1376. ],
  1377. "description": "PHP 7.1 enum implementation",
  1378. "keywords": [
  1379. "enum",
  1380. "map"
  1381. ],
  1382. "support": {
  1383. "issues": "https://github.com/DASPRiD/Enum/issues",
  1384. "source": "https://github.com/DASPRiD/Enum/tree/1.0.5"
  1385. },
  1386. "time": "2023-08-25T16:18:39+00:00"
  1387. },
  1388. {
  1389. "name": "dflydev/dot-access-data",
  1390. "version": "v3.0.3",
  1391. "source": {
  1392. "type": "git",
  1393. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1394. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1395. },
  1396. "dist": {
  1397. "type": "zip",
  1398. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1399. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1400. "shasum": "",
  1401. "mirrors": [
  1402. {
  1403. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1404. "preferred": true
  1405. }
  1406. ]
  1407. },
  1408. "require": {
  1409. "php": "^7.1 || ^8.0"
  1410. },
  1411. "require-dev": {
  1412. "phpstan/phpstan": "^0.12.42",
  1413. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1414. "scrutinizer/ocular": "1.6.0",
  1415. "squizlabs/php_codesniffer": "^3.5",
  1416. "vimeo/psalm": "^4.0.0"
  1417. },
  1418. "type": "library",
  1419. "extra": {
  1420. "branch-alias": {
  1421. "dev-main": "3.x-dev"
  1422. }
  1423. },
  1424. "autoload": {
  1425. "psr-4": {
  1426. "Dflydev\\DotAccessData\\": "src/"
  1427. }
  1428. },
  1429. "notification-url": "https://packagist.org/downloads/",
  1430. "license": [
  1431. "MIT"
  1432. ],
  1433. "authors": [
  1434. {
  1435. "name": "Dragonfly Development Inc.",
  1436. "email": "info@dflydev.com",
  1437. "homepage": "http://dflydev.com"
  1438. },
  1439. {
  1440. "name": "Beau Simensen",
  1441. "email": "beau@dflydev.com",
  1442. "homepage": "http://beausimensen.com"
  1443. },
  1444. {
  1445. "name": "Carlos Frutos",
  1446. "email": "carlos@kiwing.it",
  1447. "homepage": "https://github.com/cfrutos"
  1448. },
  1449. {
  1450. "name": "Colin O'Dell",
  1451. "email": "colinodell@gmail.com",
  1452. "homepage": "https://www.colinodell.com"
  1453. }
  1454. ],
  1455. "description": "Given a deep data structure, access data by dot notation.",
  1456. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1457. "keywords": [
  1458. "access",
  1459. "data",
  1460. "dot",
  1461. "notation"
  1462. ],
  1463. "support": {
  1464. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1465. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1466. },
  1467. "time": "2024-07-08T12:26:09+00:00"
  1468. },
  1469. {
  1470. "name": "doctrine/inflector",
  1471. "version": "2.0.10",
  1472. "source": {
  1473. "type": "git",
  1474. "url": "https://github.com/doctrine/inflector.git",
  1475. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1476. },
  1477. "dist": {
  1478. "type": "zip",
  1479. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1480. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1481. "shasum": "",
  1482. "mirrors": [
  1483. {
  1484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1485. "preferred": true
  1486. }
  1487. ]
  1488. },
  1489. "require": {
  1490. "php": "^7.2 || ^8.0"
  1491. },
  1492. "require-dev": {
  1493. "doctrine/coding-standard": "^11.0",
  1494. "phpstan/phpstan": "^1.8",
  1495. "phpstan/phpstan-phpunit": "^1.1",
  1496. "phpstan/phpstan-strict-rules": "^1.3",
  1497. "phpunit/phpunit": "^8.5 || ^9.5",
  1498. "vimeo/psalm": "^4.25 || ^5.4"
  1499. },
  1500. "type": "library",
  1501. "autoload": {
  1502. "psr-4": {
  1503. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1504. }
  1505. },
  1506. "notification-url": "https://packagist.org/downloads/",
  1507. "license": [
  1508. "MIT"
  1509. ],
  1510. "authors": [
  1511. {
  1512. "name": "Guilherme Blanco",
  1513. "email": "guilhermeblanco@gmail.com"
  1514. },
  1515. {
  1516. "name": "Roman Borschel",
  1517. "email": "roman@code-factory.org"
  1518. },
  1519. {
  1520. "name": "Benjamin Eberlei",
  1521. "email": "kontakt@beberlei.de"
  1522. },
  1523. {
  1524. "name": "Jonathan Wage",
  1525. "email": "jonwage@gmail.com"
  1526. },
  1527. {
  1528. "name": "Johannes Schmitt",
  1529. "email": "schmittjoh@gmail.com"
  1530. }
  1531. ],
  1532. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1533. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1534. "keywords": [
  1535. "inflection",
  1536. "inflector",
  1537. "lowercase",
  1538. "manipulation",
  1539. "php",
  1540. "plural",
  1541. "singular",
  1542. "strings",
  1543. "uppercase",
  1544. "words"
  1545. ],
  1546. "support": {
  1547. "issues": "https://github.com/doctrine/inflector/issues",
  1548. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1549. },
  1550. "funding": [
  1551. {
  1552. "url": "https://www.doctrine-project.org/sponsorship.html",
  1553. "type": "custom"
  1554. },
  1555. {
  1556. "url": "https://www.patreon.com/phpdoctrine",
  1557. "type": "patreon"
  1558. },
  1559. {
  1560. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1561. "type": "tidelift"
  1562. }
  1563. ],
  1564. "time": "2024-02-18T20:23:39+00:00"
  1565. },
  1566. {
  1567. "name": "doctrine/lexer",
  1568. "version": "1.2.3",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/doctrine/lexer.git",
  1572. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1577. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1578. "shasum": "",
  1579. "mirrors": [
  1580. {
  1581. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1582. "preferred": true
  1583. }
  1584. ]
  1585. },
  1586. "require": {
  1587. "php": "^7.1 || ^8.0"
  1588. },
  1589. "require-dev": {
  1590. "doctrine/coding-standard": "^9.0",
  1591. "phpstan/phpstan": "^1.3",
  1592. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1593. "vimeo/psalm": "^4.11"
  1594. },
  1595. "type": "library",
  1596. "autoload": {
  1597. "psr-4": {
  1598. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1599. }
  1600. },
  1601. "notification-url": "https://packagist.org/downloads/",
  1602. "license": [
  1603. "MIT"
  1604. ],
  1605. "authors": [
  1606. {
  1607. "name": "Guilherme Blanco",
  1608. "email": "guilhermeblanco@gmail.com"
  1609. },
  1610. {
  1611. "name": "Roman Borschel",
  1612. "email": "roman@code-factory.org"
  1613. },
  1614. {
  1615. "name": "Johannes Schmitt",
  1616. "email": "schmittjoh@gmail.com"
  1617. }
  1618. ],
  1619. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1620. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1621. "keywords": [
  1622. "annotations",
  1623. "docblock",
  1624. "lexer",
  1625. "parser",
  1626. "php"
  1627. ],
  1628. "support": {
  1629. "issues": "https://github.com/doctrine/lexer/issues",
  1630. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1631. },
  1632. "funding": [
  1633. {
  1634. "url": "https://www.doctrine-project.org/sponsorship.html",
  1635. "type": "custom"
  1636. },
  1637. {
  1638. "url": "https://www.patreon.com/phpdoctrine",
  1639. "type": "patreon"
  1640. },
  1641. {
  1642. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1643. "type": "tidelift"
  1644. }
  1645. ],
  1646. "time": "2022-02-28T11:07:21+00:00"
  1647. },
  1648. {
  1649. "name": "dragonmantank/cron-expression",
  1650. "version": "v3.4.0",
  1651. "source": {
  1652. "type": "git",
  1653. "url": "https://github.com/dragonmantank/cron-expression.git",
  1654. "reference": "8c784d071debd117328803d86b2097615b457500"
  1655. },
  1656. "dist": {
  1657. "type": "zip",
  1658. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  1659. "reference": "8c784d071debd117328803d86b2097615b457500",
  1660. "shasum": "",
  1661. "mirrors": [
  1662. {
  1663. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1664. "preferred": true
  1665. }
  1666. ]
  1667. },
  1668. "require": {
  1669. "php": "^7.2|^8.0",
  1670. "webmozart/assert": "^1.0"
  1671. },
  1672. "replace": {
  1673. "mtdowling/cron-expression": "^1.0"
  1674. },
  1675. "require-dev": {
  1676. "phpstan/extension-installer": "^1.0",
  1677. "phpstan/phpstan": "^1.0",
  1678. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1679. },
  1680. "type": "library",
  1681. "extra": {
  1682. "branch-alias": {
  1683. "dev-master": "3.x-dev"
  1684. }
  1685. },
  1686. "autoload": {
  1687. "psr-4": {
  1688. "Cron\\": "src/Cron/"
  1689. }
  1690. },
  1691. "notification-url": "https://packagist.org/downloads/",
  1692. "license": [
  1693. "MIT"
  1694. ],
  1695. "authors": [
  1696. {
  1697. "name": "Chris Tankersley",
  1698. "email": "chris@ctankersley.com",
  1699. "homepage": "https://github.com/dragonmantank"
  1700. }
  1701. ],
  1702. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1703. "keywords": [
  1704. "cron",
  1705. "schedule"
  1706. ],
  1707. "support": {
  1708. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1709. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  1710. },
  1711. "funding": [
  1712. {
  1713. "url": "https://github.com/dragonmantank",
  1714. "type": "github"
  1715. }
  1716. ],
  1717. "time": "2024-10-09T13:47:03+00:00"
  1718. },
  1719. {
  1720. "name": "easywechat-composer/easywechat-composer",
  1721. "version": "1.4.1",
  1722. "source": {
  1723. "type": "git",
  1724. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1725. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1726. },
  1727. "dist": {
  1728. "type": "zip",
  1729. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1730. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1731. "shasum": "",
  1732. "mirrors": [
  1733. {
  1734. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1735. "preferred": true
  1736. }
  1737. ]
  1738. },
  1739. "require": {
  1740. "composer-plugin-api": "^1.0 || ^2.0",
  1741. "php": ">=7.0"
  1742. },
  1743. "require-dev": {
  1744. "composer/composer": "^1.0 || ^2.0",
  1745. "phpunit/phpunit": "^6.5 || ^7.0"
  1746. },
  1747. "type": "composer-plugin",
  1748. "extra": {
  1749. "class": "EasyWeChatComposer\\Plugin"
  1750. },
  1751. "autoload": {
  1752. "psr-4": {
  1753. "EasyWeChatComposer\\": "src/"
  1754. }
  1755. },
  1756. "notification-url": "https://packagist.org/downloads/",
  1757. "license": [
  1758. "MIT"
  1759. ],
  1760. "authors": [
  1761. {
  1762. "name": "张铭阳",
  1763. "email": "mingyoungcheung@gmail.com"
  1764. }
  1765. ],
  1766. "description": "The composer plugin for EasyWeChat",
  1767. "support": {
  1768. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1769. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1770. },
  1771. "time": "2021-07-05T04:03:22+00:00"
  1772. },
  1773. {
  1774. "name": "egulias/email-validator",
  1775. "version": "2.1.25",
  1776. "source": {
  1777. "type": "git",
  1778. "url": "https://github.com/egulias/EmailValidator.git",
  1779. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1780. },
  1781. "dist": {
  1782. "type": "zip",
  1783. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1784. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1785. "shasum": "",
  1786. "mirrors": [
  1787. {
  1788. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1789. "preferred": true
  1790. }
  1791. ]
  1792. },
  1793. "require": {
  1794. "doctrine/lexer": "^1.0.1",
  1795. "php": ">=5.5",
  1796. "symfony/polyfill-intl-idn": "^1.10"
  1797. },
  1798. "require-dev": {
  1799. "dominicsayers/isemail": "^3.0.7",
  1800. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1801. "satooshi/php-coveralls": "^1.0.1"
  1802. },
  1803. "suggest": {
  1804. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1805. },
  1806. "type": "library",
  1807. "extra": {
  1808. "branch-alias": {
  1809. "dev-master": "2.1.x-dev"
  1810. }
  1811. },
  1812. "autoload": {
  1813. "psr-4": {
  1814. "Egulias\\EmailValidator\\": "src"
  1815. }
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "MIT"
  1820. ],
  1821. "authors": [
  1822. {
  1823. "name": "Eduardo Gulias Davis"
  1824. }
  1825. ],
  1826. "description": "A library for validating emails against several RFCs",
  1827. "homepage": "https://github.com/egulias/EmailValidator",
  1828. "keywords": [
  1829. "email",
  1830. "emailvalidation",
  1831. "emailvalidator",
  1832. "validation",
  1833. "validator"
  1834. ],
  1835. "support": {
  1836. "issues": "https://github.com/egulias/EmailValidator/issues",
  1837. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1838. },
  1839. "funding": [
  1840. {
  1841. "url": "https://github.com/egulias",
  1842. "type": "github"
  1843. }
  1844. ],
  1845. "time": "2020-12-29T14:50:06+00:00"
  1846. },
  1847. {
  1848. "name": "endroid/qr-code",
  1849. "version": "4.6.1",
  1850. "source": {
  1851. "type": "git",
  1852. "url": "https://github.com/endroid/qr-code.git",
  1853. "reference": "a75c913b0e4d6ad275e49a2c1de1cacffc6c2184"
  1854. },
  1855. "dist": {
  1856. "type": "zip",
  1857. "url": "https://api.github.com/repos/endroid/qr-code/zipball/a75c913b0e4d6ad275e49a2c1de1cacffc6c2184",
  1858. "reference": "a75c913b0e4d6ad275e49a2c1de1cacffc6c2184",
  1859. "shasum": "",
  1860. "mirrors": [
  1861. {
  1862. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1863. "preferred": true
  1864. }
  1865. ]
  1866. },
  1867. "require": {
  1868. "bacon/bacon-qr-code": "^2.0.5",
  1869. "php": "^7.4||^8.0"
  1870. },
  1871. "require-dev": {
  1872. "endroid/quality": "dev-master",
  1873. "ext-gd": "*",
  1874. "khanamiryan/qrcode-detector-decoder": "^1.0.4",
  1875. "setasign/fpdf": "^1.8.2"
  1876. },
  1877. "suggest": {
  1878. "ext-gd": "Enables you to write PNG images",
  1879. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  1880. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  1881. "setasign/fpdf": "Enables you to use the PDF writer"
  1882. },
  1883. "type": "library",
  1884. "extra": {
  1885. "branch-alias": {
  1886. "dev-master": "4.x-dev"
  1887. }
  1888. },
  1889. "autoload": {
  1890. "psr-4": {
  1891. "Endroid\\QrCode\\": "src/"
  1892. }
  1893. },
  1894. "notification-url": "https://packagist.org/downloads/",
  1895. "license": [
  1896. "MIT"
  1897. ],
  1898. "authors": [
  1899. {
  1900. "name": "Jeroen van den Enden",
  1901. "email": "info@endroid.nl"
  1902. }
  1903. ],
  1904. "description": "Endroid QR Code",
  1905. "homepage": "https://github.com/endroid/qr-code",
  1906. "keywords": [
  1907. "code",
  1908. "endroid",
  1909. "php",
  1910. "qr",
  1911. "qrcode"
  1912. ],
  1913. "support": {
  1914. "issues": "https://github.com/endroid/qr-code/issues",
  1915. "source": "https://github.com/endroid/qr-code/tree/4.6.1"
  1916. },
  1917. "funding": [
  1918. {
  1919. "url": "https://github.com/endroid",
  1920. "type": "github"
  1921. }
  1922. ],
  1923. "time": "2022-10-26T08:48:17+00:00"
  1924. },
  1925. {
  1926. "name": "ezyang/htmlpurifier",
  1927. "version": "v4.18.0",
  1928. "source": {
  1929. "type": "git",
  1930. "url": "https://github.com/ezyang/htmlpurifier.git",
  1931. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  1932. },
  1933. "dist": {
  1934. "type": "zip",
  1935. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  1936. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  1937. "shasum": "",
  1938. "mirrors": [
  1939. {
  1940. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1941. "preferred": true
  1942. }
  1943. ]
  1944. },
  1945. "require": {
  1946. "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 || ~8.4.0"
  1947. },
  1948. "require-dev": {
  1949. "cerdic/css-tidy": "^1.7 || ^2.0",
  1950. "simpletest/simpletest": "dev-master"
  1951. },
  1952. "suggest": {
  1953. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1954. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1955. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1956. "ext-tidy": "Used for pretty-printing HTML"
  1957. },
  1958. "type": "library",
  1959. "autoload": {
  1960. "files": [
  1961. "library/HTMLPurifier.composer.php"
  1962. ],
  1963. "psr-0": {
  1964. "HTMLPurifier": "library/"
  1965. },
  1966. "exclude-from-classmap": [
  1967. "/library/HTMLPurifier/Language/"
  1968. ]
  1969. },
  1970. "notification-url": "https://packagist.org/downloads/",
  1971. "license": [
  1972. "LGPL-2.1-or-later"
  1973. ],
  1974. "authors": [
  1975. {
  1976. "name": "Edward Z. Yang",
  1977. "email": "admin@htmlpurifier.org",
  1978. "homepage": "http://ezyang.com"
  1979. }
  1980. ],
  1981. "description": "Standards compliant HTML filter written in PHP",
  1982. "homepage": "http://htmlpurifier.org/",
  1983. "keywords": [
  1984. "html"
  1985. ],
  1986. "support": {
  1987. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1988. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  1989. },
  1990. "time": "2024-11-01T03:51:45+00:00"
  1991. },
  1992. {
  1993. "name": "fideloper/proxy",
  1994. "version": "4.4.2",
  1995. "source": {
  1996. "type": "git",
  1997. "url": "https://github.com/fideloper/TrustedProxy.git",
  1998. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  1999. },
  2000. "dist": {
  2001. "type": "zip",
  2002. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  2003. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  2004. "shasum": "",
  2005. "mirrors": [
  2006. {
  2007. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2008. "preferred": true
  2009. }
  2010. ]
  2011. },
  2012. "require": {
  2013. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  2014. "php": ">=5.4.0"
  2015. },
  2016. "require-dev": {
  2017. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  2018. "mockery/mockery": "^1.0",
  2019. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2020. },
  2021. "type": "library",
  2022. "extra": {
  2023. "laravel": {
  2024. "providers": [
  2025. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  2026. ]
  2027. }
  2028. },
  2029. "autoload": {
  2030. "psr-4": {
  2031. "Fideloper\\Proxy\\": "src/"
  2032. }
  2033. },
  2034. "notification-url": "https://packagist.org/downloads/",
  2035. "license": [
  2036. "MIT"
  2037. ],
  2038. "authors": [
  2039. {
  2040. "name": "Chris Fidao",
  2041. "email": "fideloper@gmail.com"
  2042. }
  2043. ],
  2044. "description": "Set trusted proxies for Laravel",
  2045. "keywords": [
  2046. "load balancing",
  2047. "proxy",
  2048. "trusted proxy"
  2049. ],
  2050. "support": {
  2051. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  2052. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  2053. },
  2054. "time": "2022-02-09T13:33:34+00:00"
  2055. },
  2056. {
  2057. "name": "firebase/php-jwt",
  2058. "version": "v6.10.0",
  2059. "source": {
  2060. "type": "git",
  2061. "url": "https://github.com/firebase/php-jwt.git",
  2062. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff"
  2063. },
  2064. "dist": {
  2065. "type": "zip",
  2066. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff",
  2067. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff",
  2068. "shasum": "",
  2069. "mirrors": [
  2070. {
  2071. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2072. "preferred": true
  2073. }
  2074. ]
  2075. },
  2076. "require": {
  2077. "php": "^7.4||^8.0"
  2078. },
  2079. "require-dev": {
  2080. "guzzlehttp/guzzle": "^6.5||^7.4",
  2081. "phpspec/prophecy-phpunit": "^2.0",
  2082. "phpunit/phpunit": "^9.5",
  2083. "psr/cache": "^1.0||^2.0",
  2084. "psr/http-client": "^1.0",
  2085. "psr/http-factory": "^1.0"
  2086. },
  2087. "suggest": {
  2088. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2089. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2090. },
  2091. "type": "library",
  2092. "autoload": {
  2093. "psr-4": {
  2094. "Firebase\\JWT\\": "src"
  2095. }
  2096. },
  2097. "notification-url": "https://packagist.org/downloads/",
  2098. "license": [
  2099. "BSD-3-Clause"
  2100. ],
  2101. "authors": [
  2102. {
  2103. "name": "Neuman Vong",
  2104. "email": "neuman+pear@twilio.com",
  2105. "role": "Developer"
  2106. },
  2107. {
  2108. "name": "Anant Narayanan",
  2109. "email": "anant@php.net",
  2110. "role": "Developer"
  2111. }
  2112. ],
  2113. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2114. "homepage": "https://github.com/firebase/php-jwt",
  2115. "keywords": [
  2116. "jwt",
  2117. "php"
  2118. ],
  2119. "support": {
  2120. "issues": "https://github.com/firebase/php-jwt/issues",
  2121. "source": "https://github.com/firebase/php-jwt/tree/v6.10.0"
  2122. },
  2123. "time": "2023-12-01T16:26:39+00:00"
  2124. },
  2125. {
  2126. "name": "fruitcake/laravel-cors",
  2127. "version": "v2.2.0",
  2128. "source": {
  2129. "type": "git",
  2130. "url": "https://github.com/fruitcake/laravel-cors.git",
  2131. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  2132. },
  2133. "dist": {
  2134. "type": "zip",
  2135. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  2136. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  2137. "shasum": "",
  2138. "mirrors": [
  2139. {
  2140. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2141. "preferred": true
  2142. }
  2143. ]
  2144. },
  2145. "require": {
  2146. "asm89/stack-cors": "^2.0.1",
  2147. "illuminate/contracts": "^6|^7|^8|^9",
  2148. "illuminate/support": "^6|^7|^8|^9",
  2149. "php": ">=7.2"
  2150. },
  2151. "require-dev": {
  2152. "laravel/framework": "^6|^7.24|^8",
  2153. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  2154. "phpunit/phpunit": "^6|^7|^8|^9",
  2155. "squizlabs/php_codesniffer": "^3.5"
  2156. },
  2157. "type": "library",
  2158. "extra": {
  2159. "branch-alias": {
  2160. "dev-master": "2.1-dev"
  2161. },
  2162. "laravel": {
  2163. "providers": [
  2164. "Fruitcake\\Cors\\CorsServiceProvider"
  2165. ]
  2166. }
  2167. },
  2168. "autoload": {
  2169. "psr-4": {
  2170. "Fruitcake\\Cors\\": "src/"
  2171. }
  2172. },
  2173. "notification-url": "https://packagist.org/downloads/",
  2174. "license": [
  2175. "MIT"
  2176. ],
  2177. "authors": [
  2178. {
  2179. "name": "Fruitcake",
  2180. "homepage": "https://fruitcake.nl"
  2181. },
  2182. {
  2183. "name": "Barry vd. Heuvel",
  2184. "email": "barryvdh@gmail.com"
  2185. }
  2186. ],
  2187. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  2188. "keywords": [
  2189. "api",
  2190. "cors",
  2191. "crossdomain",
  2192. "laravel"
  2193. ],
  2194. "support": {
  2195. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  2196. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  2197. },
  2198. "funding": [
  2199. {
  2200. "url": "https://fruitcake.nl",
  2201. "type": "custom"
  2202. },
  2203. {
  2204. "url": "https://github.com/barryvdh",
  2205. "type": "github"
  2206. }
  2207. ],
  2208. "abandoned": true,
  2209. "time": "2022-02-23T14:25:13+00:00"
  2210. },
  2211. {
  2212. "name": "graham-campbell/manager",
  2213. "version": "v4.7.0",
  2214. "source": {
  2215. "type": "git",
  2216. "url": "https://github.com/GrahamCampbell/Laravel-Manager.git",
  2217. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308"
  2218. },
  2219. "dist": {
  2220. "type": "zip",
  2221. "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Manager/zipball/b4cafa6491b9c92ecf7ce17521580050a27b8308",
  2222. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308",
  2223. "shasum": "",
  2224. "mirrors": [
  2225. {
  2226. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2227. "preferred": true
  2228. }
  2229. ]
  2230. },
  2231. "require": {
  2232. "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  2233. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  2234. "php": "^7.1.3 || ^8.0"
  2235. },
  2236. "require-dev": {
  2237. "graham-campbell/analyzer": "^2.4 || ^3.0",
  2238. "graham-campbell/testbench-core": "^3.4",
  2239. "mockery/mockery": "^1.3.1",
  2240. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.7"
  2241. },
  2242. "type": "library",
  2243. "autoload": {
  2244. "psr-4": {
  2245. "GrahamCampbell\\Manager\\": "src/"
  2246. }
  2247. },
  2248. "notification-url": "https://packagist.org/downloads/",
  2249. "license": [
  2250. "MIT"
  2251. ],
  2252. "authors": [
  2253. {
  2254. "name": "Graham Campbell",
  2255. "email": "hello@gjcampbell.co.uk",
  2256. "homepage": "https://github.com/GrahamCampbell"
  2257. }
  2258. ],
  2259. "description": "Manager Provides Some Manager Functionality For Laravel",
  2260. "keywords": [
  2261. "Graham Campbell",
  2262. "GrahamCampbell",
  2263. "Laravel Manager",
  2264. "Laravel-Manager",
  2265. "connector",
  2266. "framework",
  2267. "interface",
  2268. "laravel",
  2269. "manager"
  2270. ],
  2271. "support": {
  2272. "issues": "https://github.com/GrahamCampbell/Laravel-Manager/issues",
  2273. "source": "https://github.com/GrahamCampbell/Laravel-Manager/tree/v4.7.0"
  2274. },
  2275. "funding": [
  2276. {
  2277. "url": "https://github.com/GrahamCampbell",
  2278. "type": "github"
  2279. },
  2280. {
  2281. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/manager",
  2282. "type": "tidelift"
  2283. }
  2284. ],
  2285. "time": "2022-01-24T01:59:19+00:00"
  2286. },
  2287. {
  2288. "name": "graham-campbell/result-type",
  2289. "version": "1.1.x-dev",
  2290. "source": {
  2291. "type": "git",
  2292. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2293. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66"
  2294. },
  2295. "dist": {
  2296. "type": "zip",
  2297. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  2298. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  2299. "shasum": "",
  2300. "mirrors": [
  2301. {
  2302. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2303. "preferred": true
  2304. }
  2305. ]
  2306. },
  2307. "require": {
  2308. "php": "^7.2.5 || ^8.0",
  2309. "phpoption/phpoption": "^1.9.3"
  2310. },
  2311. "require-dev": {
  2312. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  2313. },
  2314. "default-branch": true,
  2315. "type": "library",
  2316. "autoload": {
  2317. "psr-4": {
  2318. "GrahamCampbell\\ResultType\\": "src/"
  2319. }
  2320. },
  2321. "notification-url": "https://packagist.org/downloads/",
  2322. "license": [
  2323. "MIT"
  2324. ],
  2325. "authors": [
  2326. {
  2327. "name": "Graham Campbell",
  2328. "email": "hello@gjcampbell.co.uk",
  2329. "homepage": "https://github.com/GrahamCampbell"
  2330. }
  2331. ],
  2332. "description": "An Implementation Of The Result Type",
  2333. "keywords": [
  2334. "Graham Campbell",
  2335. "GrahamCampbell",
  2336. "Result Type",
  2337. "Result-Type",
  2338. "result"
  2339. ],
  2340. "support": {
  2341. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2342. "source": "https://github.com/GrahamCampbell/Result-Type/tree/1.1"
  2343. },
  2344. "funding": [
  2345. {
  2346. "url": "https://github.com/GrahamCampbell",
  2347. "type": "github"
  2348. },
  2349. {
  2350. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2351. "type": "tidelift"
  2352. }
  2353. ],
  2354. "time": "2025-02-09T22:43:44+00:00"
  2355. },
  2356. {
  2357. "name": "guzzlehttp/guzzle",
  2358. "version": "7.9.2",
  2359. "source": {
  2360. "type": "git",
  2361. "url": "https://github.com/guzzle/guzzle.git",
  2362. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  2363. },
  2364. "dist": {
  2365. "type": "zip",
  2366. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  2367. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  2368. "shasum": "",
  2369. "mirrors": [
  2370. {
  2371. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2372. "preferred": true
  2373. }
  2374. ]
  2375. },
  2376. "require": {
  2377. "ext-json": "*",
  2378. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2379. "guzzlehttp/psr7": "^2.7.0",
  2380. "php": "^7.2.5 || ^8.0",
  2381. "psr/http-client": "^1.0",
  2382. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2383. },
  2384. "provide": {
  2385. "psr/http-client-implementation": "1.0"
  2386. },
  2387. "require-dev": {
  2388. "bamarni/composer-bin-plugin": "^1.8.2",
  2389. "ext-curl": "*",
  2390. "guzzle/client-integration-tests": "3.0.2",
  2391. "php-http/message-factory": "^1.1",
  2392. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2393. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2394. },
  2395. "suggest": {
  2396. "ext-curl": "Required for CURL handler support",
  2397. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2398. "psr/log": "Required for using the Log middleware"
  2399. },
  2400. "type": "library",
  2401. "extra": {
  2402. "bamarni-bin": {
  2403. "bin-links": true,
  2404. "forward-command": false
  2405. }
  2406. },
  2407. "autoload": {
  2408. "files": [
  2409. "src/functions_include.php"
  2410. ],
  2411. "psr-4": {
  2412. "GuzzleHttp\\": "src/"
  2413. }
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "MIT"
  2418. ],
  2419. "authors": [
  2420. {
  2421. "name": "Graham Campbell",
  2422. "email": "hello@gjcampbell.co.uk",
  2423. "homepage": "https://github.com/GrahamCampbell"
  2424. },
  2425. {
  2426. "name": "Michael Dowling",
  2427. "email": "mtdowling@gmail.com",
  2428. "homepage": "https://github.com/mtdowling"
  2429. },
  2430. {
  2431. "name": "Jeremy Lindblom",
  2432. "email": "jeremeamia@gmail.com",
  2433. "homepage": "https://github.com/jeremeamia"
  2434. },
  2435. {
  2436. "name": "George Mponos",
  2437. "email": "gmponos@gmail.com",
  2438. "homepage": "https://github.com/gmponos"
  2439. },
  2440. {
  2441. "name": "Tobias Nyholm",
  2442. "email": "tobias.nyholm@gmail.com",
  2443. "homepage": "https://github.com/Nyholm"
  2444. },
  2445. {
  2446. "name": "Márk Sági-Kazár",
  2447. "email": "mark.sagikazar@gmail.com",
  2448. "homepage": "https://github.com/sagikazarmark"
  2449. },
  2450. {
  2451. "name": "Tobias Schultze",
  2452. "email": "webmaster@tubo-world.de",
  2453. "homepage": "https://github.com/Tobion"
  2454. }
  2455. ],
  2456. "description": "Guzzle is a PHP HTTP client library",
  2457. "keywords": [
  2458. "client",
  2459. "curl",
  2460. "framework",
  2461. "http",
  2462. "http client",
  2463. "psr-18",
  2464. "psr-7",
  2465. "rest",
  2466. "web service"
  2467. ],
  2468. "support": {
  2469. "issues": "https://github.com/guzzle/guzzle/issues",
  2470. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  2471. },
  2472. "funding": [
  2473. {
  2474. "url": "https://github.com/GrahamCampbell",
  2475. "type": "github"
  2476. },
  2477. {
  2478. "url": "https://github.com/Nyholm",
  2479. "type": "github"
  2480. },
  2481. {
  2482. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2483. "type": "tidelift"
  2484. }
  2485. ],
  2486. "time": "2024-07-24T11:22:20+00:00"
  2487. },
  2488. {
  2489. "name": "guzzlehttp/promises",
  2490. "version": "2.3.0",
  2491. "source": {
  2492. "type": "git",
  2493. "url": "https://github.com/guzzle/promises.git",
  2494. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  2495. },
  2496. "dist": {
  2497. "type": "zip",
  2498. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  2499. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  2500. "shasum": "",
  2501. "mirrors": [
  2502. {
  2503. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2504. "preferred": true
  2505. }
  2506. ]
  2507. },
  2508. "require": {
  2509. "php": "^7.2.5 || ^8.0"
  2510. },
  2511. "require-dev": {
  2512. "bamarni/composer-bin-plugin": "^1.8.2",
  2513. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  2514. },
  2515. "type": "library",
  2516. "extra": {
  2517. "bamarni-bin": {
  2518. "bin-links": true,
  2519. "forward-command": false
  2520. }
  2521. },
  2522. "autoload": {
  2523. "psr-4": {
  2524. "GuzzleHttp\\Promise\\": "src/"
  2525. }
  2526. },
  2527. "notification-url": "https://packagist.org/downloads/",
  2528. "license": [
  2529. "MIT"
  2530. ],
  2531. "authors": [
  2532. {
  2533. "name": "Graham Campbell",
  2534. "email": "hello@gjcampbell.co.uk",
  2535. "homepage": "https://github.com/GrahamCampbell"
  2536. },
  2537. {
  2538. "name": "Michael Dowling",
  2539. "email": "mtdowling@gmail.com",
  2540. "homepage": "https://github.com/mtdowling"
  2541. },
  2542. {
  2543. "name": "Tobias Nyholm",
  2544. "email": "tobias.nyholm@gmail.com",
  2545. "homepage": "https://github.com/Nyholm"
  2546. },
  2547. {
  2548. "name": "Tobias Schultze",
  2549. "email": "webmaster@tubo-world.de",
  2550. "homepage": "https://github.com/Tobion"
  2551. }
  2552. ],
  2553. "description": "Guzzle promises library",
  2554. "keywords": [
  2555. "promise"
  2556. ],
  2557. "support": {
  2558. "issues": "https://github.com/guzzle/promises/issues",
  2559. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  2560. },
  2561. "funding": [
  2562. {
  2563. "url": "https://github.com/GrahamCampbell",
  2564. "type": "github"
  2565. },
  2566. {
  2567. "url": "https://github.com/Nyholm",
  2568. "type": "github"
  2569. },
  2570. {
  2571. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2572. "type": "tidelift"
  2573. }
  2574. ],
  2575. "time": "2025-08-22T14:34:08+00:00"
  2576. },
  2577. {
  2578. "name": "guzzlehttp/psr7",
  2579. "version": "2.8.0",
  2580. "source": {
  2581. "type": "git",
  2582. "url": "https://github.com/guzzle/psr7.git",
  2583. "reference": "21dc724a0583619cd1652f673303492272778051"
  2584. },
  2585. "dist": {
  2586. "type": "zip",
  2587. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  2588. "reference": "21dc724a0583619cd1652f673303492272778051",
  2589. "shasum": "",
  2590. "mirrors": [
  2591. {
  2592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2593. "preferred": true
  2594. }
  2595. ]
  2596. },
  2597. "require": {
  2598. "php": "^7.2.5 || ^8.0",
  2599. "psr/http-factory": "^1.0",
  2600. "psr/http-message": "^1.1 || ^2.0",
  2601. "ralouphie/getallheaders": "^3.0"
  2602. },
  2603. "provide": {
  2604. "psr/http-factory-implementation": "1.0",
  2605. "psr/http-message-implementation": "1.0"
  2606. },
  2607. "require-dev": {
  2608. "bamarni/composer-bin-plugin": "^1.8.2",
  2609. "http-interop/http-factory-tests": "0.9.0",
  2610. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  2611. },
  2612. "suggest": {
  2613. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2614. },
  2615. "type": "library",
  2616. "extra": {
  2617. "bamarni-bin": {
  2618. "bin-links": true,
  2619. "forward-command": false
  2620. }
  2621. },
  2622. "autoload": {
  2623. "psr-4": {
  2624. "GuzzleHttp\\Psr7\\": "src/"
  2625. }
  2626. },
  2627. "notification-url": "https://packagist.org/downloads/",
  2628. "license": [
  2629. "MIT"
  2630. ],
  2631. "authors": [
  2632. {
  2633. "name": "Graham Campbell",
  2634. "email": "hello@gjcampbell.co.uk",
  2635. "homepage": "https://github.com/GrahamCampbell"
  2636. },
  2637. {
  2638. "name": "Michael Dowling",
  2639. "email": "mtdowling@gmail.com",
  2640. "homepage": "https://github.com/mtdowling"
  2641. },
  2642. {
  2643. "name": "George Mponos",
  2644. "email": "gmponos@gmail.com",
  2645. "homepage": "https://github.com/gmponos"
  2646. },
  2647. {
  2648. "name": "Tobias Nyholm",
  2649. "email": "tobias.nyholm@gmail.com",
  2650. "homepage": "https://github.com/Nyholm"
  2651. },
  2652. {
  2653. "name": "Márk Sági-Kazár",
  2654. "email": "mark.sagikazar@gmail.com",
  2655. "homepage": "https://github.com/sagikazarmark"
  2656. },
  2657. {
  2658. "name": "Tobias Schultze",
  2659. "email": "webmaster@tubo-world.de",
  2660. "homepage": "https://github.com/Tobion"
  2661. },
  2662. {
  2663. "name": "Márk Sági-Kazár",
  2664. "email": "mark.sagikazar@gmail.com",
  2665. "homepage": "https://sagikazarmark.hu"
  2666. }
  2667. ],
  2668. "description": "PSR-7 message implementation that also provides common utility methods",
  2669. "keywords": [
  2670. "http",
  2671. "message",
  2672. "psr-7",
  2673. "request",
  2674. "response",
  2675. "stream",
  2676. "uri",
  2677. "url"
  2678. ],
  2679. "support": {
  2680. "issues": "https://github.com/guzzle/psr7/issues",
  2681. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  2682. },
  2683. "funding": [
  2684. {
  2685. "url": "https://github.com/GrahamCampbell",
  2686. "type": "github"
  2687. },
  2688. {
  2689. "url": "https://github.com/Nyholm",
  2690. "type": "github"
  2691. },
  2692. {
  2693. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2694. "type": "tidelift"
  2695. }
  2696. ],
  2697. "time": "2025-08-23T21:21:41+00:00"
  2698. },
  2699. {
  2700. "name": "guzzlehttp/uri-template",
  2701. "version": "v1.0.5",
  2702. "source": {
  2703. "type": "git",
  2704. "url": "https://github.com/guzzle/uri-template.git",
  2705. "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1"
  2706. },
  2707. "dist": {
  2708. "type": "zip",
  2709. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/4f4bbd4e7172148801e76e3decc1e559bdee34e1",
  2710. "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1",
  2711. "shasum": "",
  2712. "mirrors": [
  2713. {
  2714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2715. "preferred": true
  2716. }
  2717. ]
  2718. },
  2719. "require": {
  2720. "php": "^7.2.5 || ^8.0",
  2721. "symfony/polyfill-php80": "^1.24"
  2722. },
  2723. "require-dev": {
  2724. "bamarni/composer-bin-plugin": "^1.8.2",
  2725. "phpunit/phpunit": "^8.5.44 || ^9.6.25",
  2726. "uri-template/tests": "1.0.0"
  2727. },
  2728. "type": "library",
  2729. "extra": {
  2730. "bamarni-bin": {
  2731. "bin-links": true,
  2732. "forward-command": false
  2733. }
  2734. },
  2735. "autoload": {
  2736. "psr-4": {
  2737. "GuzzleHttp\\UriTemplate\\": "src"
  2738. }
  2739. },
  2740. "notification-url": "https://packagist.org/downloads/",
  2741. "license": [
  2742. "MIT"
  2743. ],
  2744. "authors": [
  2745. {
  2746. "name": "Graham Campbell",
  2747. "email": "hello@gjcampbell.co.uk",
  2748. "homepage": "https://github.com/GrahamCampbell"
  2749. },
  2750. {
  2751. "name": "Michael Dowling",
  2752. "email": "mtdowling@gmail.com",
  2753. "homepage": "https://github.com/mtdowling"
  2754. },
  2755. {
  2756. "name": "George Mponos",
  2757. "email": "gmponos@gmail.com",
  2758. "homepage": "https://github.com/gmponos"
  2759. },
  2760. {
  2761. "name": "Tobias Nyholm",
  2762. "email": "tobias.nyholm@gmail.com",
  2763. "homepage": "https://github.com/Nyholm"
  2764. }
  2765. ],
  2766. "description": "A polyfill class for uri_template of PHP",
  2767. "keywords": [
  2768. "guzzlehttp",
  2769. "uri-template"
  2770. ],
  2771. "support": {
  2772. "issues": "https://github.com/guzzle/uri-template/issues",
  2773. "source": "https://github.com/guzzle/uri-template/tree/v1.0.5"
  2774. },
  2775. "funding": [
  2776. {
  2777. "url": "https://github.com/GrahamCampbell",
  2778. "type": "github"
  2779. },
  2780. {
  2781. "url": "https://github.com/Nyholm",
  2782. "type": "github"
  2783. },
  2784. {
  2785. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2786. "type": "tidelift"
  2787. }
  2788. ],
  2789. "time": "2025-08-22T14:27:06+00:00"
  2790. },
  2791. {
  2792. "name": "hashids/hashids",
  2793. "version": "4.1.0",
  2794. "source": {
  2795. "type": "git",
  2796. "url": "https://github.com/vinkla/hashids.git",
  2797. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  2798. },
  2799. "dist": {
  2800. "type": "zip",
  2801. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  2802. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  2803. "shasum": "",
  2804. "mirrors": [
  2805. {
  2806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2807. "preferred": true
  2808. }
  2809. ]
  2810. },
  2811. "require": {
  2812. "ext-mbstring": "*",
  2813. "php": "^7.2 || ^8.0"
  2814. },
  2815. "require-dev": {
  2816. "phpunit/phpunit": "^8.0 || ^9.4",
  2817. "squizlabs/php_codesniffer": "^3.5"
  2818. },
  2819. "suggest": {
  2820. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  2821. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  2822. },
  2823. "type": "library",
  2824. "extra": {
  2825. "branch-alias": {
  2826. "dev-master": "4.1-dev"
  2827. }
  2828. },
  2829. "autoload": {
  2830. "psr-4": {
  2831. "Hashids\\": "src/"
  2832. }
  2833. },
  2834. "notification-url": "https://packagist.org/downloads/",
  2835. "license": [
  2836. "MIT"
  2837. ],
  2838. "authors": [
  2839. {
  2840. "name": "Ivan Akimov",
  2841. "email": "ivan@barreleye.com"
  2842. },
  2843. {
  2844. "name": "Vincent Klaiber",
  2845. "email": "hello@doubledip.se"
  2846. }
  2847. ],
  2848. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  2849. "homepage": "https://hashids.org/php",
  2850. "keywords": [
  2851. "bitly",
  2852. "decode",
  2853. "encode",
  2854. "hash",
  2855. "hashid",
  2856. "hashids",
  2857. "ids",
  2858. "obfuscate",
  2859. "youtube"
  2860. ],
  2861. "support": {
  2862. "issues": "https://github.com/vinkla/hashids/issues",
  2863. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  2864. },
  2865. "time": "2020-11-26T19:24:33+00:00"
  2866. },
  2867. {
  2868. "name": "intervention/image",
  2869. "version": "2.7.2",
  2870. "source": {
  2871. "type": "git",
  2872. "url": "https://github.com/Intervention/image.git",
  2873. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  2874. },
  2875. "dist": {
  2876. "type": "zip",
  2877. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2878. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2879. "shasum": "",
  2880. "mirrors": [
  2881. {
  2882. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2883. "preferred": true
  2884. }
  2885. ]
  2886. },
  2887. "require": {
  2888. "ext-fileinfo": "*",
  2889. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2890. "php": ">=5.4.0"
  2891. },
  2892. "require-dev": {
  2893. "mockery/mockery": "~0.9.2",
  2894. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2895. },
  2896. "suggest": {
  2897. "ext-gd": "to use GD library based image processing.",
  2898. "ext-imagick": "to use Imagick based image processing.",
  2899. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2900. },
  2901. "type": "library",
  2902. "extra": {
  2903. "laravel": {
  2904. "aliases": {
  2905. "Image": "Intervention\\Image\\Facades\\Image"
  2906. },
  2907. "providers": [
  2908. "Intervention\\Image\\ImageServiceProvider"
  2909. ]
  2910. },
  2911. "branch-alias": {
  2912. "dev-master": "2.4-dev"
  2913. }
  2914. },
  2915. "autoload": {
  2916. "psr-4": {
  2917. "Intervention\\Image\\": "src/Intervention/Image"
  2918. }
  2919. },
  2920. "notification-url": "https://packagist.org/downloads/",
  2921. "license": [
  2922. "MIT"
  2923. ],
  2924. "authors": [
  2925. {
  2926. "name": "Oliver Vogel",
  2927. "email": "oliver@intervention.io",
  2928. "homepage": "https://intervention.io/"
  2929. }
  2930. ],
  2931. "description": "Image handling and manipulation library with support for Laravel integration",
  2932. "homepage": "http://image.intervention.io/",
  2933. "keywords": [
  2934. "gd",
  2935. "image",
  2936. "imagick",
  2937. "laravel",
  2938. "thumbnail",
  2939. "watermark"
  2940. ],
  2941. "support": {
  2942. "issues": "https://github.com/Intervention/image/issues",
  2943. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2944. },
  2945. "funding": [
  2946. {
  2947. "url": "https://paypal.me/interventionio",
  2948. "type": "custom"
  2949. },
  2950. {
  2951. "url": "https://github.com/Intervention",
  2952. "type": "github"
  2953. }
  2954. ],
  2955. "time": "2022-05-21T17:30:32+00:00"
  2956. },
  2957. {
  2958. "name": "ixudra/curl",
  2959. "version": "6.22.1",
  2960. "source": {
  2961. "type": "git",
  2962. "url": "https://github.com/ixudra/curl.git",
  2963. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180"
  2964. },
  2965. "dist": {
  2966. "type": "zip",
  2967. "url": "https://api.github.com/repos/ixudra/curl/zipball/0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  2968. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  2969. "shasum": "",
  2970. "mirrors": [
  2971. {
  2972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2973. "preferred": true
  2974. }
  2975. ]
  2976. },
  2977. "require": {
  2978. "ext-curl": "*",
  2979. "illuminate/support": ">=4.0",
  2980. "php": ">=5.4.0"
  2981. },
  2982. "type": "library",
  2983. "extra": {
  2984. "laravel": {
  2985. "providers": [
  2986. "Ixudra\\Curl\\CurlServiceProvider"
  2987. ],
  2988. "aliases": {
  2989. "Curl": "Ixudra\\Curl\\Facades\\Curl"
  2990. }
  2991. }
  2992. },
  2993. "autoload": {
  2994. "psr-4": {
  2995. "Ixudra\\Curl\\": "src/"
  2996. }
  2997. },
  2998. "notification-url": "https://packagist.org/downloads/",
  2999. "license": [
  3000. "MIT"
  3001. ],
  3002. "authors": [
  3003. {
  3004. "name": "Jan Oris",
  3005. "email": "jan.oris@ixudra.be"
  3006. }
  3007. ],
  3008. "description": "Custom PHP Curl library for the Laravel framework - developed by Ixudra",
  3009. "homepage": "http://ixudra.be",
  3010. "keywords": [
  3011. "Ixudra",
  3012. "curl",
  3013. "laravel"
  3014. ],
  3015. "support": {
  3016. "issues": "https://github.com/ixudra/curl/issues",
  3017. "source": "https://github.com/ixudra/curl/tree/6.22.1"
  3018. },
  3019. "time": "2022-07-31T09:58:52+00:00"
  3020. },
  3021. {
  3022. "name": "kra8/laravel-snowflake",
  3023. "version": "v2.1.0",
  3024. "source": {
  3025. "type": "git",
  3026. "url": "https://github.com/kra8/laravel-snowflake.git",
  3027. "reference": "c56250c9e5b75eb26864f298039a74720b2ab1ed"
  3028. },
  3029. "dist": {
  3030. "type": "zip",
  3031. "url": "https://api.github.com/repos/kra8/laravel-snowflake/zipball/c56250c9e5b75eb26864f298039a74720b2ab1ed",
  3032. "reference": "c56250c9e5b75eb26864f298039a74720b2ab1ed",
  3033. "shasum": "",
  3034. "mirrors": [
  3035. {
  3036. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3037. "preferred": true
  3038. }
  3039. ]
  3040. },
  3041. "require": {
  3042. "illuminate/support": "^6.3|^7.0|^8.0|^9.0",
  3043. "php": "^7.2.5|^8.0"
  3044. },
  3045. "require-dev": {
  3046. "orchestra/testbench": "^5.0|^6.0|^7.0",
  3047. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3048. },
  3049. "type": "library",
  3050. "extra": {
  3051. "laravel": {
  3052. "providers": [
  3053. "Kra8\\Snowflake\\Providers\\LaravelServiceProvider"
  3054. ]
  3055. }
  3056. },
  3057. "autoload": {
  3058. "psr-4": {
  3059. "Kra8\\Snowflake\\": "src/"
  3060. }
  3061. },
  3062. "notification-url": "https://packagist.org/downloads/",
  3063. "license": [
  3064. "MIT"
  3065. ],
  3066. "authors": [
  3067. {
  3068. "name": "Koki Asai",
  3069. "email": "me@kra.dev"
  3070. }
  3071. ],
  3072. "description": "Snowflake for Laravel and Lumen.",
  3073. "homepage": "https://github.com/kra8/laravel-snowflake",
  3074. "keywords": [
  3075. "laravel",
  3076. "lumen",
  3077. "php",
  3078. "snowflake"
  3079. ],
  3080. "support": {
  3081. "issues": "https://github.com/kra8/laravel-snowflake/issues",
  3082. "source": "https://github.com/kra8/laravel-snowflake/tree/v2.1.0"
  3083. },
  3084. "time": "2022-02-28T04:04:37+00:00"
  3085. },
  3086. {
  3087. "name": "laravel/framework",
  3088. "version": "v8.83.29",
  3089. "source": {
  3090. "type": "git",
  3091. "url": "https://github.com/laravel/framework.git",
  3092. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4"
  3093. },
  3094. "dist": {
  3095. "type": "zip",
  3096. "url": "https://api.github.com/repos/laravel/framework/zipball/d841a226a50c715431952a10260ba4fac9e91cc4",
  3097. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4",
  3098. "shasum": "",
  3099. "mirrors": [
  3100. {
  3101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3102. "preferred": true
  3103. }
  3104. ]
  3105. },
  3106. "require": {
  3107. "doctrine/inflector": "^1.4|^2.0",
  3108. "dragonmantank/cron-expression": "^3.0.2",
  3109. "egulias/email-validator": "^2.1.10",
  3110. "ext-json": "*",
  3111. "ext-mbstring": "*",
  3112. "ext-openssl": "*",
  3113. "laravel/serializable-closure": "^1.0",
  3114. "league/commonmark": "^1.3|^2.0.2",
  3115. "league/flysystem": "^1.1",
  3116. "monolog/monolog": "^2.0",
  3117. "nesbot/carbon": "^2.53.1",
  3118. "opis/closure": "^3.6",
  3119. "php": "^7.3|^8.0",
  3120. "psr/container": "^1.0",
  3121. "psr/log": "^1.0|^2.0",
  3122. "psr/simple-cache": "^1.0",
  3123. "ramsey/uuid": "^4.2.2",
  3124. "swiftmailer/swiftmailer": "^6.3",
  3125. "symfony/console": "^5.4",
  3126. "symfony/error-handler": "^5.4",
  3127. "symfony/finder": "^5.4",
  3128. "symfony/http-foundation": "^5.4",
  3129. "symfony/http-kernel": "^5.4",
  3130. "symfony/mime": "^5.4",
  3131. "symfony/process": "^5.4",
  3132. "symfony/routing": "^5.4",
  3133. "symfony/var-dumper": "^5.4",
  3134. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  3135. "vlucas/phpdotenv": "^5.4.1",
  3136. "voku/portable-ascii": "^1.6.1"
  3137. },
  3138. "conflict": {
  3139. "tightenco/collect": "<5.5.33"
  3140. },
  3141. "provide": {
  3142. "psr/container-implementation": "1.0",
  3143. "psr/simple-cache-implementation": "1.0"
  3144. },
  3145. "replace": {
  3146. "illuminate/auth": "self.version",
  3147. "illuminate/broadcasting": "self.version",
  3148. "illuminate/bus": "self.version",
  3149. "illuminate/cache": "self.version",
  3150. "illuminate/collections": "self.version",
  3151. "illuminate/config": "self.version",
  3152. "illuminate/console": "self.version",
  3153. "illuminate/container": "self.version",
  3154. "illuminate/contracts": "self.version",
  3155. "illuminate/cookie": "self.version",
  3156. "illuminate/database": "self.version",
  3157. "illuminate/encryption": "self.version",
  3158. "illuminate/events": "self.version",
  3159. "illuminate/filesystem": "self.version",
  3160. "illuminate/hashing": "self.version",
  3161. "illuminate/http": "self.version",
  3162. "illuminate/log": "self.version",
  3163. "illuminate/macroable": "self.version",
  3164. "illuminate/mail": "self.version",
  3165. "illuminate/notifications": "self.version",
  3166. "illuminate/pagination": "self.version",
  3167. "illuminate/pipeline": "self.version",
  3168. "illuminate/queue": "self.version",
  3169. "illuminate/redis": "self.version",
  3170. "illuminate/routing": "self.version",
  3171. "illuminate/session": "self.version",
  3172. "illuminate/support": "self.version",
  3173. "illuminate/testing": "self.version",
  3174. "illuminate/translation": "self.version",
  3175. "illuminate/validation": "self.version",
  3176. "illuminate/view": "self.version"
  3177. },
  3178. "require-dev": {
  3179. "aws/aws-sdk-php": "^3.198.1",
  3180. "doctrine/dbal": "^2.13.3|^3.1.4",
  3181. "filp/whoops": "^2.14.3",
  3182. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  3183. "league/flysystem-cached-adapter": "^1.0",
  3184. "mockery/mockery": "^1.4.4",
  3185. "orchestra/testbench-core": "^6.27",
  3186. "pda/pheanstalk": "^4.0",
  3187. "phpunit/phpunit": "^8.5.19|^9.5.8",
  3188. "predis/predis": "^1.1.9",
  3189. "symfony/cache": "^5.4"
  3190. },
  3191. "suggest": {
  3192. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3193. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  3194. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  3195. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  3196. "ext-bcmath": "Required to use the multiple_of validation rule.",
  3197. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3198. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3199. "ext-memcached": "Required to use the memcache cache driver.",
  3200. "ext-pcntl": "Required to use all features of the queue worker.",
  3201. "ext-posix": "Required to use all features of the queue worker.",
  3202. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  3203. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3204. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3205. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  3206. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3207. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  3208. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  3209. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  3210. "mockery/mockery": "Required to use mocking (^1.4.4).",
  3211. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3212. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  3213. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  3214. "predis/predis": "Required to use the predis connector (^1.1.9).",
  3215. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3216. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  3217. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  3218. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  3219. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  3220. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  3221. },
  3222. "type": "library",
  3223. "extra": {
  3224. "branch-alias": {
  3225. "dev-master": "8.x-dev"
  3226. }
  3227. },
  3228. "autoload": {
  3229. "files": [
  3230. "src/Illuminate/Collections/helpers.php",
  3231. "src/Illuminate/Events/functions.php",
  3232. "src/Illuminate/Foundation/helpers.php",
  3233. "src/Illuminate/Support/helpers.php"
  3234. ],
  3235. "psr-4": {
  3236. "Illuminate\\": "src/Illuminate/",
  3237. "Illuminate\\Support\\": [
  3238. "src/Illuminate/Macroable/",
  3239. "src/Illuminate/Collections/"
  3240. ]
  3241. }
  3242. },
  3243. "notification-url": "https://packagist.org/downloads/",
  3244. "license": [
  3245. "MIT"
  3246. ],
  3247. "authors": [
  3248. {
  3249. "name": "Taylor Otwell",
  3250. "email": "taylor@laravel.com"
  3251. }
  3252. ],
  3253. "description": "The Laravel Framework.",
  3254. "homepage": "https://laravel.com",
  3255. "keywords": [
  3256. "framework",
  3257. "laravel"
  3258. ],
  3259. "support": {
  3260. "issues": "https://github.com/laravel/framework/issues",
  3261. "source": "https://github.com/laravel/framework"
  3262. },
  3263. "time": "2024-11-20T15:55:41+00:00"
  3264. },
  3265. {
  3266. "name": "laravel/serializable-closure",
  3267. "version": "v1.3.7",
  3268. "source": {
  3269. "type": "git",
  3270. "url": "https://github.com/laravel/serializable-closure.git",
  3271. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  3272. },
  3273. "dist": {
  3274. "type": "zip",
  3275. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  3276. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  3277. "shasum": "",
  3278. "mirrors": [
  3279. {
  3280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3281. "preferred": true
  3282. }
  3283. ]
  3284. },
  3285. "require": {
  3286. "php": "^7.3|^8.0"
  3287. },
  3288. "require-dev": {
  3289. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  3290. "nesbot/carbon": "^2.61|^3.0",
  3291. "pestphp/pest": "^1.21.3",
  3292. "phpstan/phpstan": "^1.8.2",
  3293. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  3294. },
  3295. "type": "library",
  3296. "extra": {
  3297. "branch-alias": {
  3298. "dev-master": "1.x-dev"
  3299. }
  3300. },
  3301. "autoload": {
  3302. "psr-4": {
  3303. "Laravel\\SerializableClosure\\": "src/"
  3304. }
  3305. },
  3306. "notification-url": "https://packagist.org/downloads/",
  3307. "license": [
  3308. "MIT"
  3309. ],
  3310. "authors": [
  3311. {
  3312. "name": "Taylor Otwell",
  3313. "email": "taylor@laravel.com"
  3314. },
  3315. {
  3316. "name": "Nuno Maduro",
  3317. "email": "nuno@laravel.com"
  3318. }
  3319. ],
  3320. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3321. "keywords": [
  3322. "closure",
  3323. "laravel",
  3324. "serializable"
  3325. ],
  3326. "support": {
  3327. "issues": "https://github.com/laravel/serializable-closure/issues",
  3328. "source": "https://github.com/laravel/serializable-closure"
  3329. },
  3330. "time": "2024-11-14T18:34:49+00:00"
  3331. },
  3332. {
  3333. "name": "laravel/tinker",
  3334. "version": "v2.10.0",
  3335. "source": {
  3336. "type": "git",
  3337. "url": "https://github.com/laravel/tinker.git",
  3338. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  3339. },
  3340. "dist": {
  3341. "type": "zip",
  3342. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  3343. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  3344. "shasum": "",
  3345. "mirrors": [
  3346. {
  3347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3348. "preferred": true
  3349. }
  3350. ]
  3351. },
  3352. "require": {
  3353. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3354. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3355. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3356. "php": "^7.2.5|^8.0",
  3357. "psy/psysh": "^0.11.1|^0.12.0",
  3358. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3359. },
  3360. "require-dev": {
  3361. "mockery/mockery": "~1.3.3|^1.4.2",
  3362. "phpstan/phpstan": "^1.10",
  3363. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3364. },
  3365. "suggest": {
  3366. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  3367. },
  3368. "type": "library",
  3369. "extra": {
  3370. "laravel": {
  3371. "providers": [
  3372. "Laravel\\Tinker\\TinkerServiceProvider"
  3373. ]
  3374. }
  3375. },
  3376. "autoload": {
  3377. "psr-4": {
  3378. "Laravel\\Tinker\\": "src/"
  3379. }
  3380. },
  3381. "notification-url": "https://packagist.org/downloads/",
  3382. "license": [
  3383. "MIT"
  3384. ],
  3385. "authors": [
  3386. {
  3387. "name": "Taylor Otwell",
  3388. "email": "taylor@laravel.com"
  3389. }
  3390. ],
  3391. "description": "Powerful REPL for the Laravel framework.",
  3392. "keywords": [
  3393. "REPL",
  3394. "Tinker",
  3395. "laravel",
  3396. "psysh"
  3397. ],
  3398. "support": {
  3399. "issues": "https://github.com/laravel/tinker/issues",
  3400. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  3401. },
  3402. "time": "2024-09-23T13:32:56+00:00"
  3403. },
  3404. {
  3405. "name": "league/commonmark",
  3406. "version": "2.6.0",
  3407. "source": {
  3408. "type": "git",
  3409. "url": "https://github.com/thephpleague/commonmark.git",
  3410. "reference": "d150f911e0079e90ae3c106734c93137c184f932"
  3411. },
  3412. "dist": {
  3413. "type": "zip",
  3414. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d150f911e0079e90ae3c106734c93137c184f932",
  3415. "reference": "d150f911e0079e90ae3c106734c93137c184f932",
  3416. "shasum": "",
  3417. "mirrors": [
  3418. {
  3419. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3420. "preferred": true
  3421. }
  3422. ]
  3423. },
  3424. "require": {
  3425. "ext-mbstring": "*",
  3426. "league/config": "^1.1.1",
  3427. "php": "^7.4 || ^8.0",
  3428. "psr/event-dispatcher": "^1.0",
  3429. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3430. "symfony/polyfill-php80": "^1.16"
  3431. },
  3432. "require-dev": {
  3433. "cebe/markdown": "^1.0",
  3434. "commonmark/cmark": "0.31.1",
  3435. "commonmark/commonmark.js": "0.31.1",
  3436. "composer/package-versions-deprecated": "^1.8",
  3437. "embed/embed": "^4.4",
  3438. "erusev/parsedown": "^1.0",
  3439. "ext-json": "*",
  3440. "github/gfm": "0.29.0",
  3441. "michelf/php-markdown": "^1.4 || ^2.0",
  3442. "nyholm/psr7": "^1.5",
  3443. "phpstan/phpstan": "^1.8.2",
  3444. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3445. "scrutinizer/ocular": "^1.8.1",
  3446. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  3447. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  3448. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  3449. "unleashedtech/php-coding-standard": "^3.1.1",
  3450. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3451. },
  3452. "suggest": {
  3453. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3454. },
  3455. "type": "library",
  3456. "extra": {
  3457. "branch-alias": {
  3458. "dev-main": "2.7-dev"
  3459. }
  3460. },
  3461. "autoload": {
  3462. "psr-4": {
  3463. "League\\CommonMark\\": "src"
  3464. }
  3465. },
  3466. "notification-url": "https://packagist.org/downloads/",
  3467. "license": [
  3468. "BSD-3-Clause"
  3469. ],
  3470. "authors": [
  3471. {
  3472. "name": "Colin O'Dell",
  3473. "email": "colinodell@gmail.com",
  3474. "homepage": "https://www.colinodell.com",
  3475. "role": "Lead Developer"
  3476. }
  3477. ],
  3478. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3479. "homepage": "https://commonmark.thephpleague.com",
  3480. "keywords": [
  3481. "commonmark",
  3482. "flavored",
  3483. "gfm",
  3484. "github",
  3485. "github-flavored",
  3486. "markdown",
  3487. "md",
  3488. "parser"
  3489. ],
  3490. "support": {
  3491. "docs": "https://commonmark.thephpleague.com/",
  3492. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3493. "issues": "https://github.com/thephpleague/commonmark/issues",
  3494. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3495. "source": "https://github.com/thephpleague/commonmark"
  3496. },
  3497. "funding": [
  3498. {
  3499. "url": "https://www.colinodell.com/sponsor",
  3500. "type": "custom"
  3501. },
  3502. {
  3503. "url": "https://www.paypal.me/colinpodell/10.00",
  3504. "type": "custom"
  3505. },
  3506. {
  3507. "url": "https://github.com/colinodell",
  3508. "type": "github"
  3509. },
  3510. {
  3511. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3512. "type": "tidelift"
  3513. }
  3514. ],
  3515. "time": "2024-12-07T15:34:16+00:00"
  3516. },
  3517. {
  3518. "name": "league/config",
  3519. "version": "v1.2.0",
  3520. "source": {
  3521. "type": "git",
  3522. "url": "https://github.com/thephpleague/config.git",
  3523. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3524. },
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3528. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3529. "shasum": "",
  3530. "mirrors": [
  3531. {
  3532. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3533. "preferred": true
  3534. }
  3535. ]
  3536. },
  3537. "require": {
  3538. "dflydev/dot-access-data": "^3.0.1",
  3539. "nette/schema": "^1.2",
  3540. "php": "^7.4 || ^8.0"
  3541. },
  3542. "require-dev": {
  3543. "phpstan/phpstan": "^1.8.2",
  3544. "phpunit/phpunit": "^9.5.5",
  3545. "scrutinizer/ocular": "^1.8.1",
  3546. "unleashedtech/php-coding-standard": "^3.1",
  3547. "vimeo/psalm": "^4.7.3"
  3548. },
  3549. "type": "library",
  3550. "extra": {
  3551. "branch-alias": {
  3552. "dev-main": "1.2-dev"
  3553. }
  3554. },
  3555. "autoload": {
  3556. "psr-4": {
  3557. "League\\Config\\": "src"
  3558. }
  3559. },
  3560. "notification-url": "https://packagist.org/downloads/",
  3561. "license": [
  3562. "BSD-3-Clause"
  3563. ],
  3564. "authors": [
  3565. {
  3566. "name": "Colin O'Dell",
  3567. "email": "colinodell@gmail.com",
  3568. "homepage": "https://www.colinodell.com",
  3569. "role": "Lead Developer"
  3570. }
  3571. ],
  3572. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3573. "homepage": "https://config.thephpleague.com",
  3574. "keywords": [
  3575. "array",
  3576. "config",
  3577. "configuration",
  3578. "dot",
  3579. "dot-access",
  3580. "nested",
  3581. "schema"
  3582. ],
  3583. "support": {
  3584. "docs": "https://config.thephpleague.com/",
  3585. "issues": "https://github.com/thephpleague/config/issues",
  3586. "rss": "https://github.com/thephpleague/config/releases.atom",
  3587. "source": "https://github.com/thephpleague/config"
  3588. },
  3589. "funding": [
  3590. {
  3591. "url": "https://www.colinodell.com/sponsor",
  3592. "type": "custom"
  3593. },
  3594. {
  3595. "url": "https://www.paypal.me/colinpodell/10.00",
  3596. "type": "custom"
  3597. },
  3598. {
  3599. "url": "https://github.com/colinodell",
  3600. "type": "github"
  3601. }
  3602. ],
  3603. "time": "2022-12-11T20:36:23+00:00"
  3604. },
  3605. {
  3606. "name": "league/flysystem",
  3607. "version": "1.1.10",
  3608. "source": {
  3609. "type": "git",
  3610. "url": "https://github.com/thephpleague/flysystem.git",
  3611. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  3612. },
  3613. "dist": {
  3614. "type": "zip",
  3615. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3616. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3617. "shasum": "",
  3618. "mirrors": [
  3619. {
  3620. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3621. "preferred": true
  3622. }
  3623. ]
  3624. },
  3625. "require": {
  3626. "ext-fileinfo": "*",
  3627. "league/mime-type-detection": "^1.3",
  3628. "php": "^7.2.5 || ^8.0"
  3629. },
  3630. "conflict": {
  3631. "league/flysystem-sftp": "<1.0.6"
  3632. },
  3633. "require-dev": {
  3634. "phpspec/prophecy": "^1.11.1",
  3635. "phpunit/phpunit": "^8.5.8"
  3636. },
  3637. "suggest": {
  3638. "ext-ftp": "Allows you to use FTP server storage",
  3639. "ext-openssl": "Allows you to use FTPS server storage",
  3640. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3641. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3642. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3643. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3644. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3645. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3646. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3647. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3648. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3649. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3650. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3651. },
  3652. "type": "library",
  3653. "extra": {
  3654. "branch-alias": {
  3655. "dev-master": "1.1-dev"
  3656. }
  3657. },
  3658. "autoload": {
  3659. "psr-4": {
  3660. "League\\Flysystem\\": "src/"
  3661. }
  3662. },
  3663. "notification-url": "https://packagist.org/downloads/",
  3664. "license": [
  3665. "MIT"
  3666. ],
  3667. "authors": [
  3668. {
  3669. "name": "Frank de Jonge",
  3670. "email": "info@frenky.net"
  3671. }
  3672. ],
  3673. "description": "Filesystem abstraction: Many filesystems, one API.",
  3674. "keywords": [
  3675. "Cloud Files",
  3676. "WebDAV",
  3677. "abstraction",
  3678. "aws",
  3679. "cloud",
  3680. "copy.com",
  3681. "dropbox",
  3682. "file systems",
  3683. "files",
  3684. "filesystem",
  3685. "filesystems",
  3686. "ftp",
  3687. "rackspace",
  3688. "remote",
  3689. "s3",
  3690. "sftp",
  3691. "storage"
  3692. ],
  3693. "support": {
  3694. "issues": "https://github.com/thephpleague/flysystem/issues",
  3695. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  3696. },
  3697. "funding": [
  3698. {
  3699. "url": "https://offset.earth/frankdejonge",
  3700. "type": "other"
  3701. }
  3702. ],
  3703. "time": "2022-10-04T09:16:37+00:00"
  3704. },
  3705. {
  3706. "name": "league/mime-type-detection",
  3707. "version": "1.15.0",
  3708. "source": {
  3709. "type": "git",
  3710. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3711. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  3712. },
  3713. "dist": {
  3714. "type": "zip",
  3715. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  3716. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  3717. "shasum": "",
  3718. "mirrors": [
  3719. {
  3720. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3721. "preferred": true
  3722. }
  3723. ]
  3724. },
  3725. "require": {
  3726. "ext-fileinfo": "*",
  3727. "php": "^7.4 || ^8.0"
  3728. },
  3729. "require-dev": {
  3730. "friendsofphp/php-cs-fixer": "^3.2",
  3731. "phpstan/phpstan": "^0.12.68",
  3732. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3733. },
  3734. "type": "library",
  3735. "autoload": {
  3736. "psr-4": {
  3737. "League\\MimeTypeDetection\\": "src"
  3738. }
  3739. },
  3740. "notification-url": "https://packagist.org/downloads/",
  3741. "license": [
  3742. "MIT"
  3743. ],
  3744. "authors": [
  3745. {
  3746. "name": "Frank de Jonge",
  3747. "email": "info@frankdejonge.nl"
  3748. }
  3749. ],
  3750. "description": "Mime-type detection for Flysystem",
  3751. "support": {
  3752. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3753. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  3754. },
  3755. "funding": [
  3756. {
  3757. "url": "https://github.com/frankdejonge",
  3758. "type": "github"
  3759. },
  3760. {
  3761. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3762. "type": "tidelift"
  3763. }
  3764. ],
  3765. "time": "2024-01-28T23:22:08+00:00"
  3766. },
  3767. {
  3768. "name": "lizhichao/one-sm",
  3769. "version": "1.10",
  3770. "source": {
  3771. "type": "git",
  3772. "url": "https://github.com/lizhichao/sm.git",
  3773. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  3774. },
  3775. "dist": {
  3776. "type": "zip",
  3777. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  3778. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  3779. "shasum": "",
  3780. "mirrors": [
  3781. {
  3782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3783. "preferred": true
  3784. }
  3785. ]
  3786. },
  3787. "require": {
  3788. "php": ">=5.6"
  3789. },
  3790. "type": "library",
  3791. "autoload": {
  3792. "psr-4": {
  3793. "OneSm\\": "src/"
  3794. }
  3795. },
  3796. "notification-url": "https://packagist.org/downloads/",
  3797. "license": [
  3798. "Apache-2.0"
  3799. ],
  3800. "authors": [
  3801. {
  3802. "name": "tanszhe",
  3803. "email": "1018595261@qq.com"
  3804. }
  3805. ],
  3806. "description": "国密sm3",
  3807. "keywords": [
  3808. "php",
  3809. "sm3"
  3810. ],
  3811. "support": {
  3812. "issues": "https://github.com/lizhichao/sm/issues",
  3813. "source": "https://github.com/lizhichao/sm/tree/1.10"
  3814. },
  3815. "funding": [
  3816. {
  3817. "url": "https://www.vicsdf.com/img/w.jpg",
  3818. "type": "custom"
  3819. },
  3820. {
  3821. "url": "https://www.vicsdf.com/img/z.jpg",
  3822. "type": "custom"
  3823. }
  3824. ],
  3825. "time": "2021-05-26T06:19:22+00:00"
  3826. },
  3827. {
  3828. "name": "maennchen/zipstream-php",
  3829. "version": "2.2.6",
  3830. "source": {
  3831. "type": "git",
  3832. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  3833. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f"
  3834. },
  3835. "dist": {
  3836. "type": "zip",
  3837. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  3838. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  3839. "shasum": "",
  3840. "mirrors": [
  3841. {
  3842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3843. "preferred": true
  3844. }
  3845. ]
  3846. },
  3847. "require": {
  3848. "myclabs/php-enum": "^1.5",
  3849. "php": "^7.4 || ^8.0",
  3850. "psr/http-message": "^1.0",
  3851. "symfony/polyfill-mbstring": "^1.0"
  3852. },
  3853. "require-dev": {
  3854. "ext-zip": "*",
  3855. "friendsofphp/php-cs-fixer": "^3.9",
  3856. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  3857. "mikey179/vfsstream": "^1.6",
  3858. "php-coveralls/php-coveralls": "^2.4",
  3859. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  3860. "vimeo/psalm": "^4.1"
  3861. },
  3862. "type": "library",
  3863. "autoload": {
  3864. "psr-4": {
  3865. "ZipStream\\": "src/"
  3866. }
  3867. },
  3868. "notification-url": "https://packagist.org/downloads/",
  3869. "license": [
  3870. "MIT"
  3871. ],
  3872. "authors": [
  3873. {
  3874. "name": "Paul Duncan",
  3875. "email": "pabs@pablotron.org"
  3876. },
  3877. {
  3878. "name": "Jonatan Männchen",
  3879. "email": "jonatan@maennchen.ch"
  3880. },
  3881. {
  3882. "name": "Jesse Donat",
  3883. "email": "donatj@gmail.com"
  3884. },
  3885. {
  3886. "name": "András Kolesár",
  3887. "email": "kolesar@kolesar.hu"
  3888. }
  3889. ],
  3890. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3891. "keywords": [
  3892. "stream",
  3893. "zip"
  3894. ],
  3895. "support": {
  3896. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3897. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6"
  3898. },
  3899. "funding": [
  3900. {
  3901. "url": "https://github.com/maennchen",
  3902. "type": "github"
  3903. },
  3904. {
  3905. "url": "https://opencollective.com/zipstream",
  3906. "type": "open_collective"
  3907. }
  3908. ],
  3909. "time": "2022-11-25T18:57:19+00:00"
  3910. },
  3911. {
  3912. "name": "markbaker/complex",
  3913. "version": "3.0.2",
  3914. "source": {
  3915. "type": "git",
  3916. "url": "https://github.com/MarkBaker/PHPComplex.git",
  3917. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  3918. },
  3919. "dist": {
  3920. "type": "zip",
  3921. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3922. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3923. "shasum": "",
  3924. "mirrors": [
  3925. {
  3926. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3927. "preferred": true
  3928. }
  3929. ]
  3930. },
  3931. "require": {
  3932. "php": "^7.2 || ^8.0"
  3933. },
  3934. "require-dev": {
  3935. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3936. "phpcompatibility/php-compatibility": "^9.3",
  3937. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3938. "squizlabs/php_codesniffer": "^3.7"
  3939. },
  3940. "type": "library",
  3941. "autoload": {
  3942. "psr-4": {
  3943. "Complex\\": "classes/src/"
  3944. }
  3945. },
  3946. "notification-url": "https://packagist.org/downloads/",
  3947. "license": [
  3948. "MIT"
  3949. ],
  3950. "authors": [
  3951. {
  3952. "name": "Mark Baker",
  3953. "email": "mark@lange.demon.co.uk"
  3954. }
  3955. ],
  3956. "description": "PHP Class for working with complex numbers",
  3957. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3958. "keywords": [
  3959. "complex",
  3960. "mathematics"
  3961. ],
  3962. "support": {
  3963. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3964. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3965. },
  3966. "time": "2022-12-06T16:21:08+00:00"
  3967. },
  3968. {
  3969. "name": "markbaker/matrix",
  3970. "version": "3.0.1",
  3971. "source": {
  3972. "type": "git",
  3973. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3974. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3975. },
  3976. "dist": {
  3977. "type": "zip",
  3978. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3979. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3980. "shasum": "",
  3981. "mirrors": [
  3982. {
  3983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3984. "preferred": true
  3985. }
  3986. ]
  3987. },
  3988. "require": {
  3989. "php": "^7.1 || ^8.0"
  3990. },
  3991. "require-dev": {
  3992. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3993. "phpcompatibility/php-compatibility": "^9.3",
  3994. "phpdocumentor/phpdocumentor": "2.*",
  3995. "phploc/phploc": "^4.0",
  3996. "phpmd/phpmd": "2.*",
  3997. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3998. "sebastian/phpcpd": "^4.0",
  3999. "squizlabs/php_codesniffer": "^3.7"
  4000. },
  4001. "type": "library",
  4002. "autoload": {
  4003. "psr-4": {
  4004. "Matrix\\": "classes/src/"
  4005. }
  4006. },
  4007. "notification-url": "https://packagist.org/downloads/",
  4008. "license": [
  4009. "MIT"
  4010. ],
  4011. "authors": [
  4012. {
  4013. "name": "Mark Baker",
  4014. "email": "mark@demon-angel.eu"
  4015. }
  4016. ],
  4017. "description": "PHP Class for working with matrices",
  4018. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  4019. "keywords": [
  4020. "mathematics",
  4021. "matrix",
  4022. "vector"
  4023. ],
  4024. "support": {
  4025. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  4026. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  4027. },
  4028. "time": "2022-12-02T22:17:43+00:00"
  4029. },
  4030. {
  4031. "name": "monolog/monolog",
  4032. "version": "2.10.0",
  4033. "source": {
  4034. "type": "git",
  4035. "url": "https://github.com/Seldaek/monolog.git",
  4036. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  4037. },
  4038. "dist": {
  4039. "type": "zip",
  4040. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  4041. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  4042. "shasum": "",
  4043. "mirrors": [
  4044. {
  4045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4046. "preferred": true
  4047. }
  4048. ]
  4049. },
  4050. "require": {
  4051. "php": ">=7.2",
  4052. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4053. },
  4054. "provide": {
  4055. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  4056. },
  4057. "require-dev": {
  4058. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4059. "doctrine/couchdb": "~1.0@dev",
  4060. "elasticsearch/elasticsearch": "^7 || ^8",
  4061. "ext-json": "*",
  4062. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  4063. "guzzlehttp/guzzle": "^7.4",
  4064. "guzzlehttp/psr7": "^2.2",
  4065. "mongodb/mongodb": "^1.8",
  4066. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4067. "phpspec/prophecy": "^1.15",
  4068. "phpstan/phpstan": "^1.10",
  4069. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  4070. "predis/predis": "^1.1 || ^2.0",
  4071. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  4072. "ruflin/elastica": "^7",
  4073. "swiftmailer/swiftmailer": "^5.3|^6.0",
  4074. "symfony/mailer": "^5.4 || ^6",
  4075. "symfony/mime": "^5.4 || ^6"
  4076. },
  4077. "suggest": {
  4078. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4079. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4080. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4081. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4082. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4083. "ext-mbstring": "Allow to work properly with unicode symbols",
  4084. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4085. "ext-openssl": "Required to send log messages using SSL",
  4086. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4087. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4088. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4089. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4090. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4091. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4092. },
  4093. "type": "library",
  4094. "extra": {
  4095. "branch-alias": {
  4096. "dev-main": "2.x-dev"
  4097. }
  4098. },
  4099. "autoload": {
  4100. "psr-4": {
  4101. "Monolog\\": "src/Monolog"
  4102. }
  4103. },
  4104. "notification-url": "https://packagist.org/downloads/",
  4105. "license": [
  4106. "MIT"
  4107. ],
  4108. "authors": [
  4109. {
  4110. "name": "Jordi Boggiano",
  4111. "email": "j.boggiano@seld.be",
  4112. "homepage": "https://seld.be"
  4113. }
  4114. ],
  4115. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4116. "homepage": "https://github.com/Seldaek/monolog",
  4117. "keywords": [
  4118. "log",
  4119. "logging",
  4120. "psr-3"
  4121. ],
  4122. "support": {
  4123. "issues": "https://github.com/Seldaek/monolog/issues",
  4124. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  4125. },
  4126. "funding": [
  4127. {
  4128. "url": "https://github.com/Seldaek",
  4129. "type": "github"
  4130. },
  4131. {
  4132. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4133. "type": "tidelift"
  4134. }
  4135. ],
  4136. "time": "2024-11-12T12:43:37+00:00"
  4137. },
  4138. {
  4139. "name": "mtdowling/jmespath.php",
  4140. "version": "2.7.0",
  4141. "source": {
  4142. "type": "git",
  4143. "url": "https://github.com/jmespath/jmespath.php.git",
  4144. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  4145. },
  4146. "dist": {
  4147. "type": "zip",
  4148. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4149. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4150. "shasum": "",
  4151. "mirrors": [
  4152. {
  4153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4154. "preferred": true
  4155. }
  4156. ]
  4157. },
  4158. "require": {
  4159. "php": "^7.2.5 || ^8.0",
  4160. "symfony/polyfill-mbstring": "^1.17"
  4161. },
  4162. "require-dev": {
  4163. "composer/xdebug-handler": "^3.0.3",
  4164. "phpunit/phpunit": "^8.5.33"
  4165. },
  4166. "bin": [
  4167. "bin/jp.php"
  4168. ],
  4169. "type": "library",
  4170. "extra": {
  4171. "branch-alias": {
  4172. "dev-master": "2.7-dev"
  4173. }
  4174. },
  4175. "autoload": {
  4176. "files": [
  4177. "src/JmesPath.php"
  4178. ],
  4179. "psr-4": {
  4180. "JmesPath\\": "src/"
  4181. }
  4182. },
  4183. "notification-url": "https://packagist.org/downloads/",
  4184. "license": [
  4185. "MIT"
  4186. ],
  4187. "authors": [
  4188. {
  4189. "name": "Graham Campbell",
  4190. "email": "hello@gjcampbell.co.uk",
  4191. "homepage": "https://github.com/GrahamCampbell"
  4192. },
  4193. {
  4194. "name": "Michael Dowling",
  4195. "email": "mtdowling@gmail.com",
  4196. "homepage": "https://github.com/mtdowling"
  4197. }
  4198. ],
  4199. "description": "Declaratively specify how to extract elements from a JSON document",
  4200. "keywords": [
  4201. "json",
  4202. "jsonpath"
  4203. ],
  4204. "support": {
  4205. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4206. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  4207. },
  4208. "time": "2023-08-25T10:54:48+00:00"
  4209. },
  4210. {
  4211. "name": "myclabs/php-enum",
  4212. "version": "1.8.4",
  4213. "source": {
  4214. "type": "git",
  4215. "url": "https://github.com/myclabs/php-enum.git",
  4216. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  4217. },
  4218. "dist": {
  4219. "type": "zip",
  4220. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  4221. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  4222. "shasum": "",
  4223. "mirrors": [
  4224. {
  4225. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4226. "preferred": true
  4227. }
  4228. ]
  4229. },
  4230. "require": {
  4231. "ext-json": "*",
  4232. "php": "^7.3 || ^8.0"
  4233. },
  4234. "require-dev": {
  4235. "phpunit/phpunit": "^9.5",
  4236. "squizlabs/php_codesniffer": "1.*",
  4237. "vimeo/psalm": "^4.6.2"
  4238. },
  4239. "type": "library",
  4240. "autoload": {
  4241. "psr-4": {
  4242. "MyCLabs\\Enum\\": "src/"
  4243. },
  4244. "classmap": [
  4245. "stubs/Stringable.php"
  4246. ]
  4247. },
  4248. "notification-url": "https://packagist.org/downloads/",
  4249. "license": [
  4250. "MIT"
  4251. ],
  4252. "authors": [
  4253. {
  4254. "name": "PHP Enum contributors",
  4255. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  4256. }
  4257. ],
  4258. "description": "PHP Enum implementation",
  4259. "homepage": "http://github.com/myclabs/php-enum",
  4260. "keywords": [
  4261. "enum"
  4262. ],
  4263. "support": {
  4264. "issues": "https://github.com/myclabs/php-enum/issues",
  4265. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  4266. },
  4267. "funding": [
  4268. {
  4269. "url": "https://github.com/mnapoli",
  4270. "type": "github"
  4271. },
  4272. {
  4273. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  4274. "type": "tidelift"
  4275. }
  4276. ],
  4277. "time": "2022-08-04T09:53:51+00:00"
  4278. },
  4279. {
  4280. "name": "nesbot/carbon",
  4281. "version": "2.73.0",
  4282. "source": {
  4283. "type": "git",
  4284. "url": "https://github.com/CarbonPHP/carbon.git",
  4285. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  4286. },
  4287. "dist": {
  4288. "type": "zip",
  4289. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  4290. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  4291. "shasum": "",
  4292. "mirrors": [
  4293. {
  4294. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4295. "preferred": true
  4296. }
  4297. ]
  4298. },
  4299. "require": {
  4300. "carbonphp/carbon-doctrine-types": "*",
  4301. "ext-json": "*",
  4302. "php": "^7.1.8 || ^8.0",
  4303. "psr/clock": "^1.0",
  4304. "symfony/polyfill-mbstring": "^1.0",
  4305. "symfony/polyfill-php80": "^1.16",
  4306. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4307. },
  4308. "provide": {
  4309. "psr/clock-implementation": "1.0"
  4310. },
  4311. "require-dev": {
  4312. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4313. "doctrine/orm": "^2.7 || ^3.0",
  4314. "friendsofphp/php-cs-fixer": "^3.0",
  4315. "kylekatarnls/multi-tester": "^2.0",
  4316. "ondrejmirtes/better-reflection": "<6",
  4317. "phpmd/phpmd": "^2.9",
  4318. "phpstan/extension-installer": "^1.0",
  4319. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4320. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4321. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4322. "squizlabs/php_codesniffer": "^3.4"
  4323. },
  4324. "bin": [
  4325. "bin/carbon"
  4326. ],
  4327. "type": "library",
  4328. "extra": {
  4329. "laravel": {
  4330. "providers": [
  4331. "Carbon\\Laravel\\ServiceProvider"
  4332. ]
  4333. },
  4334. "phpstan": {
  4335. "includes": [
  4336. "extension.neon"
  4337. ]
  4338. },
  4339. "branch-alias": {
  4340. "dev-2.x": "2.x-dev",
  4341. "dev-master": "3.x-dev"
  4342. }
  4343. },
  4344. "autoload": {
  4345. "psr-4": {
  4346. "Carbon\\": "src/Carbon/"
  4347. }
  4348. },
  4349. "notification-url": "https://packagist.org/downloads/",
  4350. "license": [
  4351. "MIT"
  4352. ],
  4353. "authors": [
  4354. {
  4355. "name": "Brian Nesbitt",
  4356. "email": "brian@nesbot.com",
  4357. "homepage": "https://markido.com"
  4358. },
  4359. {
  4360. "name": "kylekatarnls",
  4361. "homepage": "https://github.com/kylekatarnls"
  4362. }
  4363. ],
  4364. "description": "An API extension for DateTime that supports 281 different languages.",
  4365. "homepage": "https://carbon.nesbot.com",
  4366. "keywords": [
  4367. "date",
  4368. "datetime",
  4369. "time"
  4370. ],
  4371. "support": {
  4372. "docs": "https://carbon.nesbot.com/docs",
  4373. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4374. "source": "https://github.com/briannesbitt/Carbon"
  4375. },
  4376. "funding": [
  4377. {
  4378. "url": "https://github.com/sponsors/kylekatarnls",
  4379. "type": "github"
  4380. },
  4381. {
  4382. "url": "https://opencollective.com/Carbon#sponsor",
  4383. "type": "opencollective"
  4384. },
  4385. {
  4386. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4387. "type": "tidelift"
  4388. }
  4389. ],
  4390. "time": "2025-01-08T20:10:23+00:00"
  4391. },
  4392. {
  4393. "name": "nette/schema",
  4394. "version": "v1.2.5",
  4395. "source": {
  4396. "type": "git",
  4397. "url": "https://github.com/nette/schema.git",
  4398. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  4399. },
  4400. "dist": {
  4401. "type": "zip",
  4402. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  4403. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  4404. "shasum": "",
  4405. "mirrors": [
  4406. {
  4407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4408. "preferred": true
  4409. }
  4410. ]
  4411. },
  4412. "require": {
  4413. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  4414. "php": "7.1 - 8.3"
  4415. },
  4416. "require-dev": {
  4417. "nette/tester": "^2.3 || ^2.4",
  4418. "phpstan/phpstan-nette": "^1.0",
  4419. "tracy/tracy": "^2.7"
  4420. },
  4421. "type": "library",
  4422. "extra": {
  4423. "branch-alias": {
  4424. "dev-master": "1.2-dev"
  4425. }
  4426. },
  4427. "autoload": {
  4428. "classmap": [
  4429. "src/"
  4430. ]
  4431. },
  4432. "notification-url": "https://packagist.org/downloads/",
  4433. "license": [
  4434. "BSD-3-Clause",
  4435. "GPL-2.0-only",
  4436. "GPL-3.0-only"
  4437. ],
  4438. "authors": [
  4439. {
  4440. "name": "David Grudl",
  4441. "homepage": "https://davidgrudl.com"
  4442. },
  4443. {
  4444. "name": "Nette Community",
  4445. "homepage": "https://nette.org/contributors"
  4446. }
  4447. ],
  4448. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4449. "homepage": "https://nette.org",
  4450. "keywords": [
  4451. "config",
  4452. "nette"
  4453. ],
  4454. "support": {
  4455. "issues": "https://github.com/nette/schema/issues",
  4456. "source": "https://github.com/nette/schema/tree/v1.2.5"
  4457. },
  4458. "time": "2023-10-05T20:37:59+00:00"
  4459. },
  4460. {
  4461. "name": "nette/utils",
  4462. "version": "v3.2.10",
  4463. "source": {
  4464. "type": "git",
  4465. "url": "https://github.com/nette/utils.git",
  4466. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2"
  4467. },
  4468. "dist": {
  4469. "type": "zip",
  4470. "url": "https://api.github.com/repos/nette/utils/zipball/a4175c62652f2300c8017fb7e640f9ccb11648d2",
  4471. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2",
  4472. "shasum": "",
  4473. "mirrors": [
  4474. {
  4475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4476. "preferred": true
  4477. }
  4478. ]
  4479. },
  4480. "require": {
  4481. "php": ">=7.2 <8.4"
  4482. },
  4483. "conflict": {
  4484. "nette/di": "<3.0.6"
  4485. },
  4486. "require-dev": {
  4487. "jetbrains/phpstorm-attributes": "dev-master",
  4488. "nette/tester": "~2.0",
  4489. "phpstan/phpstan": "^1.0",
  4490. "tracy/tracy": "^2.3"
  4491. },
  4492. "suggest": {
  4493. "ext-gd": "to use Image",
  4494. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4495. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4496. "ext-json": "to use Nette\\Utils\\Json",
  4497. "ext-mbstring": "to use Strings::lower() etc...",
  4498. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  4499. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  4500. },
  4501. "type": "library",
  4502. "extra": {
  4503. "branch-alias": {
  4504. "dev-master": "3.2-dev"
  4505. }
  4506. },
  4507. "autoload": {
  4508. "classmap": [
  4509. "src/"
  4510. ]
  4511. },
  4512. "notification-url": "https://packagist.org/downloads/",
  4513. "license": [
  4514. "BSD-3-Clause",
  4515. "GPL-2.0-only",
  4516. "GPL-3.0-only"
  4517. ],
  4518. "authors": [
  4519. {
  4520. "name": "David Grudl",
  4521. "homepage": "https://davidgrudl.com"
  4522. },
  4523. {
  4524. "name": "Nette Community",
  4525. "homepage": "https://nette.org/contributors"
  4526. }
  4527. ],
  4528. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4529. "homepage": "https://nette.org",
  4530. "keywords": [
  4531. "array",
  4532. "core",
  4533. "datetime",
  4534. "images",
  4535. "json",
  4536. "nette",
  4537. "paginator",
  4538. "password",
  4539. "slugify",
  4540. "string",
  4541. "unicode",
  4542. "utf-8",
  4543. "utility",
  4544. "validation"
  4545. ],
  4546. "support": {
  4547. "issues": "https://github.com/nette/utils/issues",
  4548. "source": "https://github.com/nette/utils/tree/v3.2.10"
  4549. },
  4550. "time": "2023-07-30T15:38:18+00:00"
  4551. },
  4552. {
  4553. "name": "nikic/php-parser",
  4554. "version": "v5.3.1",
  4555. "source": {
  4556. "type": "git",
  4557. "url": "https://github.com/nikic/PHP-Parser.git",
  4558. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  4559. },
  4560. "dist": {
  4561. "type": "zip",
  4562. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  4563. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  4564. "shasum": "",
  4565. "mirrors": [
  4566. {
  4567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4568. "preferred": true
  4569. }
  4570. ]
  4571. },
  4572. "require": {
  4573. "ext-ctype": "*",
  4574. "ext-json": "*",
  4575. "ext-tokenizer": "*",
  4576. "php": ">=7.4"
  4577. },
  4578. "require-dev": {
  4579. "ircmaxell/php-yacc": "^0.0.7",
  4580. "phpunit/phpunit": "^9.0"
  4581. },
  4582. "bin": [
  4583. "bin/php-parse"
  4584. ],
  4585. "type": "library",
  4586. "extra": {
  4587. "branch-alias": {
  4588. "dev-master": "5.0-dev"
  4589. }
  4590. },
  4591. "autoload": {
  4592. "psr-4": {
  4593. "PhpParser\\": "lib/PhpParser"
  4594. }
  4595. },
  4596. "notification-url": "https://packagist.org/downloads/",
  4597. "license": [
  4598. "BSD-3-Clause"
  4599. ],
  4600. "authors": [
  4601. {
  4602. "name": "Nikita Popov"
  4603. }
  4604. ],
  4605. "description": "A PHP parser written in PHP",
  4606. "keywords": [
  4607. "parser",
  4608. "php"
  4609. ],
  4610. "support": {
  4611. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4612. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  4613. },
  4614. "time": "2024-10-08T18:51:32+00:00"
  4615. },
  4616. {
  4617. "name": "opis/closure",
  4618. "version": "3.6.3",
  4619. "source": {
  4620. "type": "git",
  4621. "url": "https://github.com/opis/closure.git",
  4622. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  4623. },
  4624. "dist": {
  4625. "type": "zip",
  4626. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  4627. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  4628. "shasum": "",
  4629. "mirrors": [
  4630. {
  4631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4632. "preferred": true
  4633. }
  4634. ]
  4635. },
  4636. "require": {
  4637. "php": "^5.4 || ^7.0 || ^8.0"
  4638. },
  4639. "require-dev": {
  4640. "jeremeamia/superclosure": "^2.0",
  4641. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4642. },
  4643. "type": "library",
  4644. "extra": {
  4645. "branch-alias": {
  4646. "dev-master": "3.6.x-dev"
  4647. }
  4648. },
  4649. "autoload": {
  4650. "files": [
  4651. "functions.php"
  4652. ],
  4653. "psr-4": {
  4654. "Opis\\Closure\\": "src/"
  4655. }
  4656. },
  4657. "notification-url": "https://packagist.org/downloads/",
  4658. "license": [
  4659. "MIT"
  4660. ],
  4661. "authors": [
  4662. {
  4663. "name": "Marius Sarca",
  4664. "email": "marius.sarca@gmail.com"
  4665. },
  4666. {
  4667. "name": "Sorin Sarca",
  4668. "email": "sarca_sorin@hotmail.com"
  4669. }
  4670. ],
  4671. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4672. "homepage": "https://opis.io/closure",
  4673. "keywords": [
  4674. "anonymous functions",
  4675. "closure",
  4676. "function",
  4677. "serializable",
  4678. "serialization",
  4679. "serialize"
  4680. ],
  4681. "support": {
  4682. "issues": "https://github.com/opis/closure/issues",
  4683. "source": "https://github.com/opis/closure/tree/3.6.3"
  4684. },
  4685. "time": "2022-01-27T09:35:39+00:00"
  4686. },
  4687. {
  4688. "name": "overtrue/qcloud-cos-client",
  4689. "version": "1.0.7",
  4690. "source": {
  4691. "type": "git",
  4692. "url": "https://github.com/overtrue/qcloud-cos-client.git",
  4693. "reference": "09e39c390969c348b9ec70f1ccf4619afc8de96b"
  4694. },
  4695. "dist": {
  4696. "type": "zip",
  4697. "url": "https://api.github.com/repos/overtrue/qcloud-cos-client/zipball/09e39c390969c348b9ec70f1ccf4619afc8de96b",
  4698. "reference": "09e39c390969c348b9ec70f1ccf4619afc8de96b",
  4699. "shasum": "",
  4700. "mirrors": [
  4701. {
  4702. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4703. "preferred": true
  4704. }
  4705. ]
  4706. },
  4707. "require": {
  4708. "ext-dom": "*",
  4709. "ext-json": "*",
  4710. "ext-libxml": "*",
  4711. "ext-simplexml": "*",
  4712. "guzzlehttp/guzzle": "^7.2",
  4713. "php": ">=7.4",
  4714. "psr/http-message": "^1.0||^2.0"
  4715. },
  4716. "require-dev": {
  4717. "brainmaestro/composer-git-hooks": "^2.7",
  4718. "friendsofphp/php-cs-fixer": "^3.4.0",
  4719. "mockery/mockery": "^1.0",
  4720. "monolog/monolog": "^2.1",
  4721. "phpunit/phpunit": "^9.0"
  4722. },
  4723. "type": "library",
  4724. "extra": {
  4725. "hooks": {
  4726. "pre-push": [
  4727. "composer test",
  4728. "composer check-style"
  4729. ],
  4730. "pre-commit": [
  4731. "composer test",
  4732. "composer check-style"
  4733. ]
  4734. }
  4735. },
  4736. "autoload": {
  4737. "psr-4": {
  4738. "Overtrue\\CosClient\\": "src"
  4739. }
  4740. },
  4741. "notification-url": "https://packagist.org/downloads/",
  4742. "license": [
  4743. "MIT"
  4744. ],
  4745. "authors": [
  4746. {
  4747. "name": "overtrue",
  4748. "email": "anzhengchao@gmail.com"
  4749. }
  4750. ],
  4751. "description": "Client of QCloud.com COS",
  4752. "support": {
  4753. "issues": "https://github.com/overtrue/qcloud-cos-client/issues",
  4754. "source": "https://github.com/overtrue/qcloud-cos-client/tree/1.0.7"
  4755. },
  4756. "funding": [
  4757. {
  4758. "url": "https://github.com/overtrue",
  4759. "type": "github"
  4760. }
  4761. ],
  4762. "time": "2025-02-01T14:25:45+00:00"
  4763. },
  4764. {
  4765. "name": "overtrue/socialite",
  4766. "version": "3.5.4",
  4767. "source": {
  4768. "type": "git",
  4769. "url": "https://github.com/overtrue/socialite.git",
  4770. "reference": "6bd4f0230bcaec5ccfd64a10581a9063233b5a48"
  4771. },
  4772. "dist": {
  4773. "type": "zip",
  4774. "url": "https://api.github.com/repos/overtrue/socialite/zipball/6bd4f0230bcaec5ccfd64a10581a9063233b5a48",
  4775. "reference": "6bd4f0230bcaec5ccfd64a10581a9063233b5a48",
  4776. "shasum": "",
  4777. "mirrors": [
  4778. {
  4779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4780. "preferred": true
  4781. }
  4782. ]
  4783. },
  4784. "require": {
  4785. "ext-json": "*",
  4786. "ext-openssl": "*",
  4787. "guzzlehttp/guzzle": "~6.0|~7.0",
  4788. "php": ">=7.4",
  4789. "symfony/http-foundation": "^5.0",
  4790. "symfony/psr-http-message-bridge": "^2.0"
  4791. },
  4792. "require-dev": {
  4793. "friendsofphp/php-cs-fixer": "^3.0",
  4794. "mockery/mockery": "~1.2",
  4795. "phpunit/phpunit": "~9.0"
  4796. },
  4797. "type": "library",
  4798. "autoload": {
  4799. "psr-4": {
  4800. "Overtrue\\Socialite\\": "src/"
  4801. }
  4802. },
  4803. "notification-url": "https://packagist.org/downloads/",
  4804. "license": [
  4805. "MIT"
  4806. ],
  4807. "authors": [
  4808. {
  4809. "name": "overtrue",
  4810. "email": "anzhengchao@gmail.com"
  4811. }
  4812. ],
  4813. "description": "A collection of OAuth 2 packages.",
  4814. "keywords": [
  4815. "Feishu",
  4816. "login",
  4817. "oauth",
  4818. "qcloud",
  4819. "qq",
  4820. "social",
  4821. "wechat",
  4822. "weibo"
  4823. ],
  4824. "support": {
  4825. "issues": "https://github.com/overtrue/socialite/issues",
  4826. "source": "https://github.com/overtrue/socialite/tree/3.5.4"
  4827. },
  4828. "funding": [
  4829. {
  4830. "url": "https://github.com/overtrue",
  4831. "type": "github"
  4832. }
  4833. ],
  4834. "time": "2022-11-19T13:32:42+00:00"
  4835. },
  4836. {
  4837. "name": "phpoffice/phpspreadsheet",
  4838. "version": "1.30.0",
  4839. "source": {
  4840. "type": "git",
  4841. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  4842. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714"
  4843. },
  4844. "dist": {
  4845. "type": "zip",
  4846. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2f39286e0136673778b7a142b3f0d141e43d1714",
  4847. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714",
  4848. "shasum": "",
  4849. "mirrors": [
  4850. {
  4851. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4852. "preferred": true
  4853. }
  4854. ]
  4855. },
  4856. "require": {
  4857. "composer/pcre": "^1||^2||^3",
  4858. "ext-ctype": "*",
  4859. "ext-dom": "*",
  4860. "ext-fileinfo": "*",
  4861. "ext-gd": "*",
  4862. "ext-iconv": "*",
  4863. "ext-libxml": "*",
  4864. "ext-mbstring": "*",
  4865. "ext-simplexml": "*",
  4866. "ext-xml": "*",
  4867. "ext-xmlreader": "*",
  4868. "ext-xmlwriter": "*",
  4869. "ext-zip": "*",
  4870. "ext-zlib": "*",
  4871. "ezyang/htmlpurifier": "^4.15",
  4872. "maennchen/zipstream-php": "^2.1 || ^3.0",
  4873. "markbaker/complex": "^3.0",
  4874. "markbaker/matrix": "^3.0",
  4875. "php": "^7.4 || ^8.0",
  4876. "psr/http-client": "^1.0",
  4877. "psr/http-factory": "^1.0",
  4878. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  4879. },
  4880. "require-dev": {
  4881. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  4882. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  4883. "friendsofphp/php-cs-fixer": "^3.2",
  4884. "mitoteam/jpgraph": "^10.3",
  4885. "mpdf/mpdf": "^8.1.1",
  4886. "phpcompatibility/php-compatibility": "^9.3",
  4887. "phpstan/phpstan": "^1.1",
  4888. "phpstan/phpstan-phpunit": "^1.0",
  4889. "phpunit/phpunit": "^8.5 || ^9.0",
  4890. "squizlabs/php_codesniffer": "^3.7",
  4891. "tecnickcom/tcpdf": "^6.5"
  4892. },
  4893. "suggest": {
  4894. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  4895. "ext-intl": "PHP Internationalization Functions",
  4896. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  4897. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  4898. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  4899. },
  4900. "type": "library",
  4901. "autoload": {
  4902. "psr-4": {
  4903. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  4904. }
  4905. },
  4906. "notification-url": "https://packagist.org/downloads/",
  4907. "license": [
  4908. "MIT"
  4909. ],
  4910. "authors": [
  4911. {
  4912. "name": "Maarten Balliauw",
  4913. "homepage": "https://blog.maartenballiauw.be"
  4914. },
  4915. {
  4916. "name": "Mark Baker",
  4917. "homepage": "https://markbakeruk.net"
  4918. },
  4919. {
  4920. "name": "Franck Lefevre",
  4921. "homepage": "https://rootslabs.net"
  4922. },
  4923. {
  4924. "name": "Erik Tilt"
  4925. },
  4926. {
  4927. "name": "Adrien Crivelli"
  4928. }
  4929. ],
  4930. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4931. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  4932. "keywords": [
  4933. "OpenXML",
  4934. "excel",
  4935. "gnumeric",
  4936. "ods",
  4937. "php",
  4938. "spreadsheet",
  4939. "xls",
  4940. "xlsx"
  4941. ],
  4942. "support": {
  4943. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  4944. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.0"
  4945. },
  4946. "time": "2025-08-10T06:28:02+00:00"
  4947. },
  4948. {
  4949. "name": "phpoption/phpoption",
  4950. "version": "1.9.3",
  4951. "source": {
  4952. "type": "git",
  4953. "url": "https://github.com/schmittjoh/php-option.git",
  4954. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  4955. },
  4956. "dist": {
  4957. "type": "zip",
  4958. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  4959. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  4960. "shasum": "",
  4961. "mirrors": [
  4962. {
  4963. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4964. "preferred": true
  4965. }
  4966. ]
  4967. },
  4968. "require": {
  4969. "php": "^7.2.5 || ^8.0"
  4970. },
  4971. "require-dev": {
  4972. "bamarni/composer-bin-plugin": "^1.8.2",
  4973. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  4974. },
  4975. "type": "library",
  4976. "extra": {
  4977. "bamarni-bin": {
  4978. "bin-links": true,
  4979. "forward-command": false
  4980. },
  4981. "branch-alias": {
  4982. "dev-master": "1.9-dev"
  4983. }
  4984. },
  4985. "autoload": {
  4986. "psr-4": {
  4987. "PhpOption\\": "src/PhpOption/"
  4988. }
  4989. },
  4990. "notification-url": "https://packagist.org/downloads/",
  4991. "license": [
  4992. "Apache-2.0"
  4993. ],
  4994. "authors": [
  4995. {
  4996. "name": "Johannes M. Schmitt",
  4997. "email": "schmittjoh@gmail.com",
  4998. "homepage": "https://github.com/schmittjoh"
  4999. },
  5000. {
  5001. "name": "Graham Campbell",
  5002. "email": "hello@gjcampbell.co.uk",
  5003. "homepage": "https://github.com/GrahamCampbell"
  5004. }
  5005. ],
  5006. "description": "Option Type for PHP",
  5007. "keywords": [
  5008. "language",
  5009. "option",
  5010. "php",
  5011. "type"
  5012. ],
  5013. "support": {
  5014. "issues": "https://github.com/schmittjoh/php-option/issues",
  5015. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5016. },
  5017. "funding": [
  5018. {
  5019. "url": "https://github.com/GrahamCampbell",
  5020. "type": "github"
  5021. },
  5022. {
  5023. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5024. "type": "tidelift"
  5025. }
  5026. ],
  5027. "time": "2024-07-20T21:41:07+00:00"
  5028. },
  5029. {
  5030. "name": "pimple/pimple",
  5031. "version": "v3.5.0",
  5032. "source": {
  5033. "type": "git",
  5034. "url": "https://github.com/silexphp/Pimple.git",
  5035. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  5036. },
  5037. "dist": {
  5038. "type": "zip",
  5039. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5040. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5041. "shasum": "",
  5042. "mirrors": [
  5043. {
  5044. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5045. "preferred": true
  5046. }
  5047. ]
  5048. },
  5049. "require": {
  5050. "php": ">=7.2.5",
  5051. "psr/container": "^1.1 || ^2.0"
  5052. },
  5053. "require-dev": {
  5054. "symfony/phpunit-bridge": "^5.4@dev"
  5055. },
  5056. "type": "library",
  5057. "extra": {
  5058. "branch-alias": {
  5059. "dev-master": "3.4.x-dev"
  5060. }
  5061. },
  5062. "autoload": {
  5063. "psr-0": {
  5064. "Pimple": "src/"
  5065. }
  5066. },
  5067. "notification-url": "https://packagist.org/downloads/",
  5068. "license": [
  5069. "MIT"
  5070. ],
  5071. "authors": [
  5072. {
  5073. "name": "Fabien Potencier",
  5074. "email": "fabien@symfony.com"
  5075. }
  5076. ],
  5077. "description": "Pimple, a simple Dependency Injection Container",
  5078. "homepage": "https://pimple.symfony.com",
  5079. "keywords": [
  5080. "container",
  5081. "dependency injection"
  5082. ],
  5083. "support": {
  5084. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  5085. },
  5086. "time": "2021-10-28T11:13:42+00:00"
  5087. },
  5088. {
  5089. "name": "predis/predis",
  5090. "version": "v1.1.10",
  5091. "source": {
  5092. "type": "git",
  5093. "url": "https://github.com/predis/predis.git",
  5094. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e"
  5095. },
  5096. "dist": {
  5097. "type": "zip",
  5098. "url": "https://api.github.com/repos/predis/predis/zipball/a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  5099. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  5100. "shasum": "",
  5101. "mirrors": [
  5102. {
  5103. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5104. "preferred": true
  5105. }
  5106. ]
  5107. },
  5108. "require": {
  5109. "php": ">=5.3.9"
  5110. },
  5111. "require-dev": {
  5112. "phpunit/phpunit": "~4.8"
  5113. },
  5114. "suggest": {
  5115. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  5116. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  5117. },
  5118. "type": "library",
  5119. "autoload": {
  5120. "psr-4": {
  5121. "Predis\\": "src/"
  5122. }
  5123. },
  5124. "notification-url": "https://packagist.org/downloads/",
  5125. "license": [
  5126. "MIT"
  5127. ],
  5128. "authors": [
  5129. {
  5130. "name": "Daniele Alessandri",
  5131. "email": "suppakilla@gmail.com",
  5132. "homepage": "http://clorophilla.net",
  5133. "role": "Creator & Maintainer"
  5134. },
  5135. {
  5136. "name": "Till Krüss",
  5137. "homepage": "https://till.im",
  5138. "role": "Maintainer"
  5139. }
  5140. ],
  5141. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  5142. "homepage": "http://github.com/predis/predis",
  5143. "keywords": [
  5144. "nosql",
  5145. "predis",
  5146. "redis"
  5147. ],
  5148. "support": {
  5149. "issues": "https://github.com/predis/predis/issues",
  5150. "source": "https://github.com/predis/predis/tree/v1.1.10"
  5151. },
  5152. "funding": [
  5153. {
  5154. "url": "https://github.com/sponsors/tillkruss",
  5155. "type": "github"
  5156. }
  5157. ],
  5158. "time": "2022-01-05T17:46:08+00:00"
  5159. },
  5160. {
  5161. "name": "psr/cache",
  5162. "version": "1.0.1",
  5163. "source": {
  5164. "type": "git",
  5165. "url": "https://github.com/php-fig/cache.git",
  5166. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  5167. },
  5168. "dist": {
  5169. "type": "zip",
  5170. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  5171. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  5172. "shasum": "",
  5173. "mirrors": [
  5174. {
  5175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5176. "preferred": true
  5177. }
  5178. ]
  5179. },
  5180. "require": {
  5181. "php": ">=5.3.0"
  5182. },
  5183. "type": "library",
  5184. "extra": {
  5185. "branch-alias": {
  5186. "dev-master": "1.0.x-dev"
  5187. }
  5188. },
  5189. "autoload": {
  5190. "psr-4": {
  5191. "Psr\\Cache\\": "src/"
  5192. }
  5193. },
  5194. "notification-url": "https://packagist.org/downloads/",
  5195. "license": [
  5196. "MIT"
  5197. ],
  5198. "authors": [
  5199. {
  5200. "name": "PHP-FIG",
  5201. "homepage": "http://www.php-fig.org/"
  5202. }
  5203. ],
  5204. "description": "Common interface for caching libraries",
  5205. "keywords": [
  5206. "cache",
  5207. "psr",
  5208. "psr-6"
  5209. ],
  5210. "support": {
  5211. "source": "https://github.com/php-fig/cache/tree/master"
  5212. },
  5213. "time": "2016-08-06T20:24:11+00:00"
  5214. },
  5215. {
  5216. "name": "psr/clock",
  5217. "version": "1.0.0",
  5218. "source": {
  5219. "type": "git",
  5220. "url": "https://github.com/php-fig/clock.git",
  5221. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5222. },
  5223. "dist": {
  5224. "type": "zip",
  5225. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5226. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5227. "shasum": "",
  5228. "mirrors": [
  5229. {
  5230. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5231. "preferred": true
  5232. }
  5233. ]
  5234. },
  5235. "require": {
  5236. "php": "^7.0 || ^8.0"
  5237. },
  5238. "type": "library",
  5239. "autoload": {
  5240. "psr-4": {
  5241. "Psr\\Clock\\": "src/"
  5242. }
  5243. },
  5244. "notification-url": "https://packagist.org/downloads/",
  5245. "license": [
  5246. "MIT"
  5247. ],
  5248. "authors": [
  5249. {
  5250. "name": "PHP-FIG",
  5251. "homepage": "https://www.php-fig.org/"
  5252. }
  5253. ],
  5254. "description": "Common interface for reading the clock.",
  5255. "homepage": "https://github.com/php-fig/clock",
  5256. "keywords": [
  5257. "clock",
  5258. "now",
  5259. "psr",
  5260. "psr-20",
  5261. "time"
  5262. ],
  5263. "support": {
  5264. "issues": "https://github.com/php-fig/clock/issues",
  5265. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5266. },
  5267. "time": "2022-11-25T14:36:26+00:00"
  5268. },
  5269. {
  5270. "name": "psr/container",
  5271. "version": "1.1.2",
  5272. "source": {
  5273. "type": "git",
  5274. "url": "https://github.com/php-fig/container.git",
  5275. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  5276. },
  5277. "dist": {
  5278. "type": "zip",
  5279. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  5280. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  5281. "shasum": "",
  5282. "mirrors": [
  5283. {
  5284. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5285. "preferred": true
  5286. }
  5287. ]
  5288. },
  5289. "require": {
  5290. "php": ">=7.4.0"
  5291. },
  5292. "type": "library",
  5293. "autoload": {
  5294. "psr-4": {
  5295. "Psr\\Container\\": "src/"
  5296. }
  5297. },
  5298. "notification-url": "https://packagist.org/downloads/",
  5299. "license": [
  5300. "MIT"
  5301. ],
  5302. "authors": [
  5303. {
  5304. "name": "PHP-FIG",
  5305. "homepage": "https://www.php-fig.org/"
  5306. }
  5307. ],
  5308. "description": "Common Container Interface (PHP FIG PSR-11)",
  5309. "homepage": "https://github.com/php-fig/container",
  5310. "keywords": [
  5311. "PSR-11",
  5312. "container",
  5313. "container-interface",
  5314. "container-interop",
  5315. "psr"
  5316. ],
  5317. "support": {
  5318. "issues": "https://github.com/php-fig/container/issues",
  5319. "source": "https://github.com/php-fig/container/tree/1.1.2"
  5320. },
  5321. "time": "2021-11-05T16:50:12+00:00"
  5322. },
  5323. {
  5324. "name": "psr/event-dispatcher",
  5325. "version": "1.0.0",
  5326. "source": {
  5327. "type": "git",
  5328. "url": "https://github.com/php-fig/event-dispatcher.git",
  5329. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5330. },
  5331. "dist": {
  5332. "type": "zip",
  5333. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5334. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5335. "shasum": "",
  5336. "mirrors": [
  5337. {
  5338. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5339. "preferred": true
  5340. }
  5341. ]
  5342. },
  5343. "require": {
  5344. "php": ">=7.2.0"
  5345. },
  5346. "type": "library",
  5347. "extra": {
  5348. "branch-alias": {
  5349. "dev-master": "1.0.x-dev"
  5350. }
  5351. },
  5352. "autoload": {
  5353. "psr-4": {
  5354. "Psr\\EventDispatcher\\": "src/"
  5355. }
  5356. },
  5357. "notification-url": "https://packagist.org/downloads/",
  5358. "license": [
  5359. "MIT"
  5360. ],
  5361. "authors": [
  5362. {
  5363. "name": "PHP-FIG",
  5364. "homepage": "http://www.php-fig.org/"
  5365. }
  5366. ],
  5367. "description": "Standard interfaces for event handling.",
  5368. "keywords": [
  5369. "events",
  5370. "psr",
  5371. "psr-14"
  5372. ],
  5373. "support": {
  5374. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5375. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5376. },
  5377. "time": "2019-01-08T18:20:26+00:00"
  5378. },
  5379. {
  5380. "name": "psr/http-client",
  5381. "version": "1.0.3",
  5382. "source": {
  5383. "type": "git",
  5384. "url": "https://github.com/php-fig/http-client.git",
  5385. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5386. },
  5387. "dist": {
  5388. "type": "zip",
  5389. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5390. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5391. "shasum": "",
  5392. "mirrors": [
  5393. {
  5394. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5395. "preferred": true
  5396. }
  5397. ]
  5398. },
  5399. "require": {
  5400. "php": "^7.0 || ^8.0",
  5401. "psr/http-message": "^1.0 || ^2.0"
  5402. },
  5403. "type": "library",
  5404. "extra": {
  5405. "branch-alias": {
  5406. "dev-master": "1.0.x-dev"
  5407. }
  5408. },
  5409. "autoload": {
  5410. "psr-4": {
  5411. "Psr\\Http\\Client\\": "src/"
  5412. }
  5413. },
  5414. "notification-url": "https://packagist.org/downloads/",
  5415. "license": [
  5416. "MIT"
  5417. ],
  5418. "authors": [
  5419. {
  5420. "name": "PHP-FIG",
  5421. "homepage": "https://www.php-fig.org/"
  5422. }
  5423. ],
  5424. "description": "Common interface for HTTP clients",
  5425. "homepage": "https://github.com/php-fig/http-client",
  5426. "keywords": [
  5427. "http",
  5428. "http-client",
  5429. "psr",
  5430. "psr-18"
  5431. ],
  5432. "support": {
  5433. "source": "https://github.com/php-fig/http-client"
  5434. },
  5435. "time": "2023-09-23T14:17:50+00:00"
  5436. },
  5437. {
  5438. "name": "psr/http-factory",
  5439. "version": "1.0.2",
  5440. "source": {
  5441. "type": "git",
  5442. "url": "https://github.com/php-fig/http-factory.git",
  5443. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  5444. },
  5445. "dist": {
  5446. "type": "zip",
  5447. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  5448. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  5449. "shasum": "",
  5450. "mirrors": [
  5451. {
  5452. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5453. "preferred": true
  5454. }
  5455. ]
  5456. },
  5457. "require": {
  5458. "php": ">=7.0.0",
  5459. "psr/http-message": "^1.0 || ^2.0"
  5460. },
  5461. "type": "library",
  5462. "extra": {
  5463. "branch-alias": {
  5464. "dev-master": "1.0.x-dev"
  5465. }
  5466. },
  5467. "autoload": {
  5468. "psr-4": {
  5469. "Psr\\Http\\Message\\": "src/"
  5470. }
  5471. },
  5472. "notification-url": "https://packagist.org/downloads/",
  5473. "license": [
  5474. "MIT"
  5475. ],
  5476. "authors": [
  5477. {
  5478. "name": "PHP-FIG",
  5479. "homepage": "https://www.php-fig.org/"
  5480. }
  5481. ],
  5482. "description": "Common interfaces for PSR-7 HTTP message factories",
  5483. "keywords": [
  5484. "factory",
  5485. "http",
  5486. "message",
  5487. "psr",
  5488. "psr-17",
  5489. "psr-7",
  5490. "request",
  5491. "response"
  5492. ],
  5493. "support": {
  5494. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  5495. },
  5496. "time": "2023-04-10T20:10:41+00:00"
  5497. },
  5498. {
  5499. "name": "psr/http-message",
  5500. "version": "1.1",
  5501. "source": {
  5502. "type": "git",
  5503. "url": "https://github.com/php-fig/http-message.git",
  5504. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  5505. },
  5506. "dist": {
  5507. "type": "zip",
  5508. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  5509. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  5510. "shasum": "",
  5511. "mirrors": [
  5512. {
  5513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5514. "preferred": true
  5515. }
  5516. ]
  5517. },
  5518. "require": {
  5519. "php": "^7.2 || ^8.0"
  5520. },
  5521. "type": "library",
  5522. "extra": {
  5523. "branch-alias": {
  5524. "dev-master": "1.1.x-dev"
  5525. }
  5526. },
  5527. "autoload": {
  5528. "psr-4": {
  5529. "Psr\\Http\\Message\\": "src/"
  5530. }
  5531. },
  5532. "notification-url": "https://packagist.org/downloads/",
  5533. "license": [
  5534. "MIT"
  5535. ],
  5536. "authors": [
  5537. {
  5538. "name": "PHP-FIG",
  5539. "homepage": "http://www.php-fig.org/"
  5540. }
  5541. ],
  5542. "description": "Common interface for HTTP messages",
  5543. "homepage": "https://github.com/php-fig/http-message",
  5544. "keywords": [
  5545. "http",
  5546. "http-message",
  5547. "psr",
  5548. "psr-7",
  5549. "request",
  5550. "response"
  5551. ],
  5552. "support": {
  5553. "source": "https://github.com/php-fig/http-message/tree/1.1"
  5554. },
  5555. "time": "2023-04-04T09:50:52+00:00"
  5556. },
  5557. {
  5558. "name": "psr/log",
  5559. "version": "1.1.4",
  5560. "source": {
  5561. "type": "git",
  5562. "url": "https://github.com/php-fig/log.git",
  5563. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  5564. },
  5565. "dist": {
  5566. "type": "zip",
  5567. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  5568. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  5569. "shasum": "",
  5570. "mirrors": [
  5571. {
  5572. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5573. "preferred": true
  5574. }
  5575. ]
  5576. },
  5577. "require": {
  5578. "php": ">=5.3.0"
  5579. },
  5580. "type": "library",
  5581. "extra": {
  5582. "branch-alias": {
  5583. "dev-master": "1.1.x-dev"
  5584. }
  5585. },
  5586. "autoload": {
  5587. "psr-4": {
  5588. "Psr\\Log\\": "Psr/Log/"
  5589. }
  5590. },
  5591. "notification-url": "https://packagist.org/downloads/",
  5592. "license": [
  5593. "MIT"
  5594. ],
  5595. "authors": [
  5596. {
  5597. "name": "PHP-FIG",
  5598. "homepage": "https://www.php-fig.org/"
  5599. }
  5600. ],
  5601. "description": "Common interface for logging libraries",
  5602. "homepage": "https://github.com/php-fig/log",
  5603. "keywords": [
  5604. "log",
  5605. "psr",
  5606. "psr-3"
  5607. ],
  5608. "support": {
  5609. "source": "https://github.com/php-fig/log/tree/1.1.4"
  5610. },
  5611. "time": "2021-05-03T11:20:27+00:00"
  5612. },
  5613. {
  5614. "name": "psr/simple-cache",
  5615. "version": "1.0.1",
  5616. "source": {
  5617. "type": "git",
  5618. "url": "https://github.com/php-fig/simple-cache.git",
  5619. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  5620. },
  5621. "dist": {
  5622. "type": "zip",
  5623. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5624. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5625. "shasum": "",
  5626. "mirrors": [
  5627. {
  5628. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5629. "preferred": true
  5630. }
  5631. ]
  5632. },
  5633. "require": {
  5634. "php": ">=5.3.0"
  5635. },
  5636. "type": "library",
  5637. "extra": {
  5638. "branch-alias": {
  5639. "dev-master": "1.0.x-dev"
  5640. }
  5641. },
  5642. "autoload": {
  5643. "psr-4": {
  5644. "Psr\\SimpleCache\\": "src/"
  5645. }
  5646. },
  5647. "notification-url": "https://packagist.org/downloads/",
  5648. "license": [
  5649. "MIT"
  5650. ],
  5651. "authors": [
  5652. {
  5653. "name": "PHP-FIG",
  5654. "homepage": "http://www.php-fig.org/"
  5655. }
  5656. ],
  5657. "description": "Common interfaces for simple caching",
  5658. "keywords": [
  5659. "cache",
  5660. "caching",
  5661. "psr",
  5662. "psr-16",
  5663. "simple-cache"
  5664. ],
  5665. "support": {
  5666. "source": "https://github.com/php-fig/simple-cache/tree/master"
  5667. },
  5668. "time": "2017-10-23T01:57:42+00:00"
  5669. },
  5670. {
  5671. "name": "psy/psysh",
  5672. "version": "v0.12.7",
  5673. "source": {
  5674. "type": "git",
  5675. "url": "https://github.com/bobthecow/psysh.git",
  5676. "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c"
  5677. },
  5678. "dist": {
  5679. "type": "zip",
  5680. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
  5681. "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
  5682. "shasum": "",
  5683. "mirrors": [
  5684. {
  5685. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5686. "preferred": true
  5687. }
  5688. ]
  5689. },
  5690. "require": {
  5691. "ext-json": "*",
  5692. "ext-tokenizer": "*",
  5693. "nikic/php-parser": "^5.0 || ^4.0",
  5694. "php": "^8.0 || ^7.4",
  5695. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  5696. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  5697. },
  5698. "conflict": {
  5699. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  5700. },
  5701. "require-dev": {
  5702. "bamarni/composer-bin-plugin": "^1.2"
  5703. },
  5704. "suggest": {
  5705. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5706. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5707. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  5708. },
  5709. "bin": [
  5710. "bin/psysh"
  5711. ],
  5712. "type": "library",
  5713. "extra": {
  5714. "bamarni-bin": {
  5715. "bin-links": false,
  5716. "forward-command": false
  5717. },
  5718. "branch-alias": {
  5719. "dev-main": "0.12.x-dev"
  5720. }
  5721. },
  5722. "autoload": {
  5723. "files": [
  5724. "src/functions.php"
  5725. ],
  5726. "psr-4": {
  5727. "Psy\\": "src/"
  5728. }
  5729. },
  5730. "notification-url": "https://packagist.org/downloads/",
  5731. "license": [
  5732. "MIT"
  5733. ],
  5734. "authors": [
  5735. {
  5736. "name": "Justin Hileman",
  5737. "email": "justin@justinhileman.info",
  5738. "homepage": "http://justinhileman.com"
  5739. }
  5740. ],
  5741. "description": "An interactive shell for modern PHP.",
  5742. "homepage": "http://psysh.org",
  5743. "keywords": [
  5744. "REPL",
  5745. "console",
  5746. "interactive",
  5747. "shell"
  5748. ],
  5749. "support": {
  5750. "issues": "https://github.com/bobthecow/psysh/issues",
  5751. "source": "https://github.com/bobthecow/psysh/tree/v0.12.7"
  5752. },
  5753. "time": "2024-12-10T01:58:33+00:00"
  5754. },
  5755. {
  5756. "name": "ralouphie/getallheaders",
  5757. "version": "3.0.3",
  5758. "source": {
  5759. "type": "git",
  5760. "url": "https://github.com/ralouphie/getallheaders.git",
  5761. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5762. },
  5763. "dist": {
  5764. "type": "zip",
  5765. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5766. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5767. "shasum": "",
  5768. "mirrors": [
  5769. {
  5770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5771. "preferred": true
  5772. }
  5773. ]
  5774. },
  5775. "require": {
  5776. "php": ">=5.6"
  5777. },
  5778. "require-dev": {
  5779. "php-coveralls/php-coveralls": "^2.1",
  5780. "phpunit/phpunit": "^5 || ^6.5"
  5781. },
  5782. "type": "library",
  5783. "autoload": {
  5784. "files": [
  5785. "src/getallheaders.php"
  5786. ]
  5787. },
  5788. "notification-url": "https://packagist.org/downloads/",
  5789. "license": [
  5790. "MIT"
  5791. ],
  5792. "authors": [
  5793. {
  5794. "name": "Ralph Khattar",
  5795. "email": "ralph.khattar@gmail.com"
  5796. }
  5797. ],
  5798. "description": "A polyfill for getallheaders.",
  5799. "support": {
  5800. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5801. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5802. },
  5803. "time": "2019-03-08T08:55:37+00:00"
  5804. },
  5805. {
  5806. "name": "ramsey/collection",
  5807. "version": "1.3.0",
  5808. "source": {
  5809. "type": "git",
  5810. "url": "https://github.com/ramsey/collection.git",
  5811. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  5812. },
  5813. "dist": {
  5814. "type": "zip",
  5815. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  5816. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  5817. "shasum": "",
  5818. "mirrors": [
  5819. {
  5820. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5821. "preferred": true
  5822. }
  5823. ]
  5824. },
  5825. "require": {
  5826. "php": "^7.4 || ^8.0",
  5827. "symfony/polyfill-php81": "^1.23"
  5828. },
  5829. "require-dev": {
  5830. "captainhook/plugin-composer": "^5.3",
  5831. "ergebnis/composer-normalize": "^2.28.3",
  5832. "fakerphp/faker": "^1.21",
  5833. "hamcrest/hamcrest-php": "^2.0",
  5834. "jangregor/phpstan-prophecy": "^1.0",
  5835. "mockery/mockery": "^1.5",
  5836. "php-parallel-lint/php-console-highlighter": "^1.0",
  5837. "php-parallel-lint/php-parallel-lint": "^1.3",
  5838. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  5839. "phpspec/prophecy-phpunit": "^2.0",
  5840. "phpstan/extension-installer": "^1.2",
  5841. "phpstan/phpstan": "^1.9",
  5842. "phpstan/phpstan-mockery": "^1.1",
  5843. "phpstan/phpstan-phpunit": "^1.3",
  5844. "phpunit/phpunit": "^9.5",
  5845. "psalm/plugin-mockery": "^1.1",
  5846. "psalm/plugin-phpunit": "^0.18.4",
  5847. "ramsey/coding-standard": "^2.0.3",
  5848. "ramsey/conventional-commits": "^1.3",
  5849. "vimeo/psalm": "^5.4"
  5850. },
  5851. "type": "library",
  5852. "extra": {
  5853. "captainhook": {
  5854. "force-install": true
  5855. },
  5856. "ramsey/conventional-commits": {
  5857. "configFile": "conventional-commits.json"
  5858. }
  5859. },
  5860. "autoload": {
  5861. "psr-4": {
  5862. "Ramsey\\Collection\\": "src/"
  5863. }
  5864. },
  5865. "notification-url": "https://packagist.org/downloads/",
  5866. "license": [
  5867. "MIT"
  5868. ],
  5869. "authors": [
  5870. {
  5871. "name": "Ben Ramsey",
  5872. "email": "ben@benramsey.com",
  5873. "homepage": "https://benramsey.com"
  5874. }
  5875. ],
  5876. "description": "A PHP library for representing and manipulating collections.",
  5877. "keywords": [
  5878. "array",
  5879. "collection",
  5880. "hash",
  5881. "map",
  5882. "queue",
  5883. "set"
  5884. ],
  5885. "support": {
  5886. "issues": "https://github.com/ramsey/collection/issues",
  5887. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  5888. },
  5889. "funding": [
  5890. {
  5891. "url": "https://github.com/ramsey",
  5892. "type": "github"
  5893. },
  5894. {
  5895. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  5896. "type": "tidelift"
  5897. }
  5898. ],
  5899. "time": "2022-12-27T19:12:24+00:00"
  5900. },
  5901. {
  5902. "name": "ramsey/uuid",
  5903. "version": "4.2.3",
  5904. "source": {
  5905. "type": "git",
  5906. "url": "https://github.com/ramsey/uuid.git",
  5907. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  5908. },
  5909. "dist": {
  5910. "type": "zip",
  5911. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5912. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5913. "shasum": "",
  5914. "mirrors": [
  5915. {
  5916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5917. "preferred": true
  5918. }
  5919. ]
  5920. },
  5921. "require": {
  5922. "brick/math": "^0.8 || ^0.9",
  5923. "ext-json": "*",
  5924. "php": "^7.2 || ^8.0",
  5925. "ramsey/collection": "^1.0",
  5926. "symfony/polyfill-ctype": "^1.8",
  5927. "symfony/polyfill-php80": "^1.14"
  5928. },
  5929. "replace": {
  5930. "rhumsaa/uuid": "self.version"
  5931. },
  5932. "require-dev": {
  5933. "captainhook/captainhook": "^5.10",
  5934. "captainhook/plugin-composer": "^5.3",
  5935. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5936. "doctrine/annotations": "^1.8",
  5937. "ergebnis/composer-normalize": "^2.15",
  5938. "mockery/mockery": "^1.3",
  5939. "moontoast/math": "^1.1",
  5940. "paragonie/random-lib": "^2",
  5941. "php-mock/php-mock": "^2.2",
  5942. "php-mock/php-mock-mockery": "^1.3",
  5943. "php-parallel-lint/php-parallel-lint": "^1.1",
  5944. "phpbench/phpbench": "^1.0",
  5945. "phpstan/extension-installer": "^1.0",
  5946. "phpstan/phpstan": "^0.12",
  5947. "phpstan/phpstan-mockery": "^0.12",
  5948. "phpstan/phpstan-phpunit": "^0.12",
  5949. "phpunit/phpunit": "^8.5 || ^9",
  5950. "slevomat/coding-standard": "^7.0",
  5951. "squizlabs/php_codesniffer": "^3.5",
  5952. "vimeo/psalm": "^4.9"
  5953. },
  5954. "suggest": {
  5955. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5956. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  5957. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5958. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5959. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5960. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5961. },
  5962. "type": "library",
  5963. "extra": {
  5964. "captainhook": {
  5965. "force-install": true
  5966. },
  5967. "branch-alias": {
  5968. "dev-main": "4.x-dev"
  5969. }
  5970. },
  5971. "autoload": {
  5972. "files": [
  5973. "src/functions.php"
  5974. ],
  5975. "psr-4": {
  5976. "Ramsey\\Uuid\\": "src/"
  5977. }
  5978. },
  5979. "notification-url": "https://packagist.org/downloads/",
  5980. "license": [
  5981. "MIT"
  5982. ],
  5983. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5984. "keywords": [
  5985. "guid",
  5986. "identifier",
  5987. "uuid"
  5988. ],
  5989. "support": {
  5990. "issues": "https://github.com/ramsey/uuid/issues",
  5991. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  5992. },
  5993. "funding": [
  5994. {
  5995. "url": "https://github.com/ramsey",
  5996. "type": "github"
  5997. },
  5998. {
  5999. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6000. "type": "tidelift"
  6001. }
  6002. ],
  6003. "time": "2021-09-25T23:10:38+00:00"
  6004. },
  6005. {
  6006. "name": "swiftmailer/swiftmailer",
  6007. "version": "v6.3.0",
  6008. "source": {
  6009. "type": "git",
  6010. "url": "https://github.com/swiftmailer/swiftmailer.git",
  6011. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  6012. },
  6013. "dist": {
  6014. "type": "zip",
  6015. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6016. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6017. "shasum": "",
  6018. "mirrors": [
  6019. {
  6020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6021. "preferred": true
  6022. }
  6023. ]
  6024. },
  6025. "require": {
  6026. "egulias/email-validator": "^2.0|^3.1",
  6027. "php": ">=7.0.0",
  6028. "symfony/polyfill-iconv": "^1.0",
  6029. "symfony/polyfill-intl-idn": "^1.10",
  6030. "symfony/polyfill-mbstring": "^1.0"
  6031. },
  6032. "require-dev": {
  6033. "mockery/mockery": "^1.0",
  6034. "symfony/phpunit-bridge": "^4.4|^5.4"
  6035. },
  6036. "suggest": {
  6037. "ext-intl": "Needed to support internationalized email addresses"
  6038. },
  6039. "type": "library",
  6040. "extra": {
  6041. "branch-alias": {
  6042. "dev-master": "6.2-dev"
  6043. }
  6044. },
  6045. "autoload": {
  6046. "files": [
  6047. "lib/swift_required.php"
  6048. ]
  6049. },
  6050. "notification-url": "https://packagist.org/downloads/",
  6051. "license": [
  6052. "MIT"
  6053. ],
  6054. "authors": [
  6055. {
  6056. "name": "Chris Corbyn"
  6057. },
  6058. {
  6059. "name": "Fabien Potencier",
  6060. "email": "fabien@symfony.com"
  6061. }
  6062. ],
  6063. "description": "Swiftmailer, free feature-rich PHP mailer",
  6064. "homepage": "https://swiftmailer.symfony.com",
  6065. "keywords": [
  6066. "email",
  6067. "mail",
  6068. "mailer"
  6069. ],
  6070. "support": {
  6071. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  6072. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  6073. },
  6074. "funding": [
  6075. {
  6076. "url": "https://github.com/fabpot",
  6077. "type": "github"
  6078. },
  6079. {
  6080. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  6081. "type": "tidelift"
  6082. }
  6083. ],
  6084. "abandoned": "symfony/mailer",
  6085. "time": "2021-10-18T15:26:12+00:00"
  6086. },
  6087. {
  6088. "name": "symfony/cache",
  6089. "version": "v5.4.46",
  6090. "source": {
  6091. "type": "git",
  6092. "url": "https://github.com/symfony/cache.git",
  6093. "reference": "0fe08ee32cec2748fbfea10c52d3ee02049e0f6b"
  6094. },
  6095. "dist": {
  6096. "type": "zip",
  6097. "url": "https://api.github.com/repos/symfony/cache/zipball/0fe08ee32cec2748fbfea10c52d3ee02049e0f6b",
  6098. "reference": "0fe08ee32cec2748fbfea10c52d3ee02049e0f6b",
  6099. "shasum": "",
  6100. "mirrors": [
  6101. {
  6102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6103. "preferred": true
  6104. }
  6105. ]
  6106. },
  6107. "require": {
  6108. "php": ">=7.2.5",
  6109. "psr/cache": "^1.0|^2.0",
  6110. "psr/log": "^1.1|^2|^3",
  6111. "symfony/cache-contracts": "^1.1.7|^2",
  6112. "symfony/deprecation-contracts": "^2.1|^3",
  6113. "symfony/polyfill-php73": "^1.9",
  6114. "symfony/polyfill-php80": "^1.16",
  6115. "symfony/service-contracts": "^1.1|^2|^3",
  6116. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6117. },
  6118. "conflict": {
  6119. "doctrine/dbal": "<2.13.1",
  6120. "symfony/dependency-injection": "<4.4",
  6121. "symfony/http-kernel": "<4.4",
  6122. "symfony/var-dumper": "<4.4"
  6123. },
  6124. "provide": {
  6125. "psr/cache-implementation": "1.0|2.0",
  6126. "psr/simple-cache-implementation": "1.0|2.0",
  6127. "symfony/cache-implementation": "1.0|2.0"
  6128. },
  6129. "require-dev": {
  6130. "cache/integration-tests": "dev-master",
  6131. "doctrine/cache": "^1.6|^2.0",
  6132. "doctrine/dbal": "^2.13.1|^3|^4",
  6133. "predis/predis": "^1.1|^2.0",
  6134. "psr/simple-cache": "^1.0|^2.0",
  6135. "symfony/config": "^4.4|^5.0|^6.0",
  6136. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6137. "symfony/filesystem": "^4.4|^5.0|^6.0",
  6138. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6139. "symfony/messenger": "^4.4|^5.0|^6.0",
  6140. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6141. },
  6142. "type": "library",
  6143. "autoload": {
  6144. "psr-4": {
  6145. "Symfony\\Component\\Cache\\": ""
  6146. },
  6147. "exclude-from-classmap": [
  6148. "/Tests/"
  6149. ]
  6150. },
  6151. "notification-url": "https://packagist.org/downloads/",
  6152. "license": [
  6153. "MIT"
  6154. ],
  6155. "authors": [
  6156. {
  6157. "name": "Nicolas Grekas",
  6158. "email": "p@tchwork.com"
  6159. },
  6160. {
  6161. "name": "Symfony Community",
  6162. "homepage": "https://symfony.com/contributors"
  6163. }
  6164. ],
  6165. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  6166. "homepage": "https://symfony.com",
  6167. "keywords": [
  6168. "caching",
  6169. "psr6"
  6170. ],
  6171. "support": {
  6172. "source": "https://github.com/symfony/cache/tree/v5.4.46"
  6173. },
  6174. "funding": [
  6175. {
  6176. "url": "https://symfony.com/sponsor",
  6177. "type": "custom"
  6178. },
  6179. {
  6180. "url": "https://github.com/fabpot",
  6181. "type": "github"
  6182. },
  6183. {
  6184. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6185. "type": "tidelift"
  6186. }
  6187. ],
  6188. "time": "2024-11-04T11:43:55+00:00"
  6189. },
  6190. {
  6191. "name": "symfony/cache-contracts",
  6192. "version": "v2.5.4",
  6193. "source": {
  6194. "type": "git",
  6195. "url": "https://github.com/symfony/cache-contracts.git",
  6196. "reference": "517c3a3619dadfa6952c4651767fcadffb4df65e"
  6197. },
  6198. "dist": {
  6199. "type": "zip",
  6200. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/517c3a3619dadfa6952c4651767fcadffb4df65e",
  6201. "reference": "517c3a3619dadfa6952c4651767fcadffb4df65e",
  6202. "shasum": "",
  6203. "mirrors": [
  6204. {
  6205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6206. "preferred": true
  6207. }
  6208. ]
  6209. },
  6210. "require": {
  6211. "php": ">=7.2.5",
  6212. "psr/cache": "^1.0|^2.0|^3.0"
  6213. },
  6214. "suggest": {
  6215. "symfony/cache-implementation": ""
  6216. },
  6217. "type": "library",
  6218. "extra": {
  6219. "thanks": {
  6220. "url": "https://github.com/symfony/contracts",
  6221. "name": "symfony/contracts"
  6222. },
  6223. "branch-alias": {
  6224. "dev-main": "2.5-dev"
  6225. }
  6226. },
  6227. "autoload": {
  6228. "psr-4": {
  6229. "Symfony\\Contracts\\Cache\\": ""
  6230. }
  6231. },
  6232. "notification-url": "https://packagist.org/downloads/",
  6233. "license": [
  6234. "MIT"
  6235. ],
  6236. "authors": [
  6237. {
  6238. "name": "Nicolas Grekas",
  6239. "email": "p@tchwork.com"
  6240. },
  6241. {
  6242. "name": "Symfony Community",
  6243. "homepage": "https://symfony.com/contributors"
  6244. }
  6245. ],
  6246. "description": "Generic abstractions related to caching",
  6247. "homepage": "https://symfony.com",
  6248. "keywords": [
  6249. "abstractions",
  6250. "contracts",
  6251. "decoupling",
  6252. "interfaces",
  6253. "interoperability",
  6254. "standards"
  6255. ],
  6256. "support": {
  6257. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.4"
  6258. },
  6259. "funding": [
  6260. {
  6261. "url": "https://symfony.com/sponsor",
  6262. "type": "custom"
  6263. },
  6264. {
  6265. "url": "https://github.com/fabpot",
  6266. "type": "github"
  6267. },
  6268. {
  6269. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6270. "type": "tidelift"
  6271. }
  6272. ],
  6273. "time": "2024-09-25T14:11:13+00:00"
  6274. },
  6275. {
  6276. "name": "symfony/console",
  6277. "version": "v5.4.47",
  6278. "source": {
  6279. "type": "git",
  6280. "url": "https://github.com/symfony/console.git",
  6281. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed"
  6282. },
  6283. "dist": {
  6284. "type": "zip",
  6285. "url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  6286. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  6287. "shasum": "",
  6288. "mirrors": [
  6289. {
  6290. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6291. "preferred": true
  6292. }
  6293. ]
  6294. },
  6295. "require": {
  6296. "php": ">=7.2.5",
  6297. "symfony/deprecation-contracts": "^2.1|^3",
  6298. "symfony/polyfill-mbstring": "~1.0",
  6299. "symfony/polyfill-php73": "^1.9",
  6300. "symfony/polyfill-php80": "^1.16",
  6301. "symfony/service-contracts": "^1.1|^2|^3",
  6302. "symfony/string": "^5.1|^6.0"
  6303. },
  6304. "conflict": {
  6305. "psr/log": ">=3",
  6306. "symfony/dependency-injection": "<4.4",
  6307. "symfony/dotenv": "<5.1",
  6308. "symfony/event-dispatcher": "<4.4",
  6309. "symfony/lock": "<4.4",
  6310. "symfony/process": "<4.4"
  6311. },
  6312. "provide": {
  6313. "psr/log-implementation": "1.0|2.0"
  6314. },
  6315. "require-dev": {
  6316. "psr/log": "^1|^2",
  6317. "symfony/config": "^4.4|^5.0|^6.0",
  6318. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6319. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  6320. "symfony/lock": "^4.4|^5.0|^6.0",
  6321. "symfony/process": "^4.4|^5.0|^6.0",
  6322. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6323. },
  6324. "suggest": {
  6325. "psr/log": "For using the console logger",
  6326. "symfony/event-dispatcher": "",
  6327. "symfony/lock": "",
  6328. "symfony/process": ""
  6329. },
  6330. "type": "library",
  6331. "autoload": {
  6332. "psr-4": {
  6333. "Symfony\\Component\\Console\\": ""
  6334. },
  6335. "exclude-from-classmap": [
  6336. "/Tests/"
  6337. ]
  6338. },
  6339. "notification-url": "https://packagist.org/downloads/",
  6340. "license": [
  6341. "MIT"
  6342. ],
  6343. "authors": [
  6344. {
  6345. "name": "Fabien Potencier",
  6346. "email": "fabien@symfony.com"
  6347. },
  6348. {
  6349. "name": "Symfony Community",
  6350. "homepage": "https://symfony.com/contributors"
  6351. }
  6352. ],
  6353. "description": "Eases the creation of beautiful and testable command line interfaces",
  6354. "homepage": "https://symfony.com",
  6355. "keywords": [
  6356. "cli",
  6357. "command-line",
  6358. "console",
  6359. "terminal"
  6360. ],
  6361. "support": {
  6362. "source": "https://github.com/symfony/console/tree/v5.4.47"
  6363. },
  6364. "funding": [
  6365. {
  6366. "url": "https://symfony.com/sponsor",
  6367. "type": "custom"
  6368. },
  6369. {
  6370. "url": "https://github.com/fabpot",
  6371. "type": "github"
  6372. },
  6373. {
  6374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6375. "type": "tidelift"
  6376. }
  6377. ],
  6378. "time": "2024-11-06T11:30:55+00:00"
  6379. },
  6380. {
  6381. "name": "symfony/css-selector",
  6382. "version": "v5.4.45",
  6383. "source": {
  6384. "type": "git",
  6385. "url": "https://github.com/symfony/css-selector.git",
  6386. "reference": "4f7f3c35fba88146b56d0025d20ace3f3901f097"
  6387. },
  6388. "dist": {
  6389. "type": "zip",
  6390. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4f7f3c35fba88146b56d0025d20ace3f3901f097",
  6391. "reference": "4f7f3c35fba88146b56d0025d20ace3f3901f097",
  6392. "shasum": "",
  6393. "mirrors": [
  6394. {
  6395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6396. "preferred": true
  6397. }
  6398. ]
  6399. },
  6400. "require": {
  6401. "php": ">=7.2.5",
  6402. "symfony/polyfill-php80": "^1.16"
  6403. },
  6404. "type": "library",
  6405. "autoload": {
  6406. "psr-4": {
  6407. "Symfony\\Component\\CssSelector\\": ""
  6408. },
  6409. "exclude-from-classmap": [
  6410. "/Tests/"
  6411. ]
  6412. },
  6413. "notification-url": "https://packagist.org/downloads/",
  6414. "license": [
  6415. "MIT"
  6416. ],
  6417. "authors": [
  6418. {
  6419. "name": "Fabien Potencier",
  6420. "email": "fabien@symfony.com"
  6421. },
  6422. {
  6423. "name": "Jean-François Simon",
  6424. "email": "jeanfrancois.simon@sensiolabs.com"
  6425. },
  6426. {
  6427. "name": "Symfony Community",
  6428. "homepage": "https://symfony.com/contributors"
  6429. }
  6430. ],
  6431. "description": "Converts CSS selectors to XPath expressions",
  6432. "homepage": "https://symfony.com",
  6433. "support": {
  6434. "source": "https://github.com/symfony/css-selector/tree/v5.4.45"
  6435. },
  6436. "funding": [
  6437. {
  6438. "url": "https://symfony.com/sponsor",
  6439. "type": "custom"
  6440. },
  6441. {
  6442. "url": "https://github.com/fabpot",
  6443. "type": "github"
  6444. },
  6445. {
  6446. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6447. "type": "tidelift"
  6448. }
  6449. ],
  6450. "time": "2024-09-25T14:11:13+00:00"
  6451. },
  6452. {
  6453. "name": "symfony/deprecation-contracts",
  6454. "version": "v2.5.4",
  6455. "source": {
  6456. "type": "git",
  6457. "url": "https://github.com/symfony/deprecation-contracts.git",
  6458. "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918"
  6459. },
  6460. "dist": {
  6461. "type": "zip",
  6462. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/605389f2a7e5625f273b53960dc46aeaf9c62918",
  6463. "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918",
  6464. "shasum": "",
  6465. "mirrors": [
  6466. {
  6467. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6468. "preferred": true
  6469. }
  6470. ]
  6471. },
  6472. "require": {
  6473. "php": ">=7.1"
  6474. },
  6475. "type": "library",
  6476. "extra": {
  6477. "thanks": {
  6478. "url": "https://github.com/symfony/contracts",
  6479. "name": "symfony/contracts"
  6480. },
  6481. "branch-alias": {
  6482. "dev-main": "2.5-dev"
  6483. }
  6484. },
  6485. "autoload": {
  6486. "files": [
  6487. "function.php"
  6488. ]
  6489. },
  6490. "notification-url": "https://packagist.org/downloads/",
  6491. "license": [
  6492. "MIT"
  6493. ],
  6494. "authors": [
  6495. {
  6496. "name": "Nicolas Grekas",
  6497. "email": "p@tchwork.com"
  6498. },
  6499. {
  6500. "name": "Symfony Community",
  6501. "homepage": "https://symfony.com/contributors"
  6502. }
  6503. ],
  6504. "description": "A generic function and convention to trigger deprecation notices",
  6505. "homepage": "https://symfony.com",
  6506. "support": {
  6507. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.4"
  6508. },
  6509. "funding": [
  6510. {
  6511. "url": "https://symfony.com/sponsor",
  6512. "type": "custom"
  6513. },
  6514. {
  6515. "url": "https://github.com/fabpot",
  6516. "type": "github"
  6517. },
  6518. {
  6519. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6520. "type": "tidelift"
  6521. }
  6522. ],
  6523. "time": "2024-09-25T14:11:13+00:00"
  6524. },
  6525. {
  6526. "name": "symfony/error-handler",
  6527. "version": "v5.4.46",
  6528. "source": {
  6529. "type": "git",
  6530. "url": "https://github.com/symfony/error-handler.git",
  6531. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363"
  6532. },
  6533. "dist": {
  6534. "type": "zip",
  6535. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d19ede7a2cafb386be9486c580649d0f9e3d0363",
  6536. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363",
  6537. "shasum": "",
  6538. "mirrors": [
  6539. {
  6540. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6541. "preferred": true
  6542. }
  6543. ]
  6544. },
  6545. "require": {
  6546. "php": ">=7.2.5",
  6547. "psr/log": "^1|^2|^3",
  6548. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6549. },
  6550. "require-dev": {
  6551. "symfony/deprecation-contracts": "^2.1|^3",
  6552. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6553. "symfony/serializer": "^4.4|^5.0|^6.0"
  6554. },
  6555. "bin": [
  6556. "Resources/bin/patch-type-declarations"
  6557. ],
  6558. "type": "library",
  6559. "autoload": {
  6560. "psr-4": {
  6561. "Symfony\\Component\\ErrorHandler\\": ""
  6562. },
  6563. "exclude-from-classmap": [
  6564. "/Tests/"
  6565. ]
  6566. },
  6567. "notification-url": "https://packagist.org/downloads/",
  6568. "license": [
  6569. "MIT"
  6570. ],
  6571. "authors": [
  6572. {
  6573. "name": "Fabien Potencier",
  6574. "email": "fabien@symfony.com"
  6575. },
  6576. {
  6577. "name": "Symfony Community",
  6578. "homepage": "https://symfony.com/contributors"
  6579. }
  6580. ],
  6581. "description": "Provides tools to manage errors and ease debugging PHP code",
  6582. "homepage": "https://symfony.com",
  6583. "support": {
  6584. "source": "https://github.com/symfony/error-handler/tree/v5.4.46"
  6585. },
  6586. "funding": [
  6587. {
  6588. "url": "https://symfony.com/sponsor",
  6589. "type": "custom"
  6590. },
  6591. {
  6592. "url": "https://github.com/fabpot",
  6593. "type": "github"
  6594. },
  6595. {
  6596. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6597. "type": "tidelift"
  6598. }
  6599. ],
  6600. "time": "2024-11-05T14:17:06+00:00"
  6601. },
  6602. {
  6603. "name": "symfony/event-dispatcher",
  6604. "version": "v5.4.45",
  6605. "source": {
  6606. "type": "git",
  6607. "url": "https://github.com/symfony/event-dispatcher.git",
  6608. "reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9"
  6609. },
  6610. "dist": {
  6611. "type": "zip",
  6612. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/72982eb416f61003e9bb6e91f8b3213600dcf9e9",
  6613. "reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9",
  6614. "shasum": "",
  6615. "mirrors": [
  6616. {
  6617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6618. "preferred": true
  6619. }
  6620. ]
  6621. },
  6622. "require": {
  6623. "php": ">=7.2.5",
  6624. "symfony/deprecation-contracts": "^2.1|^3",
  6625. "symfony/event-dispatcher-contracts": "^2|^3",
  6626. "symfony/polyfill-php80": "^1.16"
  6627. },
  6628. "conflict": {
  6629. "symfony/dependency-injection": "<4.4"
  6630. },
  6631. "provide": {
  6632. "psr/event-dispatcher-implementation": "1.0",
  6633. "symfony/event-dispatcher-implementation": "2.0"
  6634. },
  6635. "require-dev": {
  6636. "psr/log": "^1|^2|^3",
  6637. "symfony/config": "^4.4|^5.0|^6.0",
  6638. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6639. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6640. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6641. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6642. "symfony/service-contracts": "^1.1|^2|^3",
  6643. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  6644. },
  6645. "suggest": {
  6646. "symfony/dependency-injection": "",
  6647. "symfony/http-kernel": ""
  6648. },
  6649. "type": "library",
  6650. "autoload": {
  6651. "psr-4": {
  6652. "Symfony\\Component\\EventDispatcher\\": ""
  6653. },
  6654. "exclude-from-classmap": [
  6655. "/Tests/"
  6656. ]
  6657. },
  6658. "notification-url": "https://packagist.org/downloads/",
  6659. "license": [
  6660. "MIT"
  6661. ],
  6662. "authors": [
  6663. {
  6664. "name": "Fabien Potencier",
  6665. "email": "fabien@symfony.com"
  6666. },
  6667. {
  6668. "name": "Symfony Community",
  6669. "homepage": "https://symfony.com/contributors"
  6670. }
  6671. ],
  6672. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6673. "homepage": "https://symfony.com",
  6674. "support": {
  6675. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.45"
  6676. },
  6677. "funding": [
  6678. {
  6679. "url": "https://symfony.com/sponsor",
  6680. "type": "custom"
  6681. },
  6682. {
  6683. "url": "https://github.com/fabpot",
  6684. "type": "github"
  6685. },
  6686. {
  6687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6688. "type": "tidelift"
  6689. }
  6690. ],
  6691. "time": "2024-09-25T14:11:13+00:00"
  6692. },
  6693. {
  6694. "name": "symfony/event-dispatcher-contracts",
  6695. "version": "v2.5.4",
  6696. "source": {
  6697. "type": "git",
  6698. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6699. "reference": "e0fe3d79b516eb75126ac6fa4cbf19b79b08c99f"
  6700. },
  6701. "dist": {
  6702. "type": "zip",
  6703. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/e0fe3d79b516eb75126ac6fa4cbf19b79b08c99f",
  6704. "reference": "e0fe3d79b516eb75126ac6fa4cbf19b79b08c99f",
  6705. "shasum": "",
  6706. "mirrors": [
  6707. {
  6708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6709. "preferred": true
  6710. }
  6711. ]
  6712. },
  6713. "require": {
  6714. "php": ">=7.2.5",
  6715. "psr/event-dispatcher": "^1"
  6716. },
  6717. "suggest": {
  6718. "symfony/event-dispatcher-implementation": ""
  6719. },
  6720. "type": "library",
  6721. "extra": {
  6722. "thanks": {
  6723. "url": "https://github.com/symfony/contracts",
  6724. "name": "symfony/contracts"
  6725. },
  6726. "branch-alias": {
  6727. "dev-main": "2.5-dev"
  6728. }
  6729. },
  6730. "autoload": {
  6731. "psr-4": {
  6732. "Symfony\\Contracts\\EventDispatcher\\": ""
  6733. }
  6734. },
  6735. "notification-url": "https://packagist.org/downloads/",
  6736. "license": [
  6737. "MIT"
  6738. ],
  6739. "authors": [
  6740. {
  6741. "name": "Nicolas Grekas",
  6742. "email": "p@tchwork.com"
  6743. },
  6744. {
  6745. "name": "Symfony Community",
  6746. "homepage": "https://symfony.com/contributors"
  6747. }
  6748. ],
  6749. "description": "Generic abstractions related to dispatching event",
  6750. "homepage": "https://symfony.com",
  6751. "keywords": [
  6752. "abstractions",
  6753. "contracts",
  6754. "decoupling",
  6755. "interfaces",
  6756. "interoperability",
  6757. "standards"
  6758. ],
  6759. "support": {
  6760. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.4"
  6761. },
  6762. "funding": [
  6763. {
  6764. "url": "https://symfony.com/sponsor",
  6765. "type": "custom"
  6766. },
  6767. {
  6768. "url": "https://github.com/fabpot",
  6769. "type": "github"
  6770. },
  6771. {
  6772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6773. "type": "tidelift"
  6774. }
  6775. ],
  6776. "time": "2024-09-25T14:11:13+00:00"
  6777. },
  6778. {
  6779. "name": "symfony/finder",
  6780. "version": "v5.4.45",
  6781. "source": {
  6782. "type": "git",
  6783. "url": "https://github.com/symfony/finder.git",
  6784. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  6785. },
  6786. "dist": {
  6787. "type": "zip",
  6788. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  6789. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  6790. "shasum": "",
  6791. "mirrors": [
  6792. {
  6793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6794. "preferred": true
  6795. }
  6796. ]
  6797. },
  6798. "require": {
  6799. "php": ">=7.2.5",
  6800. "symfony/deprecation-contracts": "^2.1|^3",
  6801. "symfony/polyfill-php80": "^1.16"
  6802. },
  6803. "type": "library",
  6804. "autoload": {
  6805. "psr-4": {
  6806. "Symfony\\Component\\Finder\\": ""
  6807. },
  6808. "exclude-from-classmap": [
  6809. "/Tests/"
  6810. ]
  6811. },
  6812. "notification-url": "https://packagist.org/downloads/",
  6813. "license": [
  6814. "MIT"
  6815. ],
  6816. "authors": [
  6817. {
  6818. "name": "Fabien Potencier",
  6819. "email": "fabien@symfony.com"
  6820. },
  6821. {
  6822. "name": "Symfony Community",
  6823. "homepage": "https://symfony.com/contributors"
  6824. }
  6825. ],
  6826. "description": "Finds files and directories via an intuitive fluent interface",
  6827. "homepage": "https://symfony.com",
  6828. "support": {
  6829. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  6830. },
  6831. "funding": [
  6832. {
  6833. "url": "https://symfony.com/sponsor",
  6834. "type": "custom"
  6835. },
  6836. {
  6837. "url": "https://github.com/fabpot",
  6838. "type": "github"
  6839. },
  6840. {
  6841. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6842. "type": "tidelift"
  6843. }
  6844. ],
  6845. "time": "2024-09-28T13:32:08+00:00"
  6846. },
  6847. {
  6848. "name": "symfony/http-foundation",
  6849. "version": "v5.4.48",
  6850. "source": {
  6851. "type": "git",
  6852. "url": "https://github.com/symfony/http-foundation.git",
  6853. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341"
  6854. },
  6855. "dist": {
  6856. "type": "zip",
  6857. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f38b8af283b830e1363acd79e5bc3412d055341",
  6858. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341",
  6859. "shasum": "",
  6860. "mirrors": [
  6861. {
  6862. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6863. "preferred": true
  6864. }
  6865. ]
  6866. },
  6867. "require": {
  6868. "php": ">=7.2.5",
  6869. "symfony/deprecation-contracts": "^2.1|^3",
  6870. "symfony/polyfill-mbstring": "~1.1",
  6871. "symfony/polyfill-php80": "^1.16"
  6872. },
  6873. "require-dev": {
  6874. "predis/predis": "^1.0|^2.0",
  6875. "symfony/cache": "^4.4|^5.0|^6.0",
  6876. "symfony/dependency-injection": "^5.4|^6.0",
  6877. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6878. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6879. "symfony/mime": "^4.4|^5.0|^6.0",
  6880. "symfony/rate-limiter": "^5.2|^6.0"
  6881. },
  6882. "suggest": {
  6883. "symfony/mime": "To use the file extension guesser"
  6884. },
  6885. "type": "library",
  6886. "autoload": {
  6887. "psr-4": {
  6888. "Symfony\\Component\\HttpFoundation\\": ""
  6889. },
  6890. "exclude-from-classmap": [
  6891. "/Tests/"
  6892. ]
  6893. },
  6894. "notification-url": "https://packagist.org/downloads/",
  6895. "license": [
  6896. "MIT"
  6897. ],
  6898. "authors": [
  6899. {
  6900. "name": "Fabien Potencier",
  6901. "email": "fabien@symfony.com"
  6902. },
  6903. {
  6904. "name": "Symfony Community",
  6905. "homepage": "https://symfony.com/contributors"
  6906. }
  6907. ],
  6908. "description": "Defines an object-oriented layer for the HTTP specification",
  6909. "homepage": "https://symfony.com",
  6910. "support": {
  6911. "source": "https://github.com/symfony/http-foundation/tree/v5.4.48"
  6912. },
  6913. "funding": [
  6914. {
  6915. "url": "https://symfony.com/sponsor",
  6916. "type": "custom"
  6917. },
  6918. {
  6919. "url": "https://github.com/fabpot",
  6920. "type": "github"
  6921. },
  6922. {
  6923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6924. "type": "tidelift"
  6925. }
  6926. ],
  6927. "time": "2024-11-13T18:58:02+00:00"
  6928. },
  6929. {
  6930. "name": "symfony/http-kernel",
  6931. "version": "v5.4.48",
  6932. "source": {
  6933. "type": "git",
  6934. "url": "https://github.com/symfony/http-kernel.git",
  6935. "reference": "c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0"
  6936. },
  6937. "dist": {
  6938. "type": "zip",
  6939. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0",
  6940. "reference": "c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0",
  6941. "shasum": "",
  6942. "mirrors": [
  6943. {
  6944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6945. "preferred": true
  6946. }
  6947. ]
  6948. },
  6949. "require": {
  6950. "php": ">=7.2.5",
  6951. "psr/log": "^1|^2",
  6952. "symfony/deprecation-contracts": "^2.1|^3",
  6953. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6954. "symfony/event-dispatcher": "^5.0|^6.0",
  6955. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6956. "symfony/polyfill-ctype": "^1.8",
  6957. "symfony/polyfill-php73": "^1.9",
  6958. "symfony/polyfill-php80": "^1.16"
  6959. },
  6960. "conflict": {
  6961. "symfony/browser-kit": "<5.4",
  6962. "symfony/cache": "<5.0",
  6963. "symfony/config": "<5.0",
  6964. "symfony/console": "<4.4",
  6965. "symfony/dependency-injection": "<5.3",
  6966. "symfony/doctrine-bridge": "<5.0",
  6967. "symfony/form": "<5.0",
  6968. "symfony/http-client": "<5.0",
  6969. "symfony/mailer": "<5.0",
  6970. "symfony/messenger": "<5.0",
  6971. "symfony/translation": "<5.0",
  6972. "symfony/twig-bridge": "<5.0",
  6973. "symfony/validator": "<5.0",
  6974. "twig/twig": "<2.13"
  6975. },
  6976. "provide": {
  6977. "psr/log-implementation": "1.0|2.0"
  6978. },
  6979. "require-dev": {
  6980. "psr/cache": "^1.0|^2.0|^3.0",
  6981. "symfony/browser-kit": "^5.4|^6.0",
  6982. "symfony/config": "^5.0|^6.0",
  6983. "symfony/console": "^4.4|^5.0|^6.0",
  6984. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6985. "symfony/dependency-injection": "^5.3|^6.0",
  6986. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6987. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6988. "symfony/finder": "^4.4|^5.0|^6.0",
  6989. "symfony/http-client-contracts": "^1.1|^2|^3",
  6990. "symfony/process": "^4.4|^5.0|^6.0",
  6991. "symfony/routing": "^4.4|^5.0|^6.0",
  6992. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6993. "symfony/translation": "^4.4|^5.0|^6.0",
  6994. "symfony/translation-contracts": "^1.1|^2|^3",
  6995. "symfony/var-dumper": "^4.4.31|^5.4",
  6996. "twig/twig": "^2.13|^3.0.4"
  6997. },
  6998. "suggest": {
  6999. "symfony/browser-kit": "",
  7000. "symfony/config": "",
  7001. "symfony/console": "",
  7002. "symfony/dependency-injection": ""
  7003. },
  7004. "type": "library",
  7005. "autoload": {
  7006. "psr-4": {
  7007. "Symfony\\Component\\HttpKernel\\": ""
  7008. },
  7009. "exclude-from-classmap": [
  7010. "/Tests/"
  7011. ]
  7012. },
  7013. "notification-url": "https://packagist.org/downloads/",
  7014. "license": [
  7015. "MIT"
  7016. ],
  7017. "authors": [
  7018. {
  7019. "name": "Fabien Potencier",
  7020. "email": "fabien@symfony.com"
  7021. },
  7022. {
  7023. "name": "Symfony Community",
  7024. "homepage": "https://symfony.com/contributors"
  7025. }
  7026. ],
  7027. "description": "Provides a structured process for converting a Request into a Response",
  7028. "homepage": "https://symfony.com",
  7029. "support": {
  7030. "source": "https://github.com/symfony/http-kernel/tree/v5.4.48"
  7031. },
  7032. "funding": [
  7033. {
  7034. "url": "https://symfony.com/sponsor",
  7035. "type": "custom"
  7036. },
  7037. {
  7038. "url": "https://github.com/fabpot",
  7039. "type": "github"
  7040. },
  7041. {
  7042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7043. "type": "tidelift"
  7044. }
  7045. ],
  7046. "time": "2024-11-27T12:43:17+00:00"
  7047. },
  7048. {
  7049. "name": "symfony/mime",
  7050. "version": "v5.4.45",
  7051. "source": {
  7052. "type": "git",
  7053. "url": "https://github.com/symfony/mime.git",
  7054. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064"
  7055. },
  7056. "dist": {
  7057. "type": "zip",
  7058. "url": "https://api.github.com/repos/symfony/mime/zipball/8c1b9b3e5b52981551fc6044539af1d974e39064",
  7059. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064",
  7060. "shasum": "",
  7061. "mirrors": [
  7062. {
  7063. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7064. "preferred": true
  7065. }
  7066. ]
  7067. },
  7068. "require": {
  7069. "php": ">=7.2.5",
  7070. "symfony/deprecation-contracts": "^2.1|^3",
  7071. "symfony/polyfill-intl-idn": "^1.10",
  7072. "symfony/polyfill-mbstring": "^1.0",
  7073. "symfony/polyfill-php80": "^1.16"
  7074. },
  7075. "conflict": {
  7076. "egulias/email-validator": "~3.0.0",
  7077. "phpdocumentor/reflection-docblock": "<3.2.2",
  7078. "phpdocumentor/type-resolver": "<1.4.0",
  7079. "symfony/mailer": "<4.4",
  7080. "symfony/serializer": "<5.4.35|>=6,<6.3.12|>=6.4,<6.4.3"
  7081. },
  7082. "require-dev": {
  7083. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7084. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7085. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7086. "symfony/process": "^5.4|^6.4",
  7087. "symfony/property-access": "^4.4|^5.1|^6.0",
  7088. "symfony/property-info": "^4.4|^5.1|^6.0",
  7089. "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3"
  7090. },
  7091. "type": "library",
  7092. "autoload": {
  7093. "psr-4": {
  7094. "Symfony\\Component\\Mime\\": ""
  7095. },
  7096. "exclude-from-classmap": [
  7097. "/Tests/"
  7098. ]
  7099. },
  7100. "notification-url": "https://packagist.org/downloads/",
  7101. "license": [
  7102. "MIT"
  7103. ],
  7104. "authors": [
  7105. {
  7106. "name": "Fabien Potencier",
  7107. "email": "fabien@symfony.com"
  7108. },
  7109. {
  7110. "name": "Symfony Community",
  7111. "homepage": "https://symfony.com/contributors"
  7112. }
  7113. ],
  7114. "description": "Allows manipulating MIME messages",
  7115. "homepage": "https://symfony.com",
  7116. "keywords": [
  7117. "mime",
  7118. "mime-type"
  7119. ],
  7120. "support": {
  7121. "source": "https://github.com/symfony/mime/tree/v5.4.45"
  7122. },
  7123. "funding": [
  7124. {
  7125. "url": "https://symfony.com/sponsor",
  7126. "type": "custom"
  7127. },
  7128. {
  7129. "url": "https://github.com/fabpot",
  7130. "type": "github"
  7131. },
  7132. {
  7133. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7134. "type": "tidelift"
  7135. }
  7136. ],
  7137. "time": "2024-10-23T20:18:32+00:00"
  7138. },
  7139. {
  7140. "name": "symfony/polyfill-ctype",
  7141. "version": "v1.32.0",
  7142. "source": {
  7143. "type": "git",
  7144. "url": "https://github.com/symfony/polyfill-ctype.git",
  7145. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7146. },
  7147. "dist": {
  7148. "type": "zip",
  7149. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7150. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7151. "shasum": "",
  7152. "mirrors": [
  7153. {
  7154. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7155. "preferred": true
  7156. }
  7157. ]
  7158. },
  7159. "require": {
  7160. "php": ">=7.2"
  7161. },
  7162. "provide": {
  7163. "ext-ctype": "*"
  7164. },
  7165. "suggest": {
  7166. "ext-ctype": "For best performance"
  7167. },
  7168. "type": "library",
  7169. "extra": {
  7170. "thanks": {
  7171. "url": "https://github.com/symfony/polyfill",
  7172. "name": "symfony/polyfill"
  7173. }
  7174. },
  7175. "autoload": {
  7176. "files": [
  7177. "bootstrap.php"
  7178. ],
  7179. "psr-4": {
  7180. "Symfony\\Polyfill\\Ctype\\": ""
  7181. }
  7182. },
  7183. "notification-url": "https://packagist.org/downloads/",
  7184. "license": [
  7185. "MIT"
  7186. ],
  7187. "authors": [
  7188. {
  7189. "name": "Gert de Pagter",
  7190. "email": "BackEndTea@gmail.com"
  7191. },
  7192. {
  7193. "name": "Symfony Community",
  7194. "homepage": "https://symfony.com/contributors"
  7195. }
  7196. ],
  7197. "description": "Symfony polyfill for ctype functions",
  7198. "homepage": "https://symfony.com",
  7199. "keywords": [
  7200. "compatibility",
  7201. "ctype",
  7202. "polyfill",
  7203. "portable"
  7204. ],
  7205. "support": {
  7206. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  7207. },
  7208. "funding": [
  7209. {
  7210. "url": "https://symfony.com/sponsor",
  7211. "type": "custom"
  7212. },
  7213. {
  7214. "url": "https://github.com/fabpot",
  7215. "type": "github"
  7216. },
  7217. {
  7218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7219. "type": "tidelift"
  7220. }
  7221. ],
  7222. "time": "2024-09-09T11:45:10+00:00"
  7223. },
  7224. {
  7225. "name": "symfony/polyfill-iconv",
  7226. "version": "v1.32.0",
  7227. "source": {
  7228. "type": "git",
  7229. "url": "https://github.com/symfony/polyfill-iconv.git",
  7230. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  7231. },
  7232. "dist": {
  7233. "type": "zip",
  7234. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  7235. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  7236. "shasum": "",
  7237. "mirrors": [
  7238. {
  7239. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7240. "preferred": true
  7241. }
  7242. ]
  7243. },
  7244. "require": {
  7245. "php": ">=7.2"
  7246. },
  7247. "provide": {
  7248. "ext-iconv": "*"
  7249. },
  7250. "suggest": {
  7251. "ext-iconv": "For best performance"
  7252. },
  7253. "type": "library",
  7254. "extra": {
  7255. "thanks": {
  7256. "url": "https://github.com/symfony/polyfill",
  7257. "name": "symfony/polyfill"
  7258. }
  7259. },
  7260. "autoload": {
  7261. "files": [
  7262. "bootstrap.php"
  7263. ],
  7264. "psr-4": {
  7265. "Symfony\\Polyfill\\Iconv\\": ""
  7266. }
  7267. },
  7268. "notification-url": "https://packagist.org/downloads/",
  7269. "license": [
  7270. "MIT"
  7271. ],
  7272. "authors": [
  7273. {
  7274. "name": "Nicolas Grekas",
  7275. "email": "p@tchwork.com"
  7276. },
  7277. {
  7278. "name": "Symfony Community",
  7279. "homepage": "https://symfony.com/contributors"
  7280. }
  7281. ],
  7282. "description": "Symfony polyfill for the Iconv extension",
  7283. "homepage": "https://symfony.com",
  7284. "keywords": [
  7285. "compatibility",
  7286. "iconv",
  7287. "polyfill",
  7288. "portable",
  7289. "shim"
  7290. ],
  7291. "support": {
  7292. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  7293. },
  7294. "funding": [
  7295. {
  7296. "url": "https://symfony.com/sponsor",
  7297. "type": "custom"
  7298. },
  7299. {
  7300. "url": "https://github.com/fabpot",
  7301. "type": "github"
  7302. },
  7303. {
  7304. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7305. "type": "tidelift"
  7306. }
  7307. ],
  7308. "time": "2024-09-17T14:58:18+00:00"
  7309. },
  7310. {
  7311. "name": "symfony/polyfill-intl-grapheme",
  7312. "version": "v1.32.0",
  7313. "source": {
  7314. "type": "git",
  7315. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7316. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7317. },
  7318. "dist": {
  7319. "type": "zip",
  7320. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7321. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7322. "shasum": "",
  7323. "mirrors": [
  7324. {
  7325. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7326. "preferred": true
  7327. }
  7328. ]
  7329. },
  7330. "require": {
  7331. "php": ">=7.2"
  7332. },
  7333. "suggest": {
  7334. "ext-intl": "For best performance"
  7335. },
  7336. "type": "library",
  7337. "extra": {
  7338. "thanks": {
  7339. "url": "https://github.com/symfony/polyfill",
  7340. "name": "symfony/polyfill"
  7341. }
  7342. },
  7343. "autoload": {
  7344. "files": [
  7345. "bootstrap.php"
  7346. ],
  7347. "psr-4": {
  7348. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7349. }
  7350. },
  7351. "notification-url": "https://packagist.org/downloads/",
  7352. "license": [
  7353. "MIT"
  7354. ],
  7355. "authors": [
  7356. {
  7357. "name": "Nicolas Grekas",
  7358. "email": "p@tchwork.com"
  7359. },
  7360. {
  7361. "name": "Symfony Community",
  7362. "homepage": "https://symfony.com/contributors"
  7363. }
  7364. ],
  7365. "description": "Symfony polyfill for intl's grapheme_* functions",
  7366. "homepage": "https://symfony.com",
  7367. "keywords": [
  7368. "compatibility",
  7369. "grapheme",
  7370. "intl",
  7371. "polyfill",
  7372. "portable",
  7373. "shim"
  7374. ],
  7375. "support": {
  7376. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  7377. },
  7378. "funding": [
  7379. {
  7380. "url": "https://symfony.com/sponsor",
  7381. "type": "custom"
  7382. },
  7383. {
  7384. "url": "https://github.com/fabpot",
  7385. "type": "github"
  7386. },
  7387. {
  7388. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7389. "type": "tidelift"
  7390. }
  7391. ],
  7392. "time": "2024-09-09T11:45:10+00:00"
  7393. },
  7394. {
  7395. "name": "symfony/polyfill-intl-idn",
  7396. "version": "v1.32.0",
  7397. "source": {
  7398. "type": "git",
  7399. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7400. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  7401. },
  7402. "dist": {
  7403. "type": "zip",
  7404. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  7405. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  7406. "shasum": "",
  7407. "mirrors": [
  7408. {
  7409. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7410. "preferred": true
  7411. }
  7412. ]
  7413. },
  7414. "require": {
  7415. "php": ">=7.2",
  7416. "symfony/polyfill-intl-normalizer": "^1.10"
  7417. },
  7418. "suggest": {
  7419. "ext-intl": "For best performance"
  7420. },
  7421. "type": "library",
  7422. "extra": {
  7423. "thanks": {
  7424. "url": "https://github.com/symfony/polyfill",
  7425. "name": "symfony/polyfill"
  7426. }
  7427. },
  7428. "autoload": {
  7429. "files": [
  7430. "bootstrap.php"
  7431. ],
  7432. "psr-4": {
  7433. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7434. }
  7435. },
  7436. "notification-url": "https://packagist.org/downloads/",
  7437. "license": [
  7438. "MIT"
  7439. ],
  7440. "authors": [
  7441. {
  7442. "name": "Laurent Bassin",
  7443. "email": "laurent@bassin.info"
  7444. },
  7445. {
  7446. "name": "Trevor Rowbotham",
  7447. "email": "trevor.rowbotham@pm.me"
  7448. },
  7449. {
  7450. "name": "Symfony Community",
  7451. "homepage": "https://symfony.com/contributors"
  7452. }
  7453. ],
  7454. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7455. "homepage": "https://symfony.com",
  7456. "keywords": [
  7457. "compatibility",
  7458. "idn",
  7459. "intl",
  7460. "polyfill",
  7461. "portable",
  7462. "shim"
  7463. ],
  7464. "support": {
  7465. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  7466. },
  7467. "funding": [
  7468. {
  7469. "url": "https://symfony.com/sponsor",
  7470. "type": "custom"
  7471. },
  7472. {
  7473. "url": "https://github.com/fabpot",
  7474. "type": "github"
  7475. },
  7476. {
  7477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7478. "type": "tidelift"
  7479. }
  7480. ],
  7481. "time": "2024-09-10T14:38:51+00:00"
  7482. },
  7483. {
  7484. "name": "symfony/polyfill-intl-normalizer",
  7485. "version": "v1.32.0",
  7486. "source": {
  7487. "type": "git",
  7488. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7489. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7490. },
  7491. "dist": {
  7492. "type": "zip",
  7493. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7494. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7495. "shasum": "",
  7496. "mirrors": [
  7497. {
  7498. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7499. "preferred": true
  7500. }
  7501. ]
  7502. },
  7503. "require": {
  7504. "php": ">=7.2"
  7505. },
  7506. "suggest": {
  7507. "ext-intl": "For best performance"
  7508. },
  7509. "type": "library",
  7510. "extra": {
  7511. "thanks": {
  7512. "url": "https://github.com/symfony/polyfill",
  7513. "name": "symfony/polyfill"
  7514. }
  7515. },
  7516. "autoload": {
  7517. "files": [
  7518. "bootstrap.php"
  7519. ],
  7520. "psr-4": {
  7521. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7522. },
  7523. "classmap": [
  7524. "Resources/stubs"
  7525. ]
  7526. },
  7527. "notification-url": "https://packagist.org/downloads/",
  7528. "license": [
  7529. "MIT"
  7530. ],
  7531. "authors": [
  7532. {
  7533. "name": "Nicolas Grekas",
  7534. "email": "p@tchwork.com"
  7535. },
  7536. {
  7537. "name": "Symfony Community",
  7538. "homepage": "https://symfony.com/contributors"
  7539. }
  7540. ],
  7541. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7542. "homepage": "https://symfony.com",
  7543. "keywords": [
  7544. "compatibility",
  7545. "intl",
  7546. "normalizer",
  7547. "polyfill",
  7548. "portable",
  7549. "shim"
  7550. ],
  7551. "support": {
  7552. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  7553. },
  7554. "funding": [
  7555. {
  7556. "url": "https://symfony.com/sponsor",
  7557. "type": "custom"
  7558. },
  7559. {
  7560. "url": "https://github.com/fabpot",
  7561. "type": "github"
  7562. },
  7563. {
  7564. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7565. "type": "tidelift"
  7566. }
  7567. ],
  7568. "time": "2024-09-09T11:45:10+00:00"
  7569. },
  7570. {
  7571. "name": "symfony/polyfill-mbstring",
  7572. "version": "v1.32.0",
  7573. "source": {
  7574. "type": "git",
  7575. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7576. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  7577. },
  7578. "dist": {
  7579. "type": "zip",
  7580. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  7581. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  7582. "shasum": "",
  7583. "mirrors": [
  7584. {
  7585. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7586. "preferred": true
  7587. }
  7588. ]
  7589. },
  7590. "require": {
  7591. "ext-iconv": "*",
  7592. "php": ">=7.2"
  7593. },
  7594. "provide": {
  7595. "ext-mbstring": "*"
  7596. },
  7597. "suggest": {
  7598. "ext-mbstring": "For best performance"
  7599. },
  7600. "type": "library",
  7601. "extra": {
  7602. "thanks": {
  7603. "url": "https://github.com/symfony/polyfill",
  7604. "name": "symfony/polyfill"
  7605. }
  7606. },
  7607. "autoload": {
  7608. "files": [
  7609. "bootstrap.php"
  7610. ],
  7611. "psr-4": {
  7612. "Symfony\\Polyfill\\Mbstring\\": ""
  7613. }
  7614. },
  7615. "notification-url": "https://packagist.org/downloads/",
  7616. "license": [
  7617. "MIT"
  7618. ],
  7619. "authors": [
  7620. {
  7621. "name": "Nicolas Grekas",
  7622. "email": "p@tchwork.com"
  7623. },
  7624. {
  7625. "name": "Symfony Community",
  7626. "homepage": "https://symfony.com/contributors"
  7627. }
  7628. ],
  7629. "description": "Symfony polyfill for the Mbstring extension",
  7630. "homepage": "https://symfony.com",
  7631. "keywords": [
  7632. "compatibility",
  7633. "mbstring",
  7634. "polyfill",
  7635. "portable",
  7636. "shim"
  7637. ],
  7638. "support": {
  7639. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  7640. },
  7641. "funding": [
  7642. {
  7643. "url": "https://symfony.com/sponsor",
  7644. "type": "custom"
  7645. },
  7646. {
  7647. "url": "https://github.com/fabpot",
  7648. "type": "github"
  7649. },
  7650. {
  7651. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7652. "type": "tidelift"
  7653. }
  7654. ],
  7655. "time": "2024-12-23T08:48:59+00:00"
  7656. },
  7657. {
  7658. "name": "symfony/polyfill-php73",
  7659. "version": "v1.32.0",
  7660. "source": {
  7661. "type": "git",
  7662. "url": "https://github.com/symfony/polyfill-php73.git",
  7663. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  7664. },
  7665. "dist": {
  7666. "type": "zip",
  7667. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  7668. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  7669. "shasum": "",
  7670. "mirrors": [
  7671. {
  7672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7673. "preferred": true
  7674. }
  7675. ]
  7676. },
  7677. "require": {
  7678. "php": ">=7.2"
  7679. },
  7680. "type": "library",
  7681. "extra": {
  7682. "thanks": {
  7683. "url": "https://github.com/symfony/polyfill",
  7684. "name": "symfony/polyfill"
  7685. }
  7686. },
  7687. "autoload": {
  7688. "files": [
  7689. "bootstrap.php"
  7690. ],
  7691. "psr-4": {
  7692. "Symfony\\Polyfill\\Php73\\": ""
  7693. },
  7694. "classmap": [
  7695. "Resources/stubs"
  7696. ]
  7697. },
  7698. "notification-url": "https://packagist.org/downloads/",
  7699. "license": [
  7700. "MIT"
  7701. ],
  7702. "authors": [
  7703. {
  7704. "name": "Nicolas Grekas",
  7705. "email": "p@tchwork.com"
  7706. },
  7707. {
  7708. "name": "Symfony Community",
  7709. "homepage": "https://symfony.com/contributors"
  7710. }
  7711. ],
  7712. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7713. "homepage": "https://symfony.com",
  7714. "keywords": [
  7715. "compatibility",
  7716. "polyfill",
  7717. "portable",
  7718. "shim"
  7719. ],
  7720. "support": {
  7721. "source": "https://github.com/symfony/polyfill-php73/tree/v1.32.0"
  7722. },
  7723. "funding": [
  7724. {
  7725. "url": "https://symfony.com/sponsor",
  7726. "type": "custom"
  7727. },
  7728. {
  7729. "url": "https://github.com/fabpot",
  7730. "type": "github"
  7731. },
  7732. {
  7733. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7734. "type": "tidelift"
  7735. }
  7736. ],
  7737. "time": "2024-09-09T11:45:10+00:00"
  7738. },
  7739. {
  7740. "name": "symfony/polyfill-php80",
  7741. "version": "v1.32.0",
  7742. "source": {
  7743. "type": "git",
  7744. "url": "https://github.com/symfony/polyfill-php80.git",
  7745. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  7746. },
  7747. "dist": {
  7748. "type": "zip",
  7749. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  7750. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  7751. "shasum": "",
  7752. "mirrors": [
  7753. {
  7754. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7755. "preferred": true
  7756. }
  7757. ]
  7758. },
  7759. "require": {
  7760. "php": ">=7.2"
  7761. },
  7762. "type": "library",
  7763. "extra": {
  7764. "thanks": {
  7765. "url": "https://github.com/symfony/polyfill",
  7766. "name": "symfony/polyfill"
  7767. }
  7768. },
  7769. "autoload": {
  7770. "files": [
  7771. "bootstrap.php"
  7772. ],
  7773. "psr-4": {
  7774. "Symfony\\Polyfill\\Php80\\": ""
  7775. },
  7776. "classmap": [
  7777. "Resources/stubs"
  7778. ]
  7779. },
  7780. "notification-url": "https://packagist.org/downloads/",
  7781. "license": [
  7782. "MIT"
  7783. ],
  7784. "authors": [
  7785. {
  7786. "name": "Ion Bazan",
  7787. "email": "ion.bazan@gmail.com"
  7788. },
  7789. {
  7790. "name": "Nicolas Grekas",
  7791. "email": "p@tchwork.com"
  7792. },
  7793. {
  7794. "name": "Symfony Community",
  7795. "homepage": "https://symfony.com/contributors"
  7796. }
  7797. ],
  7798. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7799. "homepage": "https://symfony.com",
  7800. "keywords": [
  7801. "compatibility",
  7802. "polyfill",
  7803. "portable",
  7804. "shim"
  7805. ],
  7806. "support": {
  7807. "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
  7808. },
  7809. "funding": [
  7810. {
  7811. "url": "https://symfony.com/sponsor",
  7812. "type": "custom"
  7813. },
  7814. {
  7815. "url": "https://github.com/fabpot",
  7816. "type": "github"
  7817. },
  7818. {
  7819. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7820. "type": "tidelift"
  7821. }
  7822. ],
  7823. "time": "2025-01-02T08:10:11+00:00"
  7824. },
  7825. {
  7826. "name": "symfony/polyfill-php81",
  7827. "version": "v1.32.0",
  7828. "source": {
  7829. "type": "git",
  7830. "url": "https://github.com/symfony/polyfill-php81.git",
  7831. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  7832. },
  7833. "dist": {
  7834. "type": "zip",
  7835. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7836. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7837. "shasum": "",
  7838. "mirrors": [
  7839. {
  7840. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7841. "preferred": true
  7842. }
  7843. ]
  7844. },
  7845. "require": {
  7846. "php": ">=7.2"
  7847. },
  7848. "type": "library",
  7849. "extra": {
  7850. "thanks": {
  7851. "url": "https://github.com/symfony/polyfill",
  7852. "name": "symfony/polyfill"
  7853. }
  7854. },
  7855. "autoload": {
  7856. "files": [
  7857. "bootstrap.php"
  7858. ],
  7859. "psr-4": {
  7860. "Symfony\\Polyfill\\Php81\\": ""
  7861. },
  7862. "classmap": [
  7863. "Resources/stubs"
  7864. ]
  7865. },
  7866. "notification-url": "https://packagist.org/downloads/",
  7867. "license": [
  7868. "MIT"
  7869. ],
  7870. "authors": [
  7871. {
  7872. "name": "Nicolas Grekas",
  7873. "email": "p@tchwork.com"
  7874. },
  7875. {
  7876. "name": "Symfony Community",
  7877. "homepage": "https://symfony.com/contributors"
  7878. }
  7879. ],
  7880. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7881. "homepage": "https://symfony.com",
  7882. "keywords": [
  7883. "compatibility",
  7884. "polyfill",
  7885. "portable",
  7886. "shim"
  7887. ],
  7888. "support": {
  7889. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  7890. },
  7891. "funding": [
  7892. {
  7893. "url": "https://symfony.com/sponsor",
  7894. "type": "custom"
  7895. },
  7896. {
  7897. "url": "https://github.com/fabpot",
  7898. "type": "github"
  7899. },
  7900. {
  7901. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7902. "type": "tidelift"
  7903. }
  7904. ],
  7905. "time": "2024-09-09T11:45:10+00:00"
  7906. },
  7907. {
  7908. "name": "symfony/process",
  7909. "version": "v5.4.47",
  7910. "source": {
  7911. "type": "git",
  7912. "url": "https://github.com/symfony/process.git",
  7913. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d"
  7914. },
  7915. "dist": {
  7916. "type": "zip",
  7917. "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d",
  7918. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d",
  7919. "shasum": "",
  7920. "mirrors": [
  7921. {
  7922. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7923. "preferred": true
  7924. }
  7925. ]
  7926. },
  7927. "require": {
  7928. "php": ">=7.2.5",
  7929. "symfony/polyfill-php80": "^1.16"
  7930. },
  7931. "type": "library",
  7932. "autoload": {
  7933. "psr-4": {
  7934. "Symfony\\Component\\Process\\": ""
  7935. },
  7936. "exclude-from-classmap": [
  7937. "/Tests/"
  7938. ]
  7939. },
  7940. "notification-url": "https://packagist.org/downloads/",
  7941. "license": [
  7942. "MIT"
  7943. ],
  7944. "authors": [
  7945. {
  7946. "name": "Fabien Potencier",
  7947. "email": "fabien@symfony.com"
  7948. },
  7949. {
  7950. "name": "Symfony Community",
  7951. "homepage": "https://symfony.com/contributors"
  7952. }
  7953. ],
  7954. "description": "Executes commands in sub-processes",
  7955. "homepage": "https://symfony.com",
  7956. "support": {
  7957. "source": "https://github.com/symfony/process/tree/v5.4.47"
  7958. },
  7959. "funding": [
  7960. {
  7961. "url": "https://symfony.com/sponsor",
  7962. "type": "custom"
  7963. },
  7964. {
  7965. "url": "https://github.com/fabpot",
  7966. "type": "github"
  7967. },
  7968. {
  7969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7970. "type": "tidelift"
  7971. }
  7972. ],
  7973. "time": "2024-11-06T11:36:42+00:00"
  7974. },
  7975. {
  7976. "name": "symfony/psr-http-message-bridge",
  7977. "version": "v2.3.1",
  7978. "source": {
  7979. "type": "git",
  7980. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7981. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  7982. },
  7983. "dist": {
  7984. "type": "zip",
  7985. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  7986. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  7987. "shasum": "",
  7988. "mirrors": [
  7989. {
  7990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7991. "preferred": true
  7992. }
  7993. ]
  7994. },
  7995. "require": {
  7996. "php": ">=7.2.5",
  7997. "psr/http-message": "^1.0 || ^2.0",
  7998. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  7999. "symfony/http-foundation": "^5.4 || ^6.0"
  8000. },
  8001. "require-dev": {
  8002. "nyholm/psr7": "^1.1",
  8003. "psr/log": "^1.1 || ^2 || ^3",
  8004. "symfony/browser-kit": "^5.4 || ^6.0",
  8005. "symfony/config": "^5.4 || ^6.0",
  8006. "symfony/event-dispatcher": "^5.4 || ^6.0",
  8007. "symfony/framework-bundle": "^5.4 || ^6.0",
  8008. "symfony/http-kernel": "^5.4 || ^6.0",
  8009. "symfony/phpunit-bridge": "^6.2"
  8010. },
  8011. "suggest": {
  8012. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  8013. },
  8014. "type": "symfony-bridge",
  8015. "extra": {
  8016. "branch-alias": {
  8017. "dev-main": "2.3-dev"
  8018. }
  8019. },
  8020. "autoload": {
  8021. "psr-4": {
  8022. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8023. },
  8024. "exclude-from-classmap": [
  8025. "/Tests/"
  8026. ]
  8027. },
  8028. "notification-url": "https://packagist.org/downloads/",
  8029. "license": [
  8030. "MIT"
  8031. ],
  8032. "authors": [
  8033. {
  8034. "name": "Fabien Potencier",
  8035. "email": "fabien@symfony.com"
  8036. },
  8037. {
  8038. "name": "Symfony Community",
  8039. "homepage": "http://symfony.com/contributors"
  8040. }
  8041. ],
  8042. "description": "PSR HTTP message bridge",
  8043. "homepage": "http://symfony.com",
  8044. "keywords": [
  8045. "http",
  8046. "http-message",
  8047. "psr-17",
  8048. "psr-7"
  8049. ],
  8050. "support": {
  8051. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  8052. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  8053. },
  8054. "funding": [
  8055. {
  8056. "url": "https://symfony.com/sponsor",
  8057. "type": "custom"
  8058. },
  8059. {
  8060. "url": "https://github.com/fabpot",
  8061. "type": "github"
  8062. },
  8063. {
  8064. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8065. "type": "tidelift"
  8066. }
  8067. ],
  8068. "time": "2023-07-26T11:53:26+00:00"
  8069. },
  8070. {
  8071. "name": "symfony/routing",
  8072. "version": "v5.4.48",
  8073. "source": {
  8074. "type": "git",
  8075. "url": "https://github.com/symfony/routing.git",
  8076. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1"
  8077. },
  8078. "dist": {
  8079. "type": "zip",
  8080. "url": "https://api.github.com/repos/symfony/routing/zipball/dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  8081. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  8082. "shasum": "",
  8083. "mirrors": [
  8084. {
  8085. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8086. "preferred": true
  8087. }
  8088. ]
  8089. },
  8090. "require": {
  8091. "php": ">=7.2.5",
  8092. "symfony/deprecation-contracts": "^2.1|^3",
  8093. "symfony/polyfill-php80": "^1.16"
  8094. },
  8095. "conflict": {
  8096. "doctrine/annotations": "<1.12",
  8097. "symfony/config": "<5.3",
  8098. "symfony/dependency-injection": "<4.4",
  8099. "symfony/yaml": "<4.4"
  8100. },
  8101. "require-dev": {
  8102. "doctrine/annotations": "^1.12|^2",
  8103. "psr/log": "^1|^2|^3",
  8104. "symfony/config": "^5.3|^6.0",
  8105. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  8106. "symfony/expression-language": "^4.4|^5.0|^6.0",
  8107. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  8108. "symfony/yaml": "^4.4|^5.0|^6.0"
  8109. },
  8110. "suggest": {
  8111. "symfony/config": "For using the all-in-one router or any loader",
  8112. "symfony/expression-language": "For using expression matching",
  8113. "symfony/http-foundation": "For using a Symfony Request object",
  8114. "symfony/yaml": "For using the YAML loader"
  8115. },
  8116. "type": "library",
  8117. "autoload": {
  8118. "psr-4": {
  8119. "Symfony\\Component\\Routing\\": ""
  8120. },
  8121. "exclude-from-classmap": [
  8122. "/Tests/"
  8123. ]
  8124. },
  8125. "notification-url": "https://packagist.org/downloads/",
  8126. "license": [
  8127. "MIT"
  8128. ],
  8129. "authors": [
  8130. {
  8131. "name": "Fabien Potencier",
  8132. "email": "fabien@symfony.com"
  8133. },
  8134. {
  8135. "name": "Symfony Community",
  8136. "homepage": "https://symfony.com/contributors"
  8137. }
  8138. ],
  8139. "description": "Maps an HTTP request to a set of configuration variables",
  8140. "homepage": "https://symfony.com",
  8141. "keywords": [
  8142. "router",
  8143. "routing",
  8144. "uri",
  8145. "url"
  8146. ],
  8147. "support": {
  8148. "source": "https://github.com/symfony/routing/tree/v5.4.48"
  8149. },
  8150. "funding": [
  8151. {
  8152. "url": "https://symfony.com/sponsor",
  8153. "type": "custom"
  8154. },
  8155. {
  8156. "url": "https://github.com/fabpot",
  8157. "type": "github"
  8158. },
  8159. {
  8160. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8161. "type": "tidelift"
  8162. }
  8163. ],
  8164. "time": "2024-11-12T18:20:21+00:00"
  8165. },
  8166. {
  8167. "name": "symfony/service-contracts",
  8168. "version": "v2.5.4",
  8169. "source": {
  8170. "type": "git",
  8171. "url": "https://github.com/symfony/service-contracts.git",
  8172. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300"
  8173. },
  8174. "dist": {
  8175. "type": "zip",
  8176. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300",
  8177. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300",
  8178. "shasum": "",
  8179. "mirrors": [
  8180. {
  8181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8182. "preferred": true
  8183. }
  8184. ]
  8185. },
  8186. "require": {
  8187. "php": ">=7.2.5",
  8188. "psr/container": "^1.1",
  8189. "symfony/deprecation-contracts": "^2.1|^3"
  8190. },
  8191. "conflict": {
  8192. "ext-psr": "<1.1|>=2"
  8193. },
  8194. "suggest": {
  8195. "symfony/service-implementation": ""
  8196. },
  8197. "type": "library",
  8198. "extra": {
  8199. "thanks": {
  8200. "url": "https://github.com/symfony/contracts",
  8201. "name": "symfony/contracts"
  8202. },
  8203. "branch-alias": {
  8204. "dev-main": "2.5-dev"
  8205. }
  8206. },
  8207. "autoload": {
  8208. "psr-4": {
  8209. "Symfony\\Contracts\\Service\\": ""
  8210. }
  8211. },
  8212. "notification-url": "https://packagist.org/downloads/",
  8213. "license": [
  8214. "MIT"
  8215. ],
  8216. "authors": [
  8217. {
  8218. "name": "Nicolas Grekas",
  8219. "email": "p@tchwork.com"
  8220. },
  8221. {
  8222. "name": "Symfony Community",
  8223. "homepage": "https://symfony.com/contributors"
  8224. }
  8225. ],
  8226. "description": "Generic abstractions related to writing services",
  8227. "homepage": "https://symfony.com",
  8228. "keywords": [
  8229. "abstractions",
  8230. "contracts",
  8231. "decoupling",
  8232. "interfaces",
  8233. "interoperability",
  8234. "standards"
  8235. ],
  8236. "support": {
  8237. "source": "https://github.com/symfony/service-contracts/tree/v2.5.4"
  8238. },
  8239. "funding": [
  8240. {
  8241. "url": "https://symfony.com/sponsor",
  8242. "type": "custom"
  8243. },
  8244. {
  8245. "url": "https://github.com/fabpot",
  8246. "type": "github"
  8247. },
  8248. {
  8249. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8250. "type": "tidelift"
  8251. }
  8252. ],
  8253. "time": "2024-09-25T14:11:13+00:00"
  8254. },
  8255. {
  8256. "name": "symfony/string",
  8257. "version": "v5.4.47",
  8258. "source": {
  8259. "type": "git",
  8260. "url": "https://github.com/symfony/string.git",
  8261. "reference": "136ca7d72f72b599f2631aca474a4f8e26719799"
  8262. },
  8263. "dist": {
  8264. "type": "zip",
  8265. "url": "https://api.github.com/repos/symfony/string/zipball/136ca7d72f72b599f2631aca474a4f8e26719799",
  8266. "reference": "136ca7d72f72b599f2631aca474a4f8e26719799",
  8267. "shasum": "",
  8268. "mirrors": [
  8269. {
  8270. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8271. "preferred": true
  8272. }
  8273. ]
  8274. },
  8275. "require": {
  8276. "php": ">=7.2.5",
  8277. "symfony/polyfill-ctype": "~1.8",
  8278. "symfony/polyfill-intl-grapheme": "~1.0",
  8279. "symfony/polyfill-intl-normalizer": "~1.0",
  8280. "symfony/polyfill-mbstring": "~1.0",
  8281. "symfony/polyfill-php80": "~1.15"
  8282. },
  8283. "conflict": {
  8284. "symfony/translation-contracts": ">=3.0"
  8285. },
  8286. "require-dev": {
  8287. "symfony/error-handler": "^4.4|^5.0|^6.0",
  8288. "symfony/http-client": "^4.4|^5.0|^6.0",
  8289. "symfony/translation-contracts": "^1.1|^2",
  8290. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  8291. },
  8292. "type": "library",
  8293. "autoload": {
  8294. "files": [
  8295. "Resources/functions.php"
  8296. ],
  8297. "psr-4": {
  8298. "Symfony\\Component\\String\\": ""
  8299. },
  8300. "exclude-from-classmap": [
  8301. "/Tests/"
  8302. ]
  8303. },
  8304. "notification-url": "https://packagist.org/downloads/",
  8305. "license": [
  8306. "MIT"
  8307. ],
  8308. "authors": [
  8309. {
  8310. "name": "Nicolas Grekas",
  8311. "email": "p@tchwork.com"
  8312. },
  8313. {
  8314. "name": "Symfony Community",
  8315. "homepage": "https://symfony.com/contributors"
  8316. }
  8317. ],
  8318. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8319. "homepage": "https://symfony.com",
  8320. "keywords": [
  8321. "grapheme",
  8322. "i18n",
  8323. "string",
  8324. "unicode",
  8325. "utf-8",
  8326. "utf8"
  8327. ],
  8328. "support": {
  8329. "source": "https://github.com/symfony/string/tree/v5.4.47"
  8330. },
  8331. "funding": [
  8332. {
  8333. "url": "https://symfony.com/sponsor",
  8334. "type": "custom"
  8335. },
  8336. {
  8337. "url": "https://github.com/fabpot",
  8338. "type": "github"
  8339. },
  8340. {
  8341. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8342. "type": "tidelift"
  8343. }
  8344. ],
  8345. "time": "2024-11-10T20:33:58+00:00"
  8346. },
  8347. {
  8348. "name": "symfony/translation",
  8349. "version": "v5.4.45",
  8350. "source": {
  8351. "type": "git",
  8352. "url": "https://github.com/symfony/translation.git",
  8353. "reference": "98f26acc99341ca4bab345fb14d7b1d7cb825bed"
  8354. },
  8355. "dist": {
  8356. "type": "zip",
  8357. "url": "https://api.github.com/repos/symfony/translation/zipball/98f26acc99341ca4bab345fb14d7b1d7cb825bed",
  8358. "reference": "98f26acc99341ca4bab345fb14d7b1d7cb825bed",
  8359. "shasum": "",
  8360. "mirrors": [
  8361. {
  8362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8363. "preferred": true
  8364. }
  8365. ]
  8366. },
  8367. "require": {
  8368. "php": ">=7.2.5",
  8369. "symfony/deprecation-contracts": "^2.1|^3",
  8370. "symfony/polyfill-mbstring": "~1.0",
  8371. "symfony/polyfill-php80": "^1.16",
  8372. "symfony/translation-contracts": "^2.3"
  8373. },
  8374. "conflict": {
  8375. "symfony/config": "<4.4",
  8376. "symfony/console": "<5.3",
  8377. "symfony/dependency-injection": "<5.0",
  8378. "symfony/http-kernel": "<5.0",
  8379. "symfony/twig-bundle": "<5.0",
  8380. "symfony/yaml": "<4.4"
  8381. },
  8382. "provide": {
  8383. "symfony/translation-implementation": "2.3"
  8384. },
  8385. "require-dev": {
  8386. "psr/log": "^1|^2|^3",
  8387. "symfony/config": "^4.4|^5.0|^6.0",
  8388. "symfony/console": "^5.4|^6.0",
  8389. "symfony/dependency-injection": "^5.0|^6.0",
  8390. "symfony/finder": "^4.4|^5.0|^6.0",
  8391. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  8392. "symfony/http-kernel": "^5.0|^6.0",
  8393. "symfony/intl": "^4.4|^5.0|^6.0",
  8394. "symfony/polyfill-intl-icu": "^1.21",
  8395. "symfony/service-contracts": "^1.1.2|^2|^3",
  8396. "symfony/yaml": "^4.4|^5.0|^6.0"
  8397. },
  8398. "suggest": {
  8399. "psr/log-implementation": "To use logging capability in translator",
  8400. "symfony/config": "",
  8401. "symfony/yaml": ""
  8402. },
  8403. "type": "library",
  8404. "autoload": {
  8405. "files": [
  8406. "Resources/functions.php"
  8407. ],
  8408. "psr-4": {
  8409. "Symfony\\Component\\Translation\\": ""
  8410. },
  8411. "exclude-from-classmap": [
  8412. "/Tests/"
  8413. ]
  8414. },
  8415. "notification-url": "https://packagist.org/downloads/",
  8416. "license": [
  8417. "MIT"
  8418. ],
  8419. "authors": [
  8420. {
  8421. "name": "Fabien Potencier",
  8422. "email": "fabien@symfony.com"
  8423. },
  8424. {
  8425. "name": "Symfony Community",
  8426. "homepage": "https://symfony.com/contributors"
  8427. }
  8428. ],
  8429. "description": "Provides tools to internationalize your application",
  8430. "homepage": "https://symfony.com",
  8431. "support": {
  8432. "source": "https://github.com/symfony/translation/tree/v5.4.45"
  8433. },
  8434. "funding": [
  8435. {
  8436. "url": "https://symfony.com/sponsor",
  8437. "type": "custom"
  8438. },
  8439. {
  8440. "url": "https://github.com/fabpot",
  8441. "type": "github"
  8442. },
  8443. {
  8444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8445. "type": "tidelift"
  8446. }
  8447. ],
  8448. "time": "2024-09-25T14:11:13+00:00"
  8449. },
  8450. {
  8451. "name": "symfony/translation-contracts",
  8452. "version": "v2.5.4",
  8453. "source": {
  8454. "type": "git",
  8455. "url": "https://github.com/symfony/translation-contracts.git",
  8456. "reference": "450d4172653f38818657022252f9d81be89ee9a8"
  8457. },
  8458. "dist": {
  8459. "type": "zip",
  8460. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/450d4172653f38818657022252f9d81be89ee9a8",
  8461. "reference": "450d4172653f38818657022252f9d81be89ee9a8",
  8462. "shasum": "",
  8463. "mirrors": [
  8464. {
  8465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8466. "preferred": true
  8467. }
  8468. ]
  8469. },
  8470. "require": {
  8471. "php": ">=7.2.5"
  8472. },
  8473. "suggest": {
  8474. "symfony/translation-implementation": ""
  8475. },
  8476. "type": "library",
  8477. "extra": {
  8478. "thanks": {
  8479. "url": "https://github.com/symfony/contracts",
  8480. "name": "symfony/contracts"
  8481. },
  8482. "branch-alias": {
  8483. "dev-main": "2.5-dev"
  8484. }
  8485. },
  8486. "autoload": {
  8487. "psr-4": {
  8488. "Symfony\\Contracts\\Translation\\": ""
  8489. }
  8490. },
  8491. "notification-url": "https://packagist.org/downloads/",
  8492. "license": [
  8493. "MIT"
  8494. ],
  8495. "authors": [
  8496. {
  8497. "name": "Nicolas Grekas",
  8498. "email": "p@tchwork.com"
  8499. },
  8500. {
  8501. "name": "Symfony Community",
  8502. "homepage": "https://symfony.com/contributors"
  8503. }
  8504. ],
  8505. "description": "Generic abstractions related to translation",
  8506. "homepage": "https://symfony.com",
  8507. "keywords": [
  8508. "abstractions",
  8509. "contracts",
  8510. "decoupling",
  8511. "interfaces",
  8512. "interoperability",
  8513. "standards"
  8514. ],
  8515. "support": {
  8516. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.4"
  8517. },
  8518. "funding": [
  8519. {
  8520. "url": "https://symfony.com/sponsor",
  8521. "type": "custom"
  8522. },
  8523. {
  8524. "url": "https://github.com/fabpot",
  8525. "type": "github"
  8526. },
  8527. {
  8528. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8529. "type": "tidelift"
  8530. }
  8531. ],
  8532. "time": "2024-09-25T14:11:13+00:00"
  8533. },
  8534. {
  8535. "name": "symfony/var-dumper",
  8536. "version": "v5.4.48",
  8537. "source": {
  8538. "type": "git",
  8539. "url": "https://github.com/symfony/var-dumper.git",
  8540. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8"
  8541. },
  8542. "dist": {
  8543. "type": "zip",
  8544. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8",
  8545. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8",
  8546. "shasum": "",
  8547. "mirrors": [
  8548. {
  8549. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8550. "preferred": true
  8551. }
  8552. ]
  8553. },
  8554. "require": {
  8555. "php": ">=7.2.5",
  8556. "symfony/polyfill-mbstring": "~1.0",
  8557. "symfony/polyfill-php80": "^1.16"
  8558. },
  8559. "conflict": {
  8560. "symfony/console": "<4.4"
  8561. },
  8562. "require-dev": {
  8563. "ext-iconv": "*",
  8564. "symfony/console": "^4.4|^5.0|^6.0",
  8565. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  8566. "symfony/process": "^4.4|^5.0|^6.0",
  8567. "symfony/uid": "^5.1|^6.0",
  8568. "twig/twig": "^2.13|^3.0.4"
  8569. },
  8570. "suggest": {
  8571. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8572. "ext-intl": "To show region name in time zone dump",
  8573. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8574. },
  8575. "bin": [
  8576. "Resources/bin/var-dump-server"
  8577. ],
  8578. "type": "library",
  8579. "autoload": {
  8580. "files": [
  8581. "Resources/functions/dump.php"
  8582. ],
  8583. "psr-4": {
  8584. "Symfony\\Component\\VarDumper\\": ""
  8585. },
  8586. "exclude-from-classmap": [
  8587. "/Tests/"
  8588. ]
  8589. },
  8590. "notification-url": "https://packagist.org/downloads/",
  8591. "license": [
  8592. "MIT"
  8593. ],
  8594. "authors": [
  8595. {
  8596. "name": "Nicolas Grekas",
  8597. "email": "p@tchwork.com"
  8598. },
  8599. {
  8600. "name": "Symfony Community",
  8601. "homepage": "https://symfony.com/contributors"
  8602. }
  8603. ],
  8604. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8605. "homepage": "https://symfony.com",
  8606. "keywords": [
  8607. "debug",
  8608. "dump"
  8609. ],
  8610. "support": {
  8611. "source": "https://github.com/symfony/var-dumper/tree/v5.4.48"
  8612. },
  8613. "funding": [
  8614. {
  8615. "url": "https://symfony.com/sponsor",
  8616. "type": "custom"
  8617. },
  8618. {
  8619. "url": "https://github.com/fabpot",
  8620. "type": "github"
  8621. },
  8622. {
  8623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8624. "type": "tidelift"
  8625. }
  8626. ],
  8627. "time": "2024-11-08T15:21:10+00:00"
  8628. },
  8629. {
  8630. "name": "symfony/var-exporter",
  8631. "version": "v5.4.45",
  8632. "source": {
  8633. "type": "git",
  8634. "url": "https://github.com/symfony/var-exporter.git",
  8635. "reference": "862700068db0ddfd8c5b850671e029a90246ec75"
  8636. },
  8637. "dist": {
  8638. "type": "zip",
  8639. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/862700068db0ddfd8c5b850671e029a90246ec75",
  8640. "reference": "862700068db0ddfd8c5b850671e029a90246ec75",
  8641. "shasum": "",
  8642. "mirrors": [
  8643. {
  8644. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8645. "preferred": true
  8646. }
  8647. ]
  8648. },
  8649. "require": {
  8650. "php": ">=7.2.5",
  8651. "symfony/polyfill-php80": "^1.16"
  8652. },
  8653. "require-dev": {
  8654. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  8655. },
  8656. "type": "library",
  8657. "autoload": {
  8658. "psr-4": {
  8659. "Symfony\\Component\\VarExporter\\": ""
  8660. },
  8661. "exclude-from-classmap": [
  8662. "/Tests/"
  8663. ]
  8664. },
  8665. "notification-url": "https://packagist.org/downloads/",
  8666. "license": [
  8667. "MIT"
  8668. ],
  8669. "authors": [
  8670. {
  8671. "name": "Nicolas Grekas",
  8672. "email": "p@tchwork.com"
  8673. },
  8674. {
  8675. "name": "Symfony Community",
  8676. "homepage": "https://symfony.com/contributors"
  8677. }
  8678. ],
  8679. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8680. "homepage": "https://symfony.com",
  8681. "keywords": [
  8682. "clone",
  8683. "construct",
  8684. "export",
  8685. "hydrate",
  8686. "instantiate",
  8687. "serialize"
  8688. ],
  8689. "support": {
  8690. "source": "https://github.com/symfony/var-exporter/tree/v5.4.45"
  8691. },
  8692. "funding": [
  8693. {
  8694. "url": "https://symfony.com/sponsor",
  8695. "type": "custom"
  8696. },
  8697. {
  8698. "url": "https://github.com/fabpot",
  8699. "type": "github"
  8700. },
  8701. {
  8702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8703. "type": "tidelift"
  8704. }
  8705. ],
  8706. "time": "2024-09-25T14:11:13+00:00"
  8707. },
  8708. {
  8709. "name": "tencentcloud/common",
  8710. "version": "3.0.1339",
  8711. "source": {
  8712. "type": "git",
  8713. "url": "https://github.com/tencentcloud-sdk-php/common.git",
  8714. "reference": "97fea23b090ac99798050a3dff636182ba1f9a2c"
  8715. },
  8716. "dist": {
  8717. "type": "zip",
  8718. "url": "https://api.github.com/repos/tencentcloud-sdk-php/common/zipball/97fea23b090ac99798050a3dff636182ba1f9a2c",
  8719. "reference": "97fea23b090ac99798050a3dff636182ba1f9a2c",
  8720. "shasum": "",
  8721. "mirrors": [
  8722. {
  8723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8724. "preferred": true
  8725. }
  8726. ]
  8727. },
  8728. "require": {
  8729. "guzzlehttp/guzzle": "^6.3||^7.0",
  8730. "php": ">=5.6.0"
  8731. },
  8732. "type": "library",
  8733. "autoload": {
  8734. "psr-4": {
  8735. "TencentCloud\\": "./src/TencentCloud"
  8736. }
  8737. },
  8738. "notification-url": "https://packagist.org/downloads/",
  8739. "license": [
  8740. "Apache-2.0"
  8741. ],
  8742. "authors": [
  8743. {
  8744. "name": "tencentcloudapi",
  8745. "email": "tencentcloudapi@tencent.com",
  8746. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  8747. "role": "Developer"
  8748. }
  8749. ],
  8750. "description": "TencentCloudApi php sdk",
  8751. "homepage": "https://github.com/tencentcloud-sdk-php/common",
  8752. "support": {
  8753. "issues": "https://github.com/tencentcloud-sdk-php/common/issues",
  8754. "source": "https://github.com/tencentcloud-sdk-php/common/tree/3.0.1339"
  8755. },
  8756. "time": "2025-03-14T10:52:02+00:00"
  8757. },
  8758. {
  8759. "name": "tencentcloud/sms",
  8760. "version": "3.0.1339",
  8761. "source": {
  8762. "type": "git",
  8763. "url": "https://github.com/tencentcloud-sdk-php/sms.git",
  8764. "reference": "94f5f648582c9482092aae3dd04cd868c0347248"
  8765. },
  8766. "dist": {
  8767. "type": "zip",
  8768. "url": "https://api.github.com/repos/tencentcloud-sdk-php/sms/zipball/94f5f648582c9482092aae3dd04cd868c0347248",
  8769. "reference": "94f5f648582c9482092aae3dd04cd868c0347248",
  8770. "shasum": "",
  8771. "mirrors": [
  8772. {
  8773. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8774. "preferred": true
  8775. }
  8776. ]
  8777. },
  8778. "require": {
  8779. "tencentcloud/common": "3.0.1339"
  8780. },
  8781. "type": "library",
  8782. "autoload": {
  8783. "psr-4": {
  8784. "TencentCloud\\": "./src/TencentCloud"
  8785. }
  8786. },
  8787. "notification-url": "https://packagist.org/downloads/",
  8788. "license": [
  8789. "Apache-2.0"
  8790. ],
  8791. "authors": [
  8792. {
  8793. "name": "tencentcloudapi",
  8794. "email": "tencentcloudapi@tencent.com",
  8795. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  8796. "role": "Developer"
  8797. }
  8798. ],
  8799. "description": "TencentCloudApi php sdk sms",
  8800. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  8801. "support": {
  8802. "issues": "https://github.com/tencentcloud-sdk-php/sms/issues",
  8803. "source": "https://github.com/tencentcloud-sdk-php/sms/tree/3.0.1339"
  8804. },
  8805. "time": "2025-03-14T11:30:53+00:00"
  8806. },
  8807. {
  8808. "name": "tijsverkoyen/css-to-inline-styles",
  8809. "version": "v2.3.0",
  8810. "source": {
  8811. "type": "git",
  8812. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8813. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  8814. },
  8815. "dist": {
  8816. "type": "zip",
  8817. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  8818. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  8819. "shasum": "",
  8820. "mirrors": [
  8821. {
  8822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8823. "preferred": true
  8824. }
  8825. ]
  8826. },
  8827. "require": {
  8828. "ext-dom": "*",
  8829. "ext-libxml": "*",
  8830. "php": "^7.4 || ^8.0",
  8831. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  8832. },
  8833. "require-dev": {
  8834. "phpstan/phpstan": "^2.0",
  8835. "phpstan/phpstan-phpunit": "^2.0",
  8836. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  8837. },
  8838. "type": "library",
  8839. "extra": {
  8840. "branch-alias": {
  8841. "dev-master": "2.x-dev"
  8842. }
  8843. },
  8844. "autoload": {
  8845. "psr-4": {
  8846. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8847. }
  8848. },
  8849. "notification-url": "https://packagist.org/downloads/",
  8850. "license": [
  8851. "BSD-3-Clause"
  8852. ],
  8853. "authors": [
  8854. {
  8855. "name": "Tijs Verkoyen",
  8856. "email": "css_to_inline_styles@verkoyen.eu",
  8857. "role": "Developer"
  8858. }
  8859. ],
  8860. "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.",
  8861. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8862. "support": {
  8863. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8864. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  8865. },
  8866. "time": "2024-12-21T16:25:41+00:00"
  8867. },
  8868. {
  8869. "name": "vinkla/hashids",
  8870. "version": "9.1.0",
  8871. "source": {
  8872. "type": "git",
  8873. "url": "https://github.com/vinkla/laravel-hashids.git",
  8874. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767"
  8875. },
  8876. "dist": {
  8877. "type": "zip",
  8878. "url": "https://api.github.com/repos/vinkla/laravel-hashids/zipball/cb0086db96cdb49816465adc97e3a024c8ee9767",
  8879. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767",
  8880. "shasum": "",
  8881. "mirrors": [
  8882. {
  8883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8884. "preferred": true
  8885. }
  8886. ]
  8887. },
  8888. "require": {
  8889. "graham-campbell/manager": "^4.4",
  8890. "hashids/hashids": "^4.1",
  8891. "illuminate/contracts": "^8.0",
  8892. "illuminate/support": "^8.0",
  8893. "php": "^7.3 || ^8.0"
  8894. },
  8895. "require-dev": {
  8896. "graham-campbell/analyzer": "^3.0",
  8897. "graham-campbell/testbench": "^5.4",
  8898. "mockery/mockery": "^1.3",
  8899. "phpunit/phpunit": "^9.3",
  8900. "squizlabs/php_codesniffer": "^3.5"
  8901. },
  8902. "type": "library",
  8903. "extra": {
  8904. "laravel": {
  8905. "aliases": {
  8906. "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
  8907. },
  8908. "providers": [
  8909. "Vinkla\\Hashids\\HashidsServiceProvider"
  8910. ]
  8911. },
  8912. "branch-alias": {
  8913. "dev-master": "9.1-dev"
  8914. }
  8915. },
  8916. "autoload": {
  8917. "psr-4": {
  8918. "Vinkla\\Hashids\\": "src/"
  8919. }
  8920. },
  8921. "notification-url": "https://packagist.org/downloads/",
  8922. "license": [
  8923. "MIT"
  8924. ],
  8925. "authors": [
  8926. {
  8927. "name": "Vincent Klaiber",
  8928. "email": "hello@doubledip.se"
  8929. }
  8930. ],
  8931. "description": "A Hashids bridge for Laravel",
  8932. "keywords": [
  8933. "hashids",
  8934. "laravel"
  8935. ],
  8936. "support": {
  8937. "issues": "https://github.com/vinkla/laravel-hashids/issues",
  8938. "source": "https://github.com/vinkla/laravel-hashids/tree/9.1.0"
  8939. },
  8940. "time": "2020-11-26T19:38:22+00:00"
  8941. },
  8942. {
  8943. "name": "vlucas/phpdotenv",
  8944. "version": "v5.6.1",
  8945. "source": {
  8946. "type": "git",
  8947. "url": "https://github.com/vlucas/phpdotenv.git",
  8948. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  8949. },
  8950. "dist": {
  8951. "type": "zip",
  8952. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8953. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8954. "shasum": "",
  8955. "mirrors": [
  8956. {
  8957. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8958. "preferred": true
  8959. }
  8960. ]
  8961. },
  8962. "require": {
  8963. "ext-pcre": "*",
  8964. "graham-campbell/result-type": "^1.1.3",
  8965. "php": "^7.2.5 || ^8.0",
  8966. "phpoption/phpoption": "^1.9.3",
  8967. "symfony/polyfill-ctype": "^1.24",
  8968. "symfony/polyfill-mbstring": "^1.24",
  8969. "symfony/polyfill-php80": "^1.24"
  8970. },
  8971. "require-dev": {
  8972. "bamarni/composer-bin-plugin": "^1.8.2",
  8973. "ext-filter": "*",
  8974. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8975. },
  8976. "suggest": {
  8977. "ext-filter": "Required to use the boolean validator."
  8978. },
  8979. "type": "library",
  8980. "extra": {
  8981. "bamarni-bin": {
  8982. "bin-links": true,
  8983. "forward-command": false
  8984. },
  8985. "branch-alias": {
  8986. "dev-master": "5.6-dev"
  8987. }
  8988. },
  8989. "autoload": {
  8990. "psr-4": {
  8991. "Dotenv\\": "src/"
  8992. }
  8993. },
  8994. "notification-url": "https://packagist.org/downloads/",
  8995. "license": [
  8996. "BSD-3-Clause"
  8997. ],
  8998. "authors": [
  8999. {
  9000. "name": "Graham Campbell",
  9001. "email": "hello@gjcampbell.co.uk",
  9002. "homepage": "https://github.com/GrahamCampbell"
  9003. },
  9004. {
  9005. "name": "Vance Lucas",
  9006. "email": "vance@vancelucas.com",
  9007. "homepage": "https://github.com/vlucas"
  9008. }
  9009. ],
  9010. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9011. "keywords": [
  9012. "dotenv",
  9013. "env",
  9014. "environment"
  9015. ],
  9016. "support": {
  9017. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9018. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  9019. },
  9020. "funding": [
  9021. {
  9022. "url": "https://github.com/GrahamCampbell",
  9023. "type": "github"
  9024. },
  9025. {
  9026. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9027. "type": "tidelift"
  9028. }
  9029. ],
  9030. "time": "2024-07-20T21:52:34+00:00"
  9031. },
  9032. {
  9033. "name": "voku/portable-ascii",
  9034. "version": "1.6.1",
  9035. "source": {
  9036. "type": "git",
  9037. "url": "https://github.com/voku/portable-ascii.git",
  9038. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  9039. },
  9040. "dist": {
  9041. "type": "zip",
  9042. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  9043. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  9044. "shasum": "",
  9045. "mirrors": [
  9046. {
  9047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9048. "preferred": true
  9049. }
  9050. ]
  9051. },
  9052. "require": {
  9053. "php": ">=7.0.0"
  9054. },
  9055. "require-dev": {
  9056. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9057. },
  9058. "suggest": {
  9059. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9060. },
  9061. "type": "library",
  9062. "autoload": {
  9063. "psr-4": {
  9064. "voku\\": "src/voku/"
  9065. }
  9066. },
  9067. "notification-url": "https://packagist.org/downloads/",
  9068. "license": [
  9069. "MIT"
  9070. ],
  9071. "authors": [
  9072. {
  9073. "name": "Lars Moelleken",
  9074. "homepage": "http://www.moelleken.org/"
  9075. }
  9076. ],
  9077. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9078. "homepage": "https://github.com/voku/portable-ascii",
  9079. "keywords": [
  9080. "ascii",
  9081. "clean",
  9082. "php"
  9083. ],
  9084. "support": {
  9085. "issues": "https://github.com/voku/portable-ascii/issues",
  9086. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  9087. },
  9088. "funding": [
  9089. {
  9090. "url": "https://www.paypal.me/moelleken",
  9091. "type": "custom"
  9092. },
  9093. {
  9094. "url": "https://github.com/voku",
  9095. "type": "github"
  9096. },
  9097. {
  9098. "url": "https://opencollective.com/portable-ascii",
  9099. "type": "open_collective"
  9100. },
  9101. {
  9102. "url": "https://www.patreon.com/voku",
  9103. "type": "patreon"
  9104. },
  9105. {
  9106. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9107. "type": "tidelift"
  9108. }
  9109. ],
  9110. "time": "2022-01-24T18:55:24+00:00"
  9111. },
  9112. {
  9113. "name": "w7corp/easywechat",
  9114. "version": "5.36.0",
  9115. "source": {
  9116. "type": "git",
  9117. "url": "https://github.com/w7corp/easywechat.git",
  9118. "reference": "3e3af7e1195e8ad25dae196bdb6420a24b382f1d"
  9119. },
  9120. "dist": {
  9121. "type": "zip",
  9122. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/3e3af7e1195e8ad25dae196bdb6420a24b382f1d",
  9123. "reference": "3e3af7e1195e8ad25dae196bdb6420a24b382f1d",
  9124. "shasum": "",
  9125. "mirrors": [
  9126. {
  9127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9128. "preferred": true
  9129. }
  9130. ]
  9131. },
  9132. "require": {
  9133. "easywechat-composer/easywechat-composer": "^1.1",
  9134. "ext-fileinfo": "*",
  9135. "ext-libxml": "*",
  9136. "ext-openssl": "*",
  9137. "ext-simplexml": "*",
  9138. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  9139. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  9140. "overtrue/socialite": "^3.2 || ^4.0",
  9141. "php": ">=7.4",
  9142. "pimple/pimple": "^3.0",
  9143. "psr/simple-cache": "^1.0||^2.0||^3.0",
  9144. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  9145. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  9146. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  9147. },
  9148. "require-dev": {
  9149. "brainmaestro/composer-git-hooks": "^2.7",
  9150. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  9151. "friendsofphp/php-cs-fixer": "^3.5.0",
  9152. "mikey179/vfsstream": "^1.6",
  9153. "mockery/mockery": "^1.2.3",
  9154. "phpstan/phpstan": "^0.12.0",
  9155. "phpunit/phpunit": "^9.3"
  9156. },
  9157. "type": "library",
  9158. "extra": {
  9159. "hooks": {
  9160. "pre-push": [
  9161. "composer test",
  9162. "composer fix-style"
  9163. ],
  9164. "pre-commit": [
  9165. "composer test",
  9166. "composer fix-style"
  9167. ]
  9168. }
  9169. },
  9170. "autoload": {
  9171. "files": [
  9172. "src/Kernel/Support/Helpers.php",
  9173. "src/Kernel/Helpers.php"
  9174. ],
  9175. "psr-4": {
  9176. "EasyWeChat\\": "src/"
  9177. }
  9178. },
  9179. "notification-url": "https://packagist.org/downloads/",
  9180. "license": [
  9181. "MIT"
  9182. ],
  9183. "authors": [
  9184. {
  9185. "name": "overtrue",
  9186. "email": "anzhengchao@gmail.com"
  9187. }
  9188. ],
  9189. "description": "微信SDK",
  9190. "keywords": [
  9191. "easywechat",
  9192. "sdk",
  9193. "wechat",
  9194. "weixin",
  9195. "weixin-sdk"
  9196. ],
  9197. "support": {
  9198. "issues": "https://github.com/w7corp/easywechat/issues",
  9199. "source": "https://github.com/w7corp/easywechat/tree/5.36.0"
  9200. },
  9201. "funding": [
  9202. {
  9203. "url": "https://github.com/overtrue",
  9204. "type": "github"
  9205. }
  9206. ],
  9207. "time": "2024-12-25T08:00:38+00:00"
  9208. },
  9209. {
  9210. "name": "wantp/snowflake",
  9211. "version": "v1.2.0",
  9212. "source": {
  9213. "type": "git",
  9214. "url": "https://github.com/wantp/snowflake.git",
  9215. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d"
  9216. },
  9217. "dist": {
  9218. "type": "zip",
  9219. "url": "https://api.github.com/repos/wantp/snowflake/zipball/821c2800521cddc31afd8dd980090883abc7fe2d",
  9220. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d",
  9221. "shasum": "",
  9222. "mirrors": [
  9223. {
  9224. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9225. "preferred": true
  9226. }
  9227. ]
  9228. },
  9229. "require": {
  9230. "php": ">=7.0.0"
  9231. },
  9232. "type": "library",
  9233. "autoload": {
  9234. "psr-4": {
  9235. "wantp\\Snowflake\\": "src/Snowflake/"
  9236. }
  9237. },
  9238. "notification-url": "https://packagist.org/downloads/",
  9239. "license": [
  9240. "MIT"
  9241. ],
  9242. "authors": [
  9243. {
  9244. "name": "zhangrongwang",
  9245. "email": "zhangrongwang798@gmail.com"
  9246. }
  9247. ],
  9248. "description": "A package for create unique id by snowflake",
  9249. "keywords": [
  9250. "snowflake",
  9251. "uniqueId"
  9252. ],
  9253. "support": {
  9254. "issues": "https://github.com/wantp/snowflake/issues",
  9255. "source": "https://github.com/wantp/snowflake/tree/master"
  9256. },
  9257. "time": "2019-08-05T07:14:56+00:00"
  9258. },
  9259. {
  9260. "name": "webmozart/assert",
  9261. "version": "1.11.0",
  9262. "source": {
  9263. "type": "git",
  9264. "url": "https://github.com/webmozarts/assert.git",
  9265. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9266. },
  9267. "dist": {
  9268. "type": "zip",
  9269. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9270. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9271. "shasum": "",
  9272. "mirrors": [
  9273. {
  9274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9275. "preferred": true
  9276. }
  9277. ]
  9278. },
  9279. "require": {
  9280. "ext-ctype": "*",
  9281. "php": "^7.2 || ^8.0"
  9282. },
  9283. "conflict": {
  9284. "phpstan/phpstan": "<0.12.20",
  9285. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9286. },
  9287. "require-dev": {
  9288. "phpunit/phpunit": "^8.5.13"
  9289. },
  9290. "type": "library",
  9291. "extra": {
  9292. "branch-alias": {
  9293. "dev-master": "1.10-dev"
  9294. }
  9295. },
  9296. "autoload": {
  9297. "psr-4": {
  9298. "Webmozart\\Assert\\": "src/"
  9299. }
  9300. },
  9301. "notification-url": "https://packagist.org/downloads/",
  9302. "license": [
  9303. "MIT"
  9304. ],
  9305. "authors": [
  9306. {
  9307. "name": "Bernhard Schussek",
  9308. "email": "bschussek@gmail.com"
  9309. }
  9310. ],
  9311. "description": "Assertions to validate method input/output with nice error messages.",
  9312. "keywords": [
  9313. "assert",
  9314. "check",
  9315. "validate"
  9316. ],
  9317. "support": {
  9318. "issues": "https://github.com/webmozarts/assert/issues",
  9319. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9320. },
  9321. "time": "2022-06-03T18:03:27+00:00"
  9322. },
  9323. {
  9324. "name": "wechatpay/wechatpay",
  9325. "version": "1.4.12",
  9326. "source": {
  9327. "type": "git",
  9328. "url": "https://github.com/wechatpay-apiv3/wechatpay-php.git",
  9329. "reference": "bd2148e0456f560df4d1c857d6cd1f8ad9f5222e"
  9330. },
  9331. "dist": {
  9332. "type": "zip",
  9333. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-php/zipball/bd2148e0456f560df4d1c857d6cd1f8ad9f5222e",
  9334. "reference": "bd2148e0456f560df4d1c857d6cd1f8ad9f5222e",
  9335. "shasum": "",
  9336. "mirrors": [
  9337. {
  9338. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9339. "preferred": true
  9340. }
  9341. ]
  9342. },
  9343. "require": {
  9344. "ext-curl": "*",
  9345. "ext-libxml": "*",
  9346. "ext-openssl": "*",
  9347. "ext-simplexml": "*",
  9348. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  9349. "guzzlehttp/uri-template": "^0.2 || ^1.0",
  9350. "php": ">=7.1.2"
  9351. },
  9352. "require-dev": {
  9353. "phpstan/phpstan": "^0.12.89 || ^1.0",
  9354. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  9355. },
  9356. "bin": [
  9357. "bin/CertificateDownloader.php"
  9358. ],
  9359. "type": "library",
  9360. "autoload": {
  9361. "psr-4": {
  9362. "WeChatPay\\": "src/"
  9363. }
  9364. },
  9365. "notification-url": "https://packagist.org/downloads/",
  9366. "license": [
  9367. "Apache-2.0"
  9368. ],
  9369. "authors": [
  9370. {
  9371. "name": "James ZHANG",
  9372. "homepage": "https://github.com/TheNorthMemory"
  9373. },
  9374. {
  9375. "name": "WeChatPay Community",
  9376. "homepage": "https://developers.weixin.qq.com/community/pay"
  9377. }
  9378. ],
  9379. "description": "[A]Sync Chainable WeChatPay v2&v3's OpenAPI SDK for PHP",
  9380. "homepage": "https://pay.weixin.qq.com/",
  9381. "keywords": [
  9382. "AES-GCM",
  9383. "aes-ecb",
  9384. "openapi-chainable",
  9385. "rsa-oaep",
  9386. "wechatpay",
  9387. "xml-builder",
  9388. "xml-parser"
  9389. ],
  9390. "support": {
  9391. "issues": "https://github.com/wechatpay-apiv3/wechatpay-php/issues",
  9392. "source": "https://github.com/wechatpay-apiv3/wechatpay-php/tree/v1.4.12"
  9393. },
  9394. "time": "2025-01-26T14:16:41+00:00"
  9395. }
  9396. ],
  9397. "packages-dev": [
  9398. {
  9399. "name": "doctrine/instantiator",
  9400. "version": "1.5.0",
  9401. "source": {
  9402. "type": "git",
  9403. "url": "https://github.com/doctrine/instantiator.git",
  9404. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  9405. },
  9406. "dist": {
  9407. "type": "zip",
  9408. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  9409. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  9410. "shasum": "",
  9411. "mirrors": [
  9412. {
  9413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9414. "preferred": true
  9415. }
  9416. ]
  9417. },
  9418. "require": {
  9419. "php": "^7.1 || ^8.0"
  9420. },
  9421. "require-dev": {
  9422. "doctrine/coding-standard": "^9 || ^11",
  9423. "ext-pdo": "*",
  9424. "ext-phar": "*",
  9425. "phpbench/phpbench": "^0.16 || ^1",
  9426. "phpstan/phpstan": "^1.4",
  9427. "phpstan/phpstan-phpunit": "^1",
  9428. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  9429. "vimeo/psalm": "^4.30 || ^5.4"
  9430. },
  9431. "type": "library",
  9432. "autoload": {
  9433. "psr-4": {
  9434. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  9435. }
  9436. },
  9437. "notification-url": "https://packagist.org/downloads/",
  9438. "license": [
  9439. "MIT"
  9440. ],
  9441. "authors": [
  9442. {
  9443. "name": "Marco Pivetta",
  9444. "email": "ocramius@gmail.com",
  9445. "homepage": "https://ocramius.github.io/"
  9446. }
  9447. ],
  9448. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  9449. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  9450. "keywords": [
  9451. "constructor",
  9452. "instantiate"
  9453. ],
  9454. "support": {
  9455. "issues": "https://github.com/doctrine/instantiator/issues",
  9456. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  9457. },
  9458. "funding": [
  9459. {
  9460. "url": "https://www.doctrine-project.org/sponsorship.html",
  9461. "type": "custom"
  9462. },
  9463. {
  9464. "url": "https://www.patreon.com/phpdoctrine",
  9465. "type": "patreon"
  9466. },
  9467. {
  9468. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  9469. "type": "tidelift"
  9470. }
  9471. ],
  9472. "time": "2022-12-30T00:15:36+00:00"
  9473. },
  9474. {
  9475. "name": "facade/flare-client-php",
  9476. "version": "1.10.0",
  9477. "source": {
  9478. "type": "git",
  9479. "url": "https://github.com/facade/flare-client-php.git",
  9480. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  9481. },
  9482. "dist": {
  9483. "type": "zip",
  9484. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  9485. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  9486. "shasum": "",
  9487. "mirrors": [
  9488. {
  9489. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9490. "preferred": true
  9491. }
  9492. ]
  9493. },
  9494. "require": {
  9495. "facade/ignition-contracts": "~1.0",
  9496. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  9497. "php": "^7.1|^8.0",
  9498. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  9499. "symfony/mime": "^3.4|^4.0|^5.1",
  9500. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  9501. },
  9502. "require-dev": {
  9503. "friendsofphp/php-cs-fixer": "^2.14",
  9504. "phpunit/phpunit": "^7.5",
  9505. "spatie/phpunit-snapshot-assertions": "^2.0"
  9506. },
  9507. "type": "library",
  9508. "extra": {
  9509. "branch-alias": {
  9510. "dev-master": "1.0-dev"
  9511. }
  9512. },
  9513. "autoload": {
  9514. "files": [
  9515. "src/helpers.php"
  9516. ],
  9517. "psr-4": {
  9518. "Facade\\FlareClient\\": "src"
  9519. }
  9520. },
  9521. "notification-url": "https://packagist.org/downloads/",
  9522. "license": [
  9523. "MIT"
  9524. ],
  9525. "description": "Send PHP errors to Flare",
  9526. "homepage": "https://github.com/facade/flare-client-php",
  9527. "keywords": [
  9528. "exception",
  9529. "facade",
  9530. "flare",
  9531. "reporting"
  9532. ],
  9533. "support": {
  9534. "issues": "https://github.com/facade/flare-client-php/issues",
  9535. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  9536. },
  9537. "funding": [
  9538. {
  9539. "url": "https://github.com/spatie",
  9540. "type": "github"
  9541. }
  9542. ],
  9543. "time": "2022-08-09T11:23:57+00:00"
  9544. },
  9545. {
  9546. "name": "facade/ignition",
  9547. "version": "2.17.7",
  9548. "source": {
  9549. "type": "git",
  9550. "url": "https://github.com/facade/ignition.git",
  9551. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  9552. },
  9553. "dist": {
  9554. "type": "zip",
  9555. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  9556. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  9557. "shasum": "",
  9558. "mirrors": [
  9559. {
  9560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9561. "preferred": true
  9562. }
  9563. ]
  9564. },
  9565. "require": {
  9566. "ext-curl": "*",
  9567. "ext-json": "*",
  9568. "ext-mbstring": "*",
  9569. "facade/flare-client-php": "^1.9.1",
  9570. "facade/ignition-contracts": "^1.0.2",
  9571. "illuminate/support": "^7.0|^8.0",
  9572. "monolog/monolog": "^2.0",
  9573. "php": "^7.2.5|^8.0",
  9574. "symfony/console": "^5.0",
  9575. "symfony/var-dumper": "^5.0"
  9576. },
  9577. "require-dev": {
  9578. "friendsofphp/php-cs-fixer": "^2.14",
  9579. "livewire/livewire": "^2.4",
  9580. "mockery/mockery": "^1.3",
  9581. "orchestra/testbench": "^5.0|^6.0",
  9582. "psalm/plugin-laravel": "^1.2"
  9583. },
  9584. "suggest": {
  9585. "laravel/telescope": "^3.1"
  9586. },
  9587. "type": "library",
  9588. "extra": {
  9589. "branch-alias": {
  9590. "dev-master": "2.x-dev"
  9591. },
  9592. "laravel": {
  9593. "providers": [
  9594. "Facade\\Ignition\\IgnitionServiceProvider"
  9595. ],
  9596. "aliases": {
  9597. "Flare": "Facade\\Ignition\\Facades\\Flare"
  9598. }
  9599. }
  9600. },
  9601. "autoload": {
  9602. "files": [
  9603. "src/helpers.php"
  9604. ],
  9605. "psr-4": {
  9606. "Facade\\Ignition\\": "src"
  9607. }
  9608. },
  9609. "notification-url": "https://packagist.org/downloads/",
  9610. "license": [
  9611. "MIT"
  9612. ],
  9613. "description": "A beautiful error page for Laravel applications.",
  9614. "homepage": "https://github.com/facade/ignition",
  9615. "keywords": [
  9616. "error",
  9617. "flare",
  9618. "laravel",
  9619. "page"
  9620. ],
  9621. "support": {
  9622. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  9623. "forum": "https://twitter.com/flareappio",
  9624. "issues": "https://github.com/facade/ignition/issues",
  9625. "source": "https://github.com/facade/ignition"
  9626. },
  9627. "time": "2023-01-26T12:34:59+00:00"
  9628. },
  9629. {
  9630. "name": "facade/ignition-contracts",
  9631. "version": "1.0.2",
  9632. "source": {
  9633. "type": "git",
  9634. "url": "https://github.com/facade/ignition-contracts.git",
  9635. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  9636. },
  9637. "dist": {
  9638. "type": "zip",
  9639. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9640. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9641. "shasum": "",
  9642. "mirrors": [
  9643. {
  9644. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9645. "preferred": true
  9646. }
  9647. ]
  9648. },
  9649. "require": {
  9650. "php": "^7.3|^8.0"
  9651. },
  9652. "require-dev": {
  9653. "friendsofphp/php-cs-fixer": "^v2.15.8",
  9654. "phpunit/phpunit": "^9.3.11",
  9655. "vimeo/psalm": "^3.17.1"
  9656. },
  9657. "type": "library",
  9658. "autoload": {
  9659. "psr-4": {
  9660. "Facade\\IgnitionContracts\\": "src"
  9661. }
  9662. },
  9663. "notification-url": "https://packagist.org/downloads/",
  9664. "license": [
  9665. "MIT"
  9666. ],
  9667. "authors": [
  9668. {
  9669. "name": "Freek Van der Herten",
  9670. "email": "freek@spatie.be",
  9671. "homepage": "https://flareapp.io",
  9672. "role": "Developer"
  9673. }
  9674. ],
  9675. "description": "Solution contracts for Ignition",
  9676. "homepage": "https://github.com/facade/ignition-contracts",
  9677. "keywords": [
  9678. "contracts",
  9679. "flare",
  9680. "ignition"
  9681. ],
  9682. "support": {
  9683. "issues": "https://github.com/facade/ignition-contracts/issues",
  9684. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  9685. },
  9686. "time": "2020-10-16T08:27:54+00:00"
  9687. },
  9688. {
  9689. "name": "fakerphp/faker",
  9690. "version": "v1.23.1",
  9691. "source": {
  9692. "type": "git",
  9693. "url": "https://github.com/FakerPHP/Faker.git",
  9694. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  9695. },
  9696. "dist": {
  9697. "type": "zip",
  9698. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  9699. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  9700. "shasum": "",
  9701. "mirrors": [
  9702. {
  9703. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9704. "preferred": true
  9705. }
  9706. ]
  9707. },
  9708. "require": {
  9709. "php": "^7.4 || ^8.0",
  9710. "psr/container": "^1.0 || ^2.0",
  9711. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9712. },
  9713. "conflict": {
  9714. "fzaninotto/faker": "*"
  9715. },
  9716. "require-dev": {
  9717. "bamarni/composer-bin-plugin": "^1.4.1",
  9718. "doctrine/persistence": "^1.3 || ^2.0",
  9719. "ext-intl": "*",
  9720. "phpunit/phpunit": "^9.5.26",
  9721. "symfony/phpunit-bridge": "^5.4.16"
  9722. },
  9723. "suggest": {
  9724. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9725. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9726. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9727. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9728. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9729. },
  9730. "type": "library",
  9731. "autoload": {
  9732. "psr-4": {
  9733. "Faker\\": "src/Faker/"
  9734. }
  9735. },
  9736. "notification-url": "https://packagist.org/downloads/",
  9737. "license": [
  9738. "MIT"
  9739. ],
  9740. "authors": [
  9741. {
  9742. "name": "François Zaninotto"
  9743. }
  9744. ],
  9745. "description": "Faker is a PHP library that generates fake data for you.",
  9746. "keywords": [
  9747. "data",
  9748. "faker",
  9749. "fixtures"
  9750. ],
  9751. "support": {
  9752. "issues": "https://github.com/FakerPHP/Faker/issues",
  9753. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  9754. },
  9755. "time": "2024-01-02T13:46:09+00:00"
  9756. },
  9757. {
  9758. "name": "filp/whoops",
  9759. "version": "2.16.0",
  9760. "source": {
  9761. "type": "git",
  9762. "url": "https://github.com/filp/whoops.git",
  9763. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  9764. },
  9765. "dist": {
  9766. "type": "zip",
  9767. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  9768. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  9769. "shasum": "",
  9770. "mirrors": [
  9771. {
  9772. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9773. "preferred": true
  9774. }
  9775. ]
  9776. },
  9777. "require": {
  9778. "php": "^7.1 || ^8.0",
  9779. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9780. },
  9781. "require-dev": {
  9782. "mockery/mockery": "^1.0",
  9783. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  9784. "symfony/var-dumper": "^4.0 || ^5.0"
  9785. },
  9786. "suggest": {
  9787. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9788. "whoops/soap": "Formats errors as SOAP responses"
  9789. },
  9790. "type": "library",
  9791. "extra": {
  9792. "branch-alias": {
  9793. "dev-master": "2.7-dev"
  9794. }
  9795. },
  9796. "autoload": {
  9797. "psr-4": {
  9798. "Whoops\\": "src/Whoops/"
  9799. }
  9800. },
  9801. "notification-url": "https://packagist.org/downloads/",
  9802. "license": [
  9803. "MIT"
  9804. ],
  9805. "authors": [
  9806. {
  9807. "name": "Filipe Dobreira",
  9808. "homepage": "https://github.com/filp",
  9809. "role": "Developer"
  9810. }
  9811. ],
  9812. "description": "php error handling for cool kids",
  9813. "homepage": "https://filp.github.io/whoops/",
  9814. "keywords": [
  9815. "error",
  9816. "exception",
  9817. "handling",
  9818. "library",
  9819. "throwable",
  9820. "whoops"
  9821. ],
  9822. "support": {
  9823. "issues": "https://github.com/filp/whoops/issues",
  9824. "source": "https://github.com/filp/whoops/tree/2.16.0"
  9825. },
  9826. "funding": [
  9827. {
  9828. "url": "https://github.com/denis-sokolov",
  9829. "type": "github"
  9830. }
  9831. ],
  9832. "time": "2024-09-25T12:00:00+00:00"
  9833. },
  9834. {
  9835. "name": "hamcrest/hamcrest-php",
  9836. "version": "v2.0.1",
  9837. "source": {
  9838. "type": "git",
  9839. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9840. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9841. },
  9842. "dist": {
  9843. "type": "zip",
  9844. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9845. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9846. "shasum": "",
  9847. "mirrors": [
  9848. {
  9849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9850. "preferred": true
  9851. }
  9852. ]
  9853. },
  9854. "require": {
  9855. "php": "^5.3|^7.0|^8.0"
  9856. },
  9857. "replace": {
  9858. "cordoval/hamcrest-php": "*",
  9859. "davedevelopment/hamcrest-php": "*",
  9860. "kodova/hamcrest-php": "*"
  9861. },
  9862. "require-dev": {
  9863. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9864. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9865. },
  9866. "type": "library",
  9867. "extra": {
  9868. "branch-alias": {
  9869. "dev-master": "2.1-dev"
  9870. }
  9871. },
  9872. "autoload": {
  9873. "classmap": [
  9874. "hamcrest"
  9875. ]
  9876. },
  9877. "notification-url": "https://packagist.org/downloads/",
  9878. "license": [
  9879. "BSD-3-Clause"
  9880. ],
  9881. "description": "This is the PHP port of Hamcrest Matchers",
  9882. "keywords": [
  9883. "test"
  9884. ],
  9885. "support": {
  9886. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9887. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9888. },
  9889. "time": "2020-07-09T08:09:16+00:00"
  9890. },
  9891. {
  9892. "name": "laravel/sail",
  9893. "version": "v1.19.0",
  9894. "source": {
  9895. "type": "git",
  9896. "url": "https://github.com/laravel/sail.git",
  9897. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6"
  9898. },
  9899. "dist": {
  9900. "type": "zip",
  9901. "url": "https://api.github.com/repos/laravel/sail/zipball/4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  9902. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  9903. "shasum": "",
  9904. "mirrors": [
  9905. {
  9906. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9907. "preferred": true
  9908. }
  9909. ]
  9910. },
  9911. "require": {
  9912. "illuminate/console": "^8.0|^9.0|^10.0",
  9913. "illuminate/contracts": "^8.0|^9.0|^10.0",
  9914. "illuminate/support": "^8.0|^9.0|^10.0",
  9915. "php": "^7.3|^8.0"
  9916. },
  9917. "bin": [
  9918. "bin/sail"
  9919. ],
  9920. "type": "library",
  9921. "extra": {
  9922. "laravel": {
  9923. "providers": [
  9924. "Laravel\\Sail\\SailServiceProvider"
  9925. ]
  9926. },
  9927. "branch-alias": {
  9928. "dev-master": "1.x-dev"
  9929. }
  9930. },
  9931. "autoload": {
  9932. "psr-4": {
  9933. "Laravel\\Sail\\": "src/"
  9934. }
  9935. },
  9936. "notification-url": "https://packagist.org/downloads/",
  9937. "license": [
  9938. "MIT"
  9939. ],
  9940. "authors": [
  9941. {
  9942. "name": "Taylor Otwell",
  9943. "email": "taylor@laravel.com"
  9944. }
  9945. ],
  9946. "description": "Docker files for running a basic Laravel application.",
  9947. "keywords": [
  9948. "docker",
  9949. "laravel"
  9950. ],
  9951. "support": {
  9952. "issues": "https://github.com/laravel/sail/issues",
  9953. "source": "https://github.com/laravel/sail"
  9954. },
  9955. "time": "2023-01-31T13:37:57+00:00"
  9956. },
  9957. {
  9958. "name": "mockery/mockery",
  9959. "version": "1.6.12",
  9960. "source": {
  9961. "type": "git",
  9962. "url": "https://github.com/mockery/mockery.git",
  9963. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9964. },
  9965. "dist": {
  9966. "type": "zip",
  9967. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9968. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9969. "shasum": "",
  9970. "mirrors": [
  9971. {
  9972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9973. "preferred": true
  9974. }
  9975. ]
  9976. },
  9977. "require": {
  9978. "hamcrest/hamcrest-php": "^2.0.1",
  9979. "lib-pcre": ">=7.0",
  9980. "php": ">=7.3"
  9981. },
  9982. "conflict": {
  9983. "phpunit/phpunit": "<8.0"
  9984. },
  9985. "require-dev": {
  9986. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9987. "symplify/easy-coding-standard": "^12.1.14"
  9988. },
  9989. "type": "library",
  9990. "autoload": {
  9991. "files": [
  9992. "library/helpers.php",
  9993. "library/Mockery.php"
  9994. ],
  9995. "psr-4": {
  9996. "Mockery\\": "library/Mockery"
  9997. }
  9998. },
  9999. "notification-url": "https://packagist.org/downloads/",
  10000. "license": [
  10001. "BSD-3-Clause"
  10002. ],
  10003. "authors": [
  10004. {
  10005. "name": "Pádraic Brady",
  10006. "email": "padraic.brady@gmail.com",
  10007. "homepage": "https://github.com/padraic",
  10008. "role": "Author"
  10009. },
  10010. {
  10011. "name": "Dave Marshall",
  10012. "email": "dave.marshall@atstsolutions.co.uk",
  10013. "homepage": "https://davedevelopment.co.uk",
  10014. "role": "Developer"
  10015. },
  10016. {
  10017. "name": "Nathanael Esayeas",
  10018. "email": "nathanael.esayeas@protonmail.com",
  10019. "homepage": "https://github.com/ghostwriter",
  10020. "role": "Lead Developer"
  10021. }
  10022. ],
  10023. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10024. "homepage": "https://github.com/mockery/mockery",
  10025. "keywords": [
  10026. "BDD",
  10027. "TDD",
  10028. "library",
  10029. "mock",
  10030. "mock objects",
  10031. "mockery",
  10032. "stub",
  10033. "test",
  10034. "test double",
  10035. "testing"
  10036. ],
  10037. "support": {
  10038. "docs": "https://docs.mockery.io/",
  10039. "issues": "https://github.com/mockery/mockery/issues",
  10040. "rss": "https://github.com/mockery/mockery/releases.atom",
  10041. "security": "https://github.com/mockery/mockery/security/advisories",
  10042. "source": "https://github.com/mockery/mockery"
  10043. },
  10044. "time": "2024-05-16T03:13:13+00:00"
  10045. },
  10046. {
  10047. "name": "myclabs/deep-copy",
  10048. "version": "1.13.3",
  10049. "source": {
  10050. "type": "git",
  10051. "url": "https://github.com/myclabs/DeepCopy.git",
  10052. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  10053. },
  10054. "dist": {
  10055. "type": "zip",
  10056. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  10057. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  10058. "shasum": "",
  10059. "mirrors": [
  10060. {
  10061. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10062. "preferred": true
  10063. }
  10064. ]
  10065. },
  10066. "require": {
  10067. "php": "^7.1 || ^8.0"
  10068. },
  10069. "conflict": {
  10070. "doctrine/collections": "<1.6.8",
  10071. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  10072. },
  10073. "require-dev": {
  10074. "doctrine/collections": "^1.6.8",
  10075. "doctrine/common": "^2.13.3 || ^3.2.2",
  10076. "phpspec/prophecy": "^1.10",
  10077. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10078. },
  10079. "type": "library",
  10080. "autoload": {
  10081. "files": [
  10082. "src/DeepCopy/deep_copy.php"
  10083. ],
  10084. "psr-4": {
  10085. "DeepCopy\\": "src/DeepCopy/"
  10086. }
  10087. },
  10088. "notification-url": "https://packagist.org/downloads/",
  10089. "license": [
  10090. "MIT"
  10091. ],
  10092. "description": "Create deep copies (clones) of your objects",
  10093. "keywords": [
  10094. "clone",
  10095. "copy",
  10096. "duplicate",
  10097. "object",
  10098. "object graph"
  10099. ],
  10100. "support": {
  10101. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10102. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  10103. },
  10104. "funding": [
  10105. {
  10106. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10107. "type": "tidelift"
  10108. }
  10109. ],
  10110. "time": "2025-07-05T12:25:42+00:00"
  10111. },
  10112. {
  10113. "name": "nunomaduro/collision",
  10114. "version": "v5.11.0",
  10115. "source": {
  10116. "type": "git",
  10117. "url": "https://github.com/nunomaduro/collision.git",
  10118. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  10119. },
  10120. "dist": {
  10121. "type": "zip",
  10122. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  10123. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  10124. "shasum": "",
  10125. "mirrors": [
  10126. {
  10127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10128. "preferred": true
  10129. }
  10130. ]
  10131. },
  10132. "require": {
  10133. "facade/ignition-contracts": "^1.0",
  10134. "filp/whoops": "^2.14.3",
  10135. "php": "^7.3 || ^8.0",
  10136. "symfony/console": "^5.0"
  10137. },
  10138. "require-dev": {
  10139. "brianium/paratest": "^6.1",
  10140. "fideloper/proxy": "^4.4.1",
  10141. "fruitcake/laravel-cors": "^2.0.3",
  10142. "laravel/framework": "8.x-dev",
  10143. "nunomaduro/larastan": "^0.6.2",
  10144. "nunomaduro/mock-final-classes": "^1.0",
  10145. "orchestra/testbench": "^6.0",
  10146. "phpstan/phpstan": "^0.12.64",
  10147. "phpunit/phpunit": "^9.5.0"
  10148. },
  10149. "type": "library",
  10150. "extra": {
  10151. "laravel": {
  10152. "providers": [
  10153. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10154. ]
  10155. }
  10156. },
  10157. "autoload": {
  10158. "psr-4": {
  10159. "NunoMaduro\\Collision\\": "src/"
  10160. }
  10161. },
  10162. "notification-url": "https://packagist.org/downloads/",
  10163. "license": [
  10164. "MIT"
  10165. ],
  10166. "authors": [
  10167. {
  10168. "name": "Nuno Maduro",
  10169. "email": "enunomaduro@gmail.com"
  10170. }
  10171. ],
  10172. "description": "Cli error handling for console/command-line PHP applications.",
  10173. "keywords": [
  10174. "artisan",
  10175. "cli",
  10176. "command-line",
  10177. "console",
  10178. "error",
  10179. "handling",
  10180. "laravel",
  10181. "laravel-zero",
  10182. "php",
  10183. "symfony"
  10184. ],
  10185. "support": {
  10186. "issues": "https://github.com/nunomaduro/collision/issues",
  10187. "source": "https://github.com/nunomaduro/collision"
  10188. },
  10189. "funding": [
  10190. {
  10191. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10192. "type": "custom"
  10193. },
  10194. {
  10195. "url": "https://github.com/nunomaduro",
  10196. "type": "github"
  10197. },
  10198. {
  10199. "url": "https://www.patreon.com/nunomaduro",
  10200. "type": "patreon"
  10201. }
  10202. ],
  10203. "time": "2022-01-10T16:22:52+00:00"
  10204. },
  10205. {
  10206. "name": "phar-io/manifest",
  10207. "version": "dev-master",
  10208. "source": {
  10209. "type": "git",
  10210. "url": "https://github.com/phar-io/manifest.git",
  10211. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10212. },
  10213. "dist": {
  10214. "type": "zip",
  10215. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10216. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10217. "shasum": "",
  10218. "mirrors": [
  10219. {
  10220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10221. "preferred": true
  10222. }
  10223. ]
  10224. },
  10225. "require": {
  10226. "ext-dom": "*",
  10227. "ext-libxml": "*",
  10228. "ext-phar": "*",
  10229. "ext-xmlwriter": "*",
  10230. "phar-io/version": "^3.0.1",
  10231. "php": "^7.2 || ^8.0"
  10232. },
  10233. "default-branch": true,
  10234. "type": "library",
  10235. "extra": {
  10236. "branch-alias": {
  10237. "dev-master": "2.0.x-dev"
  10238. }
  10239. },
  10240. "autoload": {
  10241. "classmap": [
  10242. "src/"
  10243. ]
  10244. },
  10245. "notification-url": "https://packagist.org/downloads/",
  10246. "license": [
  10247. "BSD-3-Clause"
  10248. ],
  10249. "authors": [
  10250. {
  10251. "name": "Arne Blankerts",
  10252. "email": "arne@blankerts.de",
  10253. "role": "Developer"
  10254. },
  10255. {
  10256. "name": "Sebastian Heuer",
  10257. "email": "sebastian@phpeople.de",
  10258. "role": "Developer"
  10259. },
  10260. {
  10261. "name": "Sebastian Bergmann",
  10262. "email": "sebastian@phpunit.de",
  10263. "role": "Developer"
  10264. }
  10265. ],
  10266. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10267. "support": {
  10268. "issues": "https://github.com/phar-io/manifest/issues",
  10269. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10270. },
  10271. "funding": [
  10272. {
  10273. "url": "https://github.com/theseer",
  10274. "type": "github"
  10275. }
  10276. ],
  10277. "time": "2024-03-03T12:33:53+00:00"
  10278. },
  10279. {
  10280. "name": "phar-io/version",
  10281. "version": "3.2.1",
  10282. "source": {
  10283. "type": "git",
  10284. "url": "https://github.com/phar-io/version.git",
  10285. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10286. },
  10287. "dist": {
  10288. "type": "zip",
  10289. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10290. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10291. "shasum": "",
  10292. "mirrors": [
  10293. {
  10294. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10295. "preferred": true
  10296. }
  10297. ]
  10298. },
  10299. "require": {
  10300. "php": "^7.2 || ^8.0"
  10301. },
  10302. "type": "library",
  10303. "autoload": {
  10304. "classmap": [
  10305. "src/"
  10306. ]
  10307. },
  10308. "notification-url": "https://packagist.org/downloads/",
  10309. "license": [
  10310. "BSD-3-Clause"
  10311. ],
  10312. "authors": [
  10313. {
  10314. "name": "Arne Blankerts",
  10315. "email": "arne@blankerts.de",
  10316. "role": "Developer"
  10317. },
  10318. {
  10319. "name": "Sebastian Heuer",
  10320. "email": "sebastian@phpeople.de",
  10321. "role": "Developer"
  10322. },
  10323. {
  10324. "name": "Sebastian Bergmann",
  10325. "email": "sebastian@phpunit.de",
  10326. "role": "Developer"
  10327. }
  10328. ],
  10329. "description": "Library for handling version information and constraints",
  10330. "support": {
  10331. "issues": "https://github.com/phar-io/version/issues",
  10332. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10333. },
  10334. "time": "2022-02-21T01:04:05+00:00"
  10335. },
  10336. {
  10337. "name": "phpunit/php-code-coverage",
  10338. "version": "9.2.32",
  10339. "source": {
  10340. "type": "git",
  10341. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10342. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  10343. },
  10344. "dist": {
  10345. "type": "zip",
  10346. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  10347. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  10348. "shasum": "",
  10349. "mirrors": [
  10350. {
  10351. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10352. "preferred": true
  10353. }
  10354. ]
  10355. },
  10356. "require": {
  10357. "ext-dom": "*",
  10358. "ext-libxml": "*",
  10359. "ext-xmlwriter": "*",
  10360. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  10361. "php": ">=7.3",
  10362. "phpunit/php-file-iterator": "^3.0.6",
  10363. "phpunit/php-text-template": "^2.0.4",
  10364. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  10365. "sebastian/complexity": "^2.0.3",
  10366. "sebastian/environment": "^5.1.5",
  10367. "sebastian/lines-of-code": "^1.0.4",
  10368. "sebastian/version": "^3.0.2",
  10369. "theseer/tokenizer": "^1.2.3"
  10370. },
  10371. "require-dev": {
  10372. "phpunit/phpunit": "^9.6"
  10373. },
  10374. "suggest": {
  10375. "ext-pcov": "PHP extension that provides line coverage",
  10376. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10377. },
  10378. "type": "library",
  10379. "extra": {
  10380. "branch-alias": {
  10381. "dev-main": "9.2.x-dev"
  10382. }
  10383. },
  10384. "autoload": {
  10385. "classmap": [
  10386. "src/"
  10387. ]
  10388. },
  10389. "notification-url": "https://packagist.org/downloads/",
  10390. "license": [
  10391. "BSD-3-Clause"
  10392. ],
  10393. "authors": [
  10394. {
  10395. "name": "Sebastian Bergmann",
  10396. "email": "sebastian@phpunit.de",
  10397. "role": "lead"
  10398. }
  10399. ],
  10400. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10401. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10402. "keywords": [
  10403. "coverage",
  10404. "testing",
  10405. "xunit"
  10406. ],
  10407. "support": {
  10408. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10409. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  10410. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  10411. },
  10412. "funding": [
  10413. {
  10414. "url": "https://github.com/sebastianbergmann",
  10415. "type": "github"
  10416. }
  10417. ],
  10418. "time": "2024-08-22T04:23:01+00:00"
  10419. },
  10420. {
  10421. "name": "phpunit/php-file-iterator",
  10422. "version": "3.0.6",
  10423. "source": {
  10424. "type": "git",
  10425. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10426. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  10427. },
  10428. "dist": {
  10429. "type": "zip",
  10430. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  10431. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  10432. "shasum": "",
  10433. "mirrors": [
  10434. {
  10435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10436. "preferred": true
  10437. }
  10438. ]
  10439. },
  10440. "require": {
  10441. "php": ">=7.3"
  10442. },
  10443. "require-dev": {
  10444. "phpunit/phpunit": "^9.3"
  10445. },
  10446. "type": "library",
  10447. "extra": {
  10448. "branch-alias": {
  10449. "dev-master": "3.0-dev"
  10450. }
  10451. },
  10452. "autoload": {
  10453. "classmap": [
  10454. "src/"
  10455. ]
  10456. },
  10457. "notification-url": "https://packagist.org/downloads/",
  10458. "license": [
  10459. "BSD-3-Clause"
  10460. ],
  10461. "authors": [
  10462. {
  10463. "name": "Sebastian Bergmann",
  10464. "email": "sebastian@phpunit.de",
  10465. "role": "lead"
  10466. }
  10467. ],
  10468. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10469. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10470. "keywords": [
  10471. "filesystem",
  10472. "iterator"
  10473. ],
  10474. "support": {
  10475. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10476. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  10477. },
  10478. "funding": [
  10479. {
  10480. "url": "https://github.com/sebastianbergmann",
  10481. "type": "github"
  10482. }
  10483. ],
  10484. "time": "2021-12-02T12:48:52+00:00"
  10485. },
  10486. {
  10487. "name": "phpunit/php-invoker",
  10488. "version": "3.1.1",
  10489. "source": {
  10490. "type": "git",
  10491. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10492. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  10493. },
  10494. "dist": {
  10495. "type": "zip",
  10496. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10497. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10498. "shasum": "",
  10499. "mirrors": [
  10500. {
  10501. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10502. "preferred": true
  10503. }
  10504. ]
  10505. },
  10506. "require": {
  10507. "php": ">=7.3"
  10508. },
  10509. "require-dev": {
  10510. "ext-pcntl": "*",
  10511. "phpunit/phpunit": "^9.3"
  10512. },
  10513. "suggest": {
  10514. "ext-pcntl": "*"
  10515. },
  10516. "type": "library",
  10517. "extra": {
  10518. "branch-alias": {
  10519. "dev-master": "3.1-dev"
  10520. }
  10521. },
  10522. "autoload": {
  10523. "classmap": [
  10524. "src/"
  10525. ]
  10526. },
  10527. "notification-url": "https://packagist.org/downloads/",
  10528. "license": [
  10529. "BSD-3-Clause"
  10530. ],
  10531. "authors": [
  10532. {
  10533. "name": "Sebastian Bergmann",
  10534. "email": "sebastian@phpunit.de",
  10535. "role": "lead"
  10536. }
  10537. ],
  10538. "description": "Invoke callables with a timeout",
  10539. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10540. "keywords": [
  10541. "process"
  10542. ],
  10543. "support": {
  10544. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10545. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  10546. },
  10547. "funding": [
  10548. {
  10549. "url": "https://github.com/sebastianbergmann",
  10550. "type": "github"
  10551. }
  10552. ],
  10553. "time": "2020-09-28T05:58:55+00:00"
  10554. },
  10555. {
  10556. "name": "phpunit/php-text-template",
  10557. "version": "2.0.4",
  10558. "source": {
  10559. "type": "git",
  10560. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10561. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10562. },
  10563. "dist": {
  10564. "type": "zip",
  10565. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10566. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10567. "shasum": "",
  10568. "mirrors": [
  10569. {
  10570. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10571. "preferred": true
  10572. }
  10573. ]
  10574. },
  10575. "require": {
  10576. "php": ">=7.3"
  10577. },
  10578. "require-dev": {
  10579. "phpunit/phpunit": "^9.3"
  10580. },
  10581. "type": "library",
  10582. "extra": {
  10583. "branch-alias": {
  10584. "dev-master": "2.0-dev"
  10585. }
  10586. },
  10587. "autoload": {
  10588. "classmap": [
  10589. "src/"
  10590. ]
  10591. },
  10592. "notification-url": "https://packagist.org/downloads/",
  10593. "license": [
  10594. "BSD-3-Clause"
  10595. ],
  10596. "authors": [
  10597. {
  10598. "name": "Sebastian Bergmann",
  10599. "email": "sebastian@phpunit.de",
  10600. "role": "lead"
  10601. }
  10602. ],
  10603. "description": "Simple template engine.",
  10604. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10605. "keywords": [
  10606. "template"
  10607. ],
  10608. "support": {
  10609. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10610. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10611. },
  10612. "funding": [
  10613. {
  10614. "url": "https://github.com/sebastianbergmann",
  10615. "type": "github"
  10616. }
  10617. ],
  10618. "time": "2020-10-26T05:33:50+00:00"
  10619. },
  10620. {
  10621. "name": "phpunit/php-timer",
  10622. "version": "5.0.3",
  10623. "source": {
  10624. "type": "git",
  10625. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10626. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10627. },
  10628. "dist": {
  10629. "type": "zip",
  10630. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10631. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10632. "shasum": "",
  10633. "mirrors": [
  10634. {
  10635. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10636. "preferred": true
  10637. }
  10638. ]
  10639. },
  10640. "require": {
  10641. "php": ">=7.3"
  10642. },
  10643. "require-dev": {
  10644. "phpunit/phpunit": "^9.3"
  10645. },
  10646. "type": "library",
  10647. "extra": {
  10648. "branch-alias": {
  10649. "dev-master": "5.0-dev"
  10650. }
  10651. },
  10652. "autoload": {
  10653. "classmap": [
  10654. "src/"
  10655. ]
  10656. },
  10657. "notification-url": "https://packagist.org/downloads/",
  10658. "license": [
  10659. "BSD-3-Clause"
  10660. ],
  10661. "authors": [
  10662. {
  10663. "name": "Sebastian Bergmann",
  10664. "email": "sebastian@phpunit.de",
  10665. "role": "lead"
  10666. }
  10667. ],
  10668. "description": "Utility class for timing",
  10669. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10670. "keywords": [
  10671. "timer"
  10672. ],
  10673. "support": {
  10674. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10675. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10676. },
  10677. "funding": [
  10678. {
  10679. "url": "https://github.com/sebastianbergmann",
  10680. "type": "github"
  10681. }
  10682. ],
  10683. "time": "2020-10-26T13:16:10+00:00"
  10684. },
  10685. {
  10686. "name": "phpunit/phpunit",
  10687. "version": "9.6.22",
  10688. "source": {
  10689. "type": "git",
  10690. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10691. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c"
  10692. },
  10693. "dist": {
  10694. "type": "zip",
  10695. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  10696. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  10697. "shasum": "",
  10698. "mirrors": [
  10699. {
  10700. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10701. "preferred": true
  10702. }
  10703. ]
  10704. },
  10705. "require": {
  10706. "doctrine/instantiator": "^1.5.0 || ^2",
  10707. "ext-dom": "*",
  10708. "ext-json": "*",
  10709. "ext-libxml": "*",
  10710. "ext-mbstring": "*",
  10711. "ext-xml": "*",
  10712. "ext-xmlwriter": "*",
  10713. "myclabs/deep-copy": "^1.12.1",
  10714. "phar-io/manifest": "^2.0.4",
  10715. "phar-io/version": "^3.2.1",
  10716. "php": ">=7.3",
  10717. "phpunit/php-code-coverage": "^9.2.32",
  10718. "phpunit/php-file-iterator": "^3.0.6",
  10719. "phpunit/php-invoker": "^3.1.1",
  10720. "phpunit/php-text-template": "^2.0.4",
  10721. "phpunit/php-timer": "^5.0.3",
  10722. "sebastian/cli-parser": "^1.0.2",
  10723. "sebastian/code-unit": "^1.0.8",
  10724. "sebastian/comparator": "^4.0.8",
  10725. "sebastian/diff": "^4.0.6",
  10726. "sebastian/environment": "^5.1.5",
  10727. "sebastian/exporter": "^4.0.6",
  10728. "sebastian/global-state": "^5.0.7",
  10729. "sebastian/object-enumerator": "^4.0.4",
  10730. "sebastian/resource-operations": "^3.0.4",
  10731. "sebastian/type": "^3.2.1",
  10732. "sebastian/version": "^3.0.2"
  10733. },
  10734. "suggest": {
  10735. "ext-soap": "To be able to generate mocks based on WSDL files",
  10736. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10737. },
  10738. "bin": [
  10739. "phpunit"
  10740. ],
  10741. "type": "library",
  10742. "extra": {
  10743. "branch-alias": {
  10744. "dev-master": "9.6-dev"
  10745. }
  10746. },
  10747. "autoload": {
  10748. "files": [
  10749. "src/Framework/Assert/Functions.php"
  10750. ],
  10751. "classmap": [
  10752. "src/"
  10753. ]
  10754. },
  10755. "notification-url": "https://packagist.org/downloads/",
  10756. "license": [
  10757. "BSD-3-Clause"
  10758. ],
  10759. "authors": [
  10760. {
  10761. "name": "Sebastian Bergmann",
  10762. "email": "sebastian@phpunit.de",
  10763. "role": "lead"
  10764. }
  10765. ],
  10766. "description": "The PHP Unit Testing framework.",
  10767. "homepage": "https://phpunit.de/",
  10768. "keywords": [
  10769. "phpunit",
  10770. "testing",
  10771. "xunit"
  10772. ],
  10773. "support": {
  10774. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10775. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10776. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.22"
  10777. },
  10778. "funding": [
  10779. {
  10780. "url": "https://phpunit.de/sponsors.html",
  10781. "type": "custom"
  10782. },
  10783. {
  10784. "url": "https://github.com/sebastianbergmann",
  10785. "type": "github"
  10786. },
  10787. {
  10788. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10789. "type": "tidelift"
  10790. }
  10791. ],
  10792. "time": "2024-12-05T13:48:26+00:00"
  10793. },
  10794. {
  10795. "name": "sebastian/cli-parser",
  10796. "version": "1.0.2",
  10797. "source": {
  10798. "type": "git",
  10799. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10800. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  10801. },
  10802. "dist": {
  10803. "type": "zip",
  10804. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  10805. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  10806. "shasum": "",
  10807. "mirrors": [
  10808. {
  10809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10810. "preferred": true
  10811. }
  10812. ]
  10813. },
  10814. "require": {
  10815. "php": ">=7.3"
  10816. },
  10817. "require-dev": {
  10818. "phpunit/phpunit": "^9.3"
  10819. },
  10820. "type": "library",
  10821. "extra": {
  10822. "branch-alias": {
  10823. "dev-master": "1.0-dev"
  10824. }
  10825. },
  10826. "autoload": {
  10827. "classmap": [
  10828. "src/"
  10829. ]
  10830. },
  10831. "notification-url": "https://packagist.org/downloads/",
  10832. "license": [
  10833. "BSD-3-Clause"
  10834. ],
  10835. "authors": [
  10836. {
  10837. "name": "Sebastian Bergmann",
  10838. "email": "sebastian@phpunit.de",
  10839. "role": "lead"
  10840. }
  10841. ],
  10842. "description": "Library for parsing CLI options",
  10843. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10844. "support": {
  10845. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10846. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  10847. },
  10848. "funding": [
  10849. {
  10850. "url": "https://github.com/sebastianbergmann",
  10851. "type": "github"
  10852. }
  10853. ],
  10854. "time": "2024-03-02T06:27:43+00:00"
  10855. },
  10856. {
  10857. "name": "sebastian/code-unit",
  10858. "version": "1.0.8",
  10859. "source": {
  10860. "type": "git",
  10861. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10862. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10863. },
  10864. "dist": {
  10865. "type": "zip",
  10866. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10867. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10868. "shasum": "",
  10869. "mirrors": [
  10870. {
  10871. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10872. "preferred": true
  10873. }
  10874. ]
  10875. },
  10876. "require": {
  10877. "php": ">=7.3"
  10878. },
  10879. "require-dev": {
  10880. "phpunit/phpunit": "^9.3"
  10881. },
  10882. "type": "library",
  10883. "extra": {
  10884. "branch-alias": {
  10885. "dev-master": "1.0-dev"
  10886. }
  10887. },
  10888. "autoload": {
  10889. "classmap": [
  10890. "src/"
  10891. ]
  10892. },
  10893. "notification-url": "https://packagist.org/downloads/",
  10894. "license": [
  10895. "BSD-3-Clause"
  10896. ],
  10897. "authors": [
  10898. {
  10899. "name": "Sebastian Bergmann",
  10900. "email": "sebastian@phpunit.de",
  10901. "role": "lead"
  10902. }
  10903. ],
  10904. "description": "Collection of value objects that represent the PHP code units",
  10905. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10906. "support": {
  10907. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10908. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10909. },
  10910. "funding": [
  10911. {
  10912. "url": "https://github.com/sebastianbergmann",
  10913. "type": "github"
  10914. }
  10915. ],
  10916. "time": "2020-10-26T13:08:54+00:00"
  10917. },
  10918. {
  10919. "name": "sebastian/code-unit-reverse-lookup",
  10920. "version": "2.0.3",
  10921. "source": {
  10922. "type": "git",
  10923. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10924. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10925. },
  10926. "dist": {
  10927. "type": "zip",
  10928. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10929. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10930. "shasum": "",
  10931. "mirrors": [
  10932. {
  10933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10934. "preferred": true
  10935. }
  10936. ]
  10937. },
  10938. "require": {
  10939. "php": ">=7.3"
  10940. },
  10941. "require-dev": {
  10942. "phpunit/phpunit": "^9.3"
  10943. },
  10944. "type": "library",
  10945. "extra": {
  10946. "branch-alias": {
  10947. "dev-master": "2.0-dev"
  10948. }
  10949. },
  10950. "autoload": {
  10951. "classmap": [
  10952. "src/"
  10953. ]
  10954. },
  10955. "notification-url": "https://packagist.org/downloads/",
  10956. "license": [
  10957. "BSD-3-Clause"
  10958. ],
  10959. "authors": [
  10960. {
  10961. "name": "Sebastian Bergmann",
  10962. "email": "sebastian@phpunit.de"
  10963. }
  10964. ],
  10965. "description": "Looks up which function or method a line of code belongs to",
  10966. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10967. "support": {
  10968. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10969. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10970. },
  10971. "funding": [
  10972. {
  10973. "url": "https://github.com/sebastianbergmann",
  10974. "type": "github"
  10975. }
  10976. ],
  10977. "time": "2020-09-28T05:30:19+00:00"
  10978. },
  10979. {
  10980. "name": "sebastian/comparator",
  10981. "version": "4.0.8",
  10982. "source": {
  10983. "type": "git",
  10984. "url": "https://github.com/sebastianbergmann/comparator.git",
  10985. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  10986. },
  10987. "dist": {
  10988. "type": "zip",
  10989. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  10990. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  10991. "shasum": "",
  10992. "mirrors": [
  10993. {
  10994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10995. "preferred": true
  10996. }
  10997. ]
  10998. },
  10999. "require": {
  11000. "php": ">=7.3",
  11001. "sebastian/diff": "^4.0",
  11002. "sebastian/exporter": "^4.0"
  11003. },
  11004. "require-dev": {
  11005. "phpunit/phpunit": "^9.3"
  11006. },
  11007. "type": "library",
  11008. "extra": {
  11009. "branch-alias": {
  11010. "dev-master": "4.0-dev"
  11011. }
  11012. },
  11013. "autoload": {
  11014. "classmap": [
  11015. "src/"
  11016. ]
  11017. },
  11018. "notification-url": "https://packagist.org/downloads/",
  11019. "license": [
  11020. "BSD-3-Clause"
  11021. ],
  11022. "authors": [
  11023. {
  11024. "name": "Sebastian Bergmann",
  11025. "email": "sebastian@phpunit.de"
  11026. },
  11027. {
  11028. "name": "Jeff Welch",
  11029. "email": "whatthejeff@gmail.com"
  11030. },
  11031. {
  11032. "name": "Volker Dusch",
  11033. "email": "github@wallbash.com"
  11034. },
  11035. {
  11036. "name": "Bernhard Schussek",
  11037. "email": "bschussek@2bepublished.at"
  11038. }
  11039. ],
  11040. "description": "Provides the functionality to compare PHP values for equality",
  11041. "homepage": "https://github.com/sebastianbergmann/comparator",
  11042. "keywords": [
  11043. "comparator",
  11044. "compare",
  11045. "equality"
  11046. ],
  11047. "support": {
  11048. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11049. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  11050. },
  11051. "funding": [
  11052. {
  11053. "url": "https://github.com/sebastianbergmann",
  11054. "type": "github"
  11055. }
  11056. ],
  11057. "time": "2022-09-14T12:41:17+00:00"
  11058. },
  11059. {
  11060. "name": "sebastian/complexity",
  11061. "version": "2.0.3",
  11062. "source": {
  11063. "type": "git",
  11064. "url": "https://github.com/sebastianbergmann/complexity.git",
  11065. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  11066. },
  11067. "dist": {
  11068. "type": "zip",
  11069. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  11070. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  11071. "shasum": "",
  11072. "mirrors": [
  11073. {
  11074. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11075. "preferred": true
  11076. }
  11077. ]
  11078. },
  11079. "require": {
  11080. "nikic/php-parser": "^4.18 || ^5.0",
  11081. "php": ">=7.3"
  11082. },
  11083. "require-dev": {
  11084. "phpunit/phpunit": "^9.3"
  11085. },
  11086. "type": "library",
  11087. "extra": {
  11088. "branch-alias": {
  11089. "dev-master": "2.0-dev"
  11090. }
  11091. },
  11092. "autoload": {
  11093. "classmap": [
  11094. "src/"
  11095. ]
  11096. },
  11097. "notification-url": "https://packagist.org/downloads/",
  11098. "license": [
  11099. "BSD-3-Clause"
  11100. ],
  11101. "authors": [
  11102. {
  11103. "name": "Sebastian Bergmann",
  11104. "email": "sebastian@phpunit.de",
  11105. "role": "lead"
  11106. }
  11107. ],
  11108. "description": "Library for calculating the complexity of PHP code units",
  11109. "homepage": "https://github.com/sebastianbergmann/complexity",
  11110. "support": {
  11111. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11112. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  11113. },
  11114. "funding": [
  11115. {
  11116. "url": "https://github.com/sebastianbergmann",
  11117. "type": "github"
  11118. }
  11119. ],
  11120. "time": "2023-12-22T06:19:30+00:00"
  11121. },
  11122. {
  11123. "name": "sebastian/diff",
  11124. "version": "4.0.6",
  11125. "source": {
  11126. "type": "git",
  11127. "url": "https://github.com/sebastianbergmann/diff.git",
  11128. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  11129. },
  11130. "dist": {
  11131. "type": "zip",
  11132. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  11133. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  11134. "shasum": "",
  11135. "mirrors": [
  11136. {
  11137. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11138. "preferred": true
  11139. }
  11140. ]
  11141. },
  11142. "require": {
  11143. "php": ">=7.3"
  11144. },
  11145. "require-dev": {
  11146. "phpunit/phpunit": "^9.3",
  11147. "symfony/process": "^4.2 || ^5"
  11148. },
  11149. "type": "library",
  11150. "extra": {
  11151. "branch-alias": {
  11152. "dev-master": "4.0-dev"
  11153. }
  11154. },
  11155. "autoload": {
  11156. "classmap": [
  11157. "src/"
  11158. ]
  11159. },
  11160. "notification-url": "https://packagist.org/downloads/",
  11161. "license": [
  11162. "BSD-3-Clause"
  11163. ],
  11164. "authors": [
  11165. {
  11166. "name": "Sebastian Bergmann",
  11167. "email": "sebastian@phpunit.de"
  11168. },
  11169. {
  11170. "name": "Kore Nordmann",
  11171. "email": "mail@kore-nordmann.de"
  11172. }
  11173. ],
  11174. "description": "Diff implementation",
  11175. "homepage": "https://github.com/sebastianbergmann/diff",
  11176. "keywords": [
  11177. "diff",
  11178. "udiff",
  11179. "unidiff",
  11180. "unified diff"
  11181. ],
  11182. "support": {
  11183. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11184. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  11185. },
  11186. "funding": [
  11187. {
  11188. "url": "https://github.com/sebastianbergmann",
  11189. "type": "github"
  11190. }
  11191. ],
  11192. "time": "2024-03-02T06:30:58+00:00"
  11193. },
  11194. {
  11195. "name": "sebastian/environment",
  11196. "version": "5.1.5",
  11197. "source": {
  11198. "type": "git",
  11199. "url": "https://github.com/sebastianbergmann/environment.git",
  11200. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  11201. },
  11202. "dist": {
  11203. "type": "zip",
  11204. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  11205. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  11206. "shasum": "",
  11207. "mirrors": [
  11208. {
  11209. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11210. "preferred": true
  11211. }
  11212. ]
  11213. },
  11214. "require": {
  11215. "php": ">=7.3"
  11216. },
  11217. "require-dev": {
  11218. "phpunit/phpunit": "^9.3"
  11219. },
  11220. "suggest": {
  11221. "ext-posix": "*"
  11222. },
  11223. "type": "library",
  11224. "extra": {
  11225. "branch-alias": {
  11226. "dev-master": "5.1-dev"
  11227. }
  11228. },
  11229. "autoload": {
  11230. "classmap": [
  11231. "src/"
  11232. ]
  11233. },
  11234. "notification-url": "https://packagist.org/downloads/",
  11235. "license": [
  11236. "BSD-3-Clause"
  11237. ],
  11238. "authors": [
  11239. {
  11240. "name": "Sebastian Bergmann",
  11241. "email": "sebastian@phpunit.de"
  11242. }
  11243. ],
  11244. "description": "Provides functionality to handle HHVM/PHP environments",
  11245. "homepage": "http://www.github.com/sebastianbergmann/environment",
  11246. "keywords": [
  11247. "Xdebug",
  11248. "environment",
  11249. "hhvm"
  11250. ],
  11251. "support": {
  11252. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11253. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  11254. },
  11255. "funding": [
  11256. {
  11257. "url": "https://github.com/sebastianbergmann",
  11258. "type": "github"
  11259. }
  11260. ],
  11261. "time": "2023-02-03T06:03:51+00:00"
  11262. },
  11263. {
  11264. "name": "sebastian/exporter",
  11265. "version": "4.0.6",
  11266. "source": {
  11267. "type": "git",
  11268. "url": "https://github.com/sebastianbergmann/exporter.git",
  11269. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  11270. },
  11271. "dist": {
  11272. "type": "zip",
  11273. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  11274. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  11275. "shasum": "",
  11276. "mirrors": [
  11277. {
  11278. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11279. "preferred": true
  11280. }
  11281. ]
  11282. },
  11283. "require": {
  11284. "php": ">=7.3",
  11285. "sebastian/recursion-context": "^4.0"
  11286. },
  11287. "require-dev": {
  11288. "ext-mbstring": "*",
  11289. "phpunit/phpunit": "^9.3"
  11290. },
  11291. "type": "library",
  11292. "extra": {
  11293. "branch-alias": {
  11294. "dev-master": "4.0-dev"
  11295. }
  11296. },
  11297. "autoload": {
  11298. "classmap": [
  11299. "src/"
  11300. ]
  11301. },
  11302. "notification-url": "https://packagist.org/downloads/",
  11303. "license": [
  11304. "BSD-3-Clause"
  11305. ],
  11306. "authors": [
  11307. {
  11308. "name": "Sebastian Bergmann",
  11309. "email": "sebastian@phpunit.de"
  11310. },
  11311. {
  11312. "name": "Jeff Welch",
  11313. "email": "whatthejeff@gmail.com"
  11314. },
  11315. {
  11316. "name": "Volker Dusch",
  11317. "email": "github@wallbash.com"
  11318. },
  11319. {
  11320. "name": "Adam Harvey",
  11321. "email": "aharvey@php.net"
  11322. },
  11323. {
  11324. "name": "Bernhard Schussek",
  11325. "email": "bschussek@gmail.com"
  11326. }
  11327. ],
  11328. "description": "Provides the functionality to export PHP variables for visualization",
  11329. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11330. "keywords": [
  11331. "export",
  11332. "exporter"
  11333. ],
  11334. "support": {
  11335. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11336. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  11337. },
  11338. "funding": [
  11339. {
  11340. "url": "https://github.com/sebastianbergmann",
  11341. "type": "github"
  11342. }
  11343. ],
  11344. "time": "2024-03-02T06:33:00+00:00"
  11345. },
  11346. {
  11347. "name": "sebastian/global-state",
  11348. "version": "5.0.8",
  11349. "source": {
  11350. "type": "git",
  11351. "url": "https://github.com/sebastianbergmann/global-state.git",
  11352. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
  11353. },
  11354. "dist": {
  11355. "type": "zip",
  11356. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  11357. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  11358. "shasum": "",
  11359. "mirrors": [
  11360. {
  11361. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11362. "preferred": true
  11363. }
  11364. ]
  11365. },
  11366. "require": {
  11367. "php": ">=7.3",
  11368. "sebastian/object-reflector": "^2.0",
  11369. "sebastian/recursion-context": "^4.0"
  11370. },
  11371. "require-dev": {
  11372. "ext-dom": "*",
  11373. "phpunit/phpunit": "^9.3"
  11374. },
  11375. "suggest": {
  11376. "ext-uopz": "*"
  11377. },
  11378. "type": "library",
  11379. "extra": {
  11380. "branch-alias": {
  11381. "dev-master": "5.0-dev"
  11382. }
  11383. },
  11384. "autoload": {
  11385. "classmap": [
  11386. "src/"
  11387. ]
  11388. },
  11389. "notification-url": "https://packagist.org/downloads/",
  11390. "license": [
  11391. "BSD-3-Clause"
  11392. ],
  11393. "authors": [
  11394. {
  11395. "name": "Sebastian Bergmann",
  11396. "email": "sebastian@phpunit.de"
  11397. }
  11398. ],
  11399. "description": "Snapshotting of global state",
  11400. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  11401. "keywords": [
  11402. "global state"
  11403. ],
  11404. "support": {
  11405. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11406. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
  11407. },
  11408. "funding": [
  11409. {
  11410. "url": "https://github.com/sebastianbergmann",
  11411. "type": "github"
  11412. },
  11413. {
  11414. "url": "https://liberapay.com/sebastianbergmann",
  11415. "type": "liberapay"
  11416. },
  11417. {
  11418. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  11419. "type": "thanks_dev"
  11420. },
  11421. {
  11422. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  11423. "type": "tidelift"
  11424. }
  11425. ],
  11426. "time": "2025-08-10T07:10:35+00:00"
  11427. },
  11428. {
  11429. "name": "sebastian/lines-of-code",
  11430. "version": "1.0.4",
  11431. "source": {
  11432. "type": "git",
  11433. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11434. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  11435. },
  11436. "dist": {
  11437. "type": "zip",
  11438. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  11439. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  11440. "shasum": "",
  11441. "mirrors": [
  11442. {
  11443. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11444. "preferred": true
  11445. }
  11446. ]
  11447. },
  11448. "require": {
  11449. "nikic/php-parser": "^4.18 || ^5.0",
  11450. "php": ">=7.3"
  11451. },
  11452. "require-dev": {
  11453. "phpunit/phpunit": "^9.3"
  11454. },
  11455. "type": "library",
  11456. "extra": {
  11457. "branch-alias": {
  11458. "dev-master": "1.0-dev"
  11459. }
  11460. },
  11461. "autoload": {
  11462. "classmap": [
  11463. "src/"
  11464. ]
  11465. },
  11466. "notification-url": "https://packagist.org/downloads/",
  11467. "license": [
  11468. "BSD-3-Clause"
  11469. ],
  11470. "authors": [
  11471. {
  11472. "name": "Sebastian Bergmann",
  11473. "email": "sebastian@phpunit.de",
  11474. "role": "lead"
  11475. }
  11476. ],
  11477. "description": "Library for counting the lines of code in PHP source code",
  11478. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11479. "support": {
  11480. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11481. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  11482. },
  11483. "funding": [
  11484. {
  11485. "url": "https://github.com/sebastianbergmann",
  11486. "type": "github"
  11487. }
  11488. ],
  11489. "time": "2023-12-22T06:20:34+00:00"
  11490. },
  11491. {
  11492. "name": "sebastian/object-enumerator",
  11493. "version": "4.0.4",
  11494. "source": {
  11495. "type": "git",
  11496. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11497. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  11498. },
  11499. "dist": {
  11500. "type": "zip",
  11501. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  11502. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  11503. "shasum": "",
  11504. "mirrors": [
  11505. {
  11506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11507. "preferred": true
  11508. }
  11509. ]
  11510. },
  11511. "require": {
  11512. "php": ">=7.3",
  11513. "sebastian/object-reflector": "^2.0",
  11514. "sebastian/recursion-context": "^4.0"
  11515. },
  11516. "require-dev": {
  11517. "phpunit/phpunit": "^9.3"
  11518. },
  11519. "type": "library",
  11520. "extra": {
  11521. "branch-alias": {
  11522. "dev-master": "4.0-dev"
  11523. }
  11524. },
  11525. "autoload": {
  11526. "classmap": [
  11527. "src/"
  11528. ]
  11529. },
  11530. "notification-url": "https://packagist.org/downloads/",
  11531. "license": [
  11532. "BSD-3-Clause"
  11533. ],
  11534. "authors": [
  11535. {
  11536. "name": "Sebastian Bergmann",
  11537. "email": "sebastian@phpunit.de"
  11538. }
  11539. ],
  11540. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11541. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11542. "support": {
  11543. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11544. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  11545. },
  11546. "funding": [
  11547. {
  11548. "url": "https://github.com/sebastianbergmann",
  11549. "type": "github"
  11550. }
  11551. ],
  11552. "time": "2020-10-26T13:12:34+00:00"
  11553. },
  11554. {
  11555. "name": "sebastian/object-reflector",
  11556. "version": "2.0.4",
  11557. "source": {
  11558. "type": "git",
  11559. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11560. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  11561. },
  11562. "dist": {
  11563. "type": "zip",
  11564. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11565. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11566. "shasum": "",
  11567. "mirrors": [
  11568. {
  11569. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11570. "preferred": true
  11571. }
  11572. ]
  11573. },
  11574. "require": {
  11575. "php": ">=7.3"
  11576. },
  11577. "require-dev": {
  11578. "phpunit/phpunit": "^9.3"
  11579. },
  11580. "type": "library",
  11581. "extra": {
  11582. "branch-alias": {
  11583. "dev-master": "2.0-dev"
  11584. }
  11585. },
  11586. "autoload": {
  11587. "classmap": [
  11588. "src/"
  11589. ]
  11590. },
  11591. "notification-url": "https://packagist.org/downloads/",
  11592. "license": [
  11593. "BSD-3-Clause"
  11594. ],
  11595. "authors": [
  11596. {
  11597. "name": "Sebastian Bergmann",
  11598. "email": "sebastian@phpunit.de"
  11599. }
  11600. ],
  11601. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11602. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11603. "support": {
  11604. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11605. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  11606. },
  11607. "funding": [
  11608. {
  11609. "url": "https://github.com/sebastianbergmann",
  11610. "type": "github"
  11611. }
  11612. ],
  11613. "time": "2020-10-26T13:14:26+00:00"
  11614. },
  11615. {
  11616. "name": "sebastian/recursion-context",
  11617. "version": "4.0.5",
  11618. "source": {
  11619. "type": "git",
  11620. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11621. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  11622. },
  11623. "dist": {
  11624. "type": "zip",
  11625. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  11626. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  11627. "shasum": "",
  11628. "mirrors": [
  11629. {
  11630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11631. "preferred": true
  11632. }
  11633. ]
  11634. },
  11635. "require": {
  11636. "php": ">=7.3"
  11637. },
  11638. "require-dev": {
  11639. "phpunit/phpunit": "^9.3"
  11640. },
  11641. "type": "library",
  11642. "extra": {
  11643. "branch-alias": {
  11644. "dev-master": "4.0-dev"
  11645. }
  11646. },
  11647. "autoload": {
  11648. "classmap": [
  11649. "src/"
  11650. ]
  11651. },
  11652. "notification-url": "https://packagist.org/downloads/",
  11653. "license": [
  11654. "BSD-3-Clause"
  11655. ],
  11656. "authors": [
  11657. {
  11658. "name": "Sebastian Bergmann",
  11659. "email": "sebastian@phpunit.de"
  11660. },
  11661. {
  11662. "name": "Jeff Welch",
  11663. "email": "whatthejeff@gmail.com"
  11664. },
  11665. {
  11666. "name": "Adam Harvey",
  11667. "email": "aharvey@php.net"
  11668. }
  11669. ],
  11670. "description": "Provides functionality to recursively process PHP variables",
  11671. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11672. "support": {
  11673. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11674. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  11675. },
  11676. "funding": [
  11677. {
  11678. "url": "https://github.com/sebastianbergmann",
  11679. "type": "github"
  11680. }
  11681. ],
  11682. "time": "2023-02-03T06:07:39+00:00"
  11683. },
  11684. {
  11685. "name": "sebastian/resource-operations",
  11686. "version": "3.0.4",
  11687. "source": {
  11688. "type": "git",
  11689. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11690. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  11691. },
  11692. "dist": {
  11693. "type": "zip",
  11694. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  11695. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  11696. "shasum": "",
  11697. "mirrors": [
  11698. {
  11699. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11700. "preferred": true
  11701. }
  11702. ]
  11703. },
  11704. "require": {
  11705. "php": ">=7.3"
  11706. },
  11707. "require-dev": {
  11708. "phpunit/phpunit": "^9.0"
  11709. },
  11710. "type": "library",
  11711. "extra": {
  11712. "branch-alias": {
  11713. "dev-main": "3.0-dev"
  11714. }
  11715. },
  11716. "autoload": {
  11717. "classmap": [
  11718. "src/"
  11719. ]
  11720. },
  11721. "notification-url": "https://packagist.org/downloads/",
  11722. "license": [
  11723. "BSD-3-Clause"
  11724. ],
  11725. "authors": [
  11726. {
  11727. "name": "Sebastian Bergmann",
  11728. "email": "sebastian@phpunit.de"
  11729. }
  11730. ],
  11731. "description": "Provides a list of PHP built-in functions that operate on resources",
  11732. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11733. "support": {
  11734. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  11735. },
  11736. "funding": [
  11737. {
  11738. "url": "https://github.com/sebastianbergmann",
  11739. "type": "github"
  11740. }
  11741. ],
  11742. "abandoned": true,
  11743. "time": "2024-03-14T16:00:52+00:00"
  11744. },
  11745. {
  11746. "name": "sebastian/type",
  11747. "version": "3.2.1",
  11748. "source": {
  11749. "type": "git",
  11750. "url": "https://github.com/sebastianbergmann/type.git",
  11751. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  11752. },
  11753. "dist": {
  11754. "type": "zip",
  11755. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11756. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11757. "shasum": "",
  11758. "mirrors": [
  11759. {
  11760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11761. "preferred": true
  11762. }
  11763. ]
  11764. },
  11765. "require": {
  11766. "php": ">=7.3"
  11767. },
  11768. "require-dev": {
  11769. "phpunit/phpunit": "^9.5"
  11770. },
  11771. "type": "library",
  11772. "extra": {
  11773. "branch-alias": {
  11774. "dev-master": "3.2-dev"
  11775. }
  11776. },
  11777. "autoload": {
  11778. "classmap": [
  11779. "src/"
  11780. ]
  11781. },
  11782. "notification-url": "https://packagist.org/downloads/",
  11783. "license": [
  11784. "BSD-3-Clause"
  11785. ],
  11786. "authors": [
  11787. {
  11788. "name": "Sebastian Bergmann",
  11789. "email": "sebastian@phpunit.de",
  11790. "role": "lead"
  11791. }
  11792. ],
  11793. "description": "Collection of value objects that represent the types of the PHP type system",
  11794. "homepage": "https://github.com/sebastianbergmann/type",
  11795. "support": {
  11796. "issues": "https://github.com/sebastianbergmann/type/issues",
  11797. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  11798. },
  11799. "funding": [
  11800. {
  11801. "url": "https://github.com/sebastianbergmann",
  11802. "type": "github"
  11803. }
  11804. ],
  11805. "time": "2023-02-03T06:13:03+00:00"
  11806. },
  11807. {
  11808. "name": "sebastian/version",
  11809. "version": "3.0.2",
  11810. "source": {
  11811. "type": "git",
  11812. "url": "https://github.com/sebastianbergmann/version.git",
  11813. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11814. },
  11815. "dist": {
  11816. "type": "zip",
  11817. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11818. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11819. "shasum": "",
  11820. "mirrors": [
  11821. {
  11822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11823. "preferred": true
  11824. }
  11825. ]
  11826. },
  11827. "require": {
  11828. "php": ">=7.3"
  11829. },
  11830. "type": "library",
  11831. "extra": {
  11832. "branch-alias": {
  11833. "dev-master": "3.0-dev"
  11834. }
  11835. },
  11836. "autoload": {
  11837. "classmap": [
  11838. "src/"
  11839. ]
  11840. },
  11841. "notification-url": "https://packagist.org/downloads/",
  11842. "license": [
  11843. "BSD-3-Clause"
  11844. ],
  11845. "authors": [
  11846. {
  11847. "name": "Sebastian Bergmann",
  11848. "email": "sebastian@phpunit.de",
  11849. "role": "lead"
  11850. }
  11851. ],
  11852. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11853. "homepage": "https://github.com/sebastianbergmann/version",
  11854. "support": {
  11855. "issues": "https://github.com/sebastianbergmann/version/issues",
  11856. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11857. },
  11858. "funding": [
  11859. {
  11860. "url": "https://github.com/sebastianbergmann",
  11861. "type": "github"
  11862. }
  11863. ],
  11864. "time": "2020-09-28T06:39:44+00:00"
  11865. },
  11866. {
  11867. "name": "theseer/tokenizer",
  11868. "version": "1.2.3",
  11869. "source": {
  11870. "type": "git",
  11871. "url": "https://github.com/theseer/tokenizer.git",
  11872. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11873. },
  11874. "dist": {
  11875. "type": "zip",
  11876. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11877. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11878. "shasum": "",
  11879. "mirrors": [
  11880. {
  11881. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11882. "preferred": true
  11883. }
  11884. ]
  11885. },
  11886. "require": {
  11887. "ext-dom": "*",
  11888. "ext-tokenizer": "*",
  11889. "ext-xmlwriter": "*",
  11890. "php": "^7.2 || ^8.0"
  11891. },
  11892. "type": "library",
  11893. "autoload": {
  11894. "classmap": [
  11895. "src/"
  11896. ]
  11897. },
  11898. "notification-url": "https://packagist.org/downloads/",
  11899. "license": [
  11900. "BSD-3-Clause"
  11901. ],
  11902. "authors": [
  11903. {
  11904. "name": "Arne Blankerts",
  11905. "email": "arne@blankerts.de",
  11906. "role": "Developer"
  11907. }
  11908. ],
  11909. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11910. "support": {
  11911. "issues": "https://github.com/theseer/tokenizer/issues",
  11912. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11913. },
  11914. "funding": [
  11915. {
  11916. "url": "https://github.com/theseer",
  11917. "type": "github"
  11918. }
  11919. ],
  11920. "time": "2024-03-03T12:36:25+00:00"
  11921. }
  11922. ],
  11923. "aliases": [],
  11924. "minimum-stability": "dev",
  11925. "stability-flags": [],
  11926. "prefer-stable": true,
  11927. "prefer-lowest": false,
  11928. "platform": {
  11929. "php": "^7.3|^8.0"
  11930. },
  11931. "platform-dev": [],
  11932. "plugin-api-version": "2.3.0"
  11933. }