composer.lock 208 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806
  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": "8832bfca3fdcc06c5e4c6413e256f557",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.x-dev",
  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.x"
  65. },
  66. "time": "2022-10-14T20:31:46+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/client",
  70. "version": "dev-master",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  74. "reference": "11db11afd6a05cef9bd49a63a3fea379d075412a"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/11db11afd6a05cef9bd49a63a3fea379d075412a",
  79. "reference": "11db11afd6a05cef9bd49a63a3fea379d075412a",
  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. "default-branch": true,
  121. "type": "library",
  122. "autoload": {
  123. "files": [
  124. "src/Functions.php"
  125. ],
  126. "psr-4": {
  127. "AlibabaCloud\\Client\\": "src"
  128. }
  129. },
  130. "notification-url": "https://packagist.org/downloads/",
  131. "license": [
  132. "Apache-2.0"
  133. ],
  134. "authors": [
  135. {
  136. "name": "Alibaba Cloud SDK",
  137. "email": "sdk-team@alibabacloud.com",
  138. "homepage": "http://www.alibabacloud.com"
  139. }
  140. ],
  141. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  142. "homepage": "https://www.alibabacloud.com/",
  143. "keywords": [
  144. "alibaba",
  145. "alibabacloud",
  146. "aliyun",
  147. "client",
  148. "cloud",
  149. "library",
  150. "sdk",
  151. "tool"
  152. ],
  153. "support": {
  154. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  155. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  156. },
  157. "time": "2024-09-12T10:21:02+00:00"
  158. },
  159. {
  160. "name": "aliyuncs/oss-sdk-php",
  161. "version": "v2.7.2",
  162. "source": {
  163. "type": "git",
  164. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  165. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5"
  166. },
  167. "dist": {
  168. "type": "zip",
  169. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  170. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  171. "shasum": "",
  172. "mirrors": [
  173. {
  174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  175. "preferred": true
  176. }
  177. ]
  178. },
  179. "require": {
  180. "php": ">=5.3"
  181. },
  182. "require-dev": {
  183. "php-coveralls/php-coveralls": "*",
  184. "phpunit/phpunit": "*"
  185. },
  186. "type": "library",
  187. "autoload": {
  188. "psr-4": {
  189. "OSS\\": "src/OSS"
  190. }
  191. },
  192. "notification-url": "https://packagist.org/downloads/",
  193. "license": [
  194. "MIT"
  195. ],
  196. "authors": [
  197. {
  198. "name": "Aliyuncs",
  199. "homepage": "http://www.aliyun.com"
  200. }
  201. ],
  202. "description": "Aliyun OSS SDK for PHP",
  203. "homepage": "http://www.aliyun.com/product/oss/",
  204. "support": {
  205. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  206. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.2"
  207. },
  208. "time": "2024-10-28T10:41:12+00:00"
  209. },
  210. {
  211. "name": "baidu/aip-sdk",
  212. "version": "dev-master",
  213. "source": {
  214. "type": "git",
  215. "url": "https://github.com/Baidu-AIP/php-sdk.git",
  216. "reference": "84e5936eb6426b4cc9d9a96848568b9dd527b4a0"
  217. },
  218. "dist": {
  219. "type": "zip",
  220. "url": "https://api.github.com/repos/Baidu-AIP/php-sdk/zipball/84e5936eb6426b4cc9d9a96848568b9dd527b4a0",
  221. "reference": "84e5936eb6426b4cc9d9a96848568b9dd527b4a0",
  222. "shasum": "",
  223. "mirrors": [
  224. {
  225. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  226. "preferred": true
  227. }
  228. ]
  229. },
  230. "require": {
  231. "php": ">=5.3.3"
  232. },
  233. "default-branch": true,
  234. "type": "library",
  235. "autoload": {
  236. "files": [
  237. "lib/AipBase.php",
  238. "AipBodyAnalysis.php",
  239. "AipContentCensor.php",
  240. "AipFace.php",
  241. "AipImageClassify.php",
  242. "AipImageSearch.php",
  243. "AipKg.php",
  244. "AipNlp.php",
  245. "AipOcr.php",
  246. "AipSpeech.php"
  247. ]
  248. },
  249. "notification-url": "https://packagist.org/downloads/",
  250. "license": [
  251. "Apache-2.0"
  252. ],
  253. "authors": [
  254. {
  255. "name": "baidu"
  256. }
  257. ],
  258. "description": "baidu pulic ai php sdk",
  259. "support": {
  260. "issues": "https://github.com/Baidu-AIP/php-sdk/issues",
  261. "source": "https://github.com/Baidu-AIP/php-sdk/tree/master"
  262. },
  263. "time": "2019-06-20T07:57:25+00:00"
  264. },
  265. {
  266. "name": "bower-asset/bootstrap",
  267. "version": "v3.4.1",
  268. "source": {
  269. "type": "git",
  270. "url": "https://github.com/twbs/bootstrap.git",
  271. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
  272. },
  273. "dist": {
  274. "type": "zip",
  275. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/68b0d231a13201eb14acd3dc84e51543d16e5f7e",
  276. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
  277. },
  278. "require": {
  279. "bower-asset/jquery": ">=1.9.1,<4.0"
  280. },
  281. "type": "bower-asset",
  282. "license": [
  283. "MIT"
  284. ]
  285. },
  286. {
  287. "name": "bower-asset/inputmask",
  288. "version": "5.x-dev",
  289. "source": {
  290. "type": "git",
  291. "url": "https://github.com/RobinHerbots/Inputmask.git",
  292. "reference": "55dcd7e87bc74bbd9cdd67669fa6a6a589ba98eb"
  293. },
  294. "dist": {
  295. "type": "zip",
  296. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/55dcd7e87bc74bbd9cdd67669fa6a6a589ba98eb",
  297. "reference": "55dcd7e87bc74bbd9cdd67669fa6a6a589ba98eb"
  298. },
  299. "require": {
  300. "bower-asset/jquery": ">=1.7"
  301. },
  302. "type": "bower-asset",
  303. "license": [
  304. "http://opensource.org/licenses/mit-license.php"
  305. ]
  306. },
  307. {
  308. "name": "bower-asset/jquery",
  309. "version": "3.7.1",
  310. "source": {
  311. "type": "git",
  312. "url": "https://github.com/jquery/jquery-dist.git",
  313. "reference": "fde1f76e2799dd877c176abde0ec836553246991"
  314. },
  315. "dist": {
  316. "type": "zip",
  317. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/fde1f76e2799dd877c176abde0ec836553246991",
  318. "reference": "fde1f76e2799dd877c176abde0ec836553246991"
  319. },
  320. "type": "bower-asset",
  321. "license": [
  322. "MIT"
  323. ]
  324. },
  325. {
  326. "name": "bower-asset/punycode",
  327. "version": "v1.4.1",
  328. "source": {
  329. "type": "git",
  330. "url": "https://github.com/mathiasbynens/punycode.js.git",
  331. "reference": "0fbadd6e81f3a0ce06c38998040d6db6bdfbc5c9"
  332. },
  333. "dist": {
  334. "type": "zip",
  335. "url": "https://api.github.com/repos/mathiasbynens/punycode.js/zipball/0fbadd6e81f3a0ce06c38998040d6db6bdfbc5c9",
  336. "reference": "0fbadd6e81f3a0ce06c38998040d6db6bdfbc5c9"
  337. },
  338. "type": "bower-asset"
  339. },
  340. {
  341. "name": "bower-asset/yii2-pjax",
  342. "version": "2.0.8",
  343. "source": {
  344. "type": "git",
  345. "url": "https://github.com/yiisoft/jquery-pjax.git",
  346. "reference": "a9298d57da63d14a950f1b94366a864bc62264fb"
  347. },
  348. "dist": {
  349. "type": "zip",
  350. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/a9298d57da63d14a950f1b94366a864bc62264fb",
  351. "reference": "a9298d57da63d14a950f1b94366a864bc62264fb"
  352. },
  353. "require": {
  354. "bower-asset/jquery": ">=1.8"
  355. },
  356. "type": "bower-asset",
  357. "license": [
  358. "MIT"
  359. ]
  360. },
  361. {
  362. "name": "cebe/markdown",
  363. "version": "dev-master",
  364. "source": {
  365. "type": "git",
  366. "url": "https://github.com/cebe/markdown.git",
  367. "reference": "2b2461bed9e15305486319ee552bafca75d1cdaa"
  368. },
  369. "dist": {
  370. "type": "zip",
  371. "url": "https://api.github.com/repos/cebe/markdown/zipball/2b2461bed9e15305486319ee552bafca75d1cdaa",
  372. "reference": "2b2461bed9e15305486319ee552bafca75d1cdaa",
  373. "shasum": "",
  374. "mirrors": [
  375. {
  376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  377. "preferred": true
  378. }
  379. ]
  380. },
  381. "require": {
  382. "lib-pcre": "*",
  383. "php": ">=5.4.0"
  384. },
  385. "require-dev": {
  386. "cebe/indent": "*",
  387. "facebook/xhprof": "*@dev",
  388. "phpunit/phpunit": "4.1.*"
  389. },
  390. "default-branch": true,
  391. "bin": [
  392. "bin/markdown"
  393. ],
  394. "type": "library",
  395. "extra": {
  396. "branch-alias": {
  397. "dev-master": "1.2.x-dev"
  398. }
  399. },
  400. "autoload": {
  401. "psr-4": {
  402. "cebe\\markdown\\": ""
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Carsten Brandt",
  412. "email": "mail@cebe.cc",
  413. "homepage": "http://cebe.cc/",
  414. "role": "Creator"
  415. }
  416. ],
  417. "description": "A super fast, highly extensible markdown parser for PHP",
  418. "homepage": "https://github.com/cebe/markdown#readme",
  419. "keywords": [
  420. "extensible",
  421. "fast",
  422. "gfm",
  423. "markdown",
  424. "markdown-extra"
  425. ],
  426. "support": {
  427. "issues": "https://github.com/cebe/markdown/issues",
  428. "source": "https://github.com/cebe/markdown"
  429. },
  430. "time": "2020-02-26T01:55:18+00:00"
  431. },
  432. {
  433. "name": "clagiordano/weblibs-configmanager",
  434. "version": "v1.5.0",
  435. "source": {
  436. "type": "git",
  437. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  438. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273"
  439. },
  440. "dist": {
  441. "type": "zip",
  442. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/8802c7396d61a923c9a73e37ead062b24bb1b273",
  443. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273",
  444. "shasum": "",
  445. "mirrors": [
  446. {
  447. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  448. "preferred": true
  449. }
  450. ]
  451. },
  452. "require": {
  453. "ext-json": "*",
  454. "php": ">=5.4",
  455. "symfony/yaml": "^2.8"
  456. },
  457. "require-dev": {
  458. "clagiordano/phpunit-result-printer": "^1",
  459. "php-coveralls/php-coveralls": "^1.1",
  460. "phpunit/phpunit": "^4.8"
  461. },
  462. "type": "library",
  463. "autoload": {
  464. "psr-4": {
  465. "clagiordano\\weblibs\\configmanager\\": "src/"
  466. }
  467. },
  468. "notification-url": "https://packagist.org/downloads/",
  469. "license": [
  470. "LGPL-3.0-or-later"
  471. ],
  472. "authors": [
  473. {
  474. "name": "Claudio Giordano",
  475. "email": "claudio.giordano@autistici.org",
  476. "role": "Developer"
  477. }
  478. ],
  479. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  480. "keywords": [
  481. "clagiordano",
  482. "configuration",
  483. "manager",
  484. "tool",
  485. "weblibs"
  486. ],
  487. "support": {
  488. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  489. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.5.0"
  490. },
  491. "time": "2021-07-12T15:27:21+00:00"
  492. },
  493. {
  494. "name": "ezyang/htmlpurifier",
  495. "version": "v4.18.0",
  496. "source": {
  497. "type": "git",
  498. "url": "https://github.com/ezyang/htmlpurifier.git",
  499. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  500. },
  501. "dist": {
  502. "type": "zip",
  503. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  504. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  505. "shasum": "",
  506. "mirrors": [
  507. {
  508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  509. "preferred": true
  510. }
  511. ]
  512. },
  513. "require": {
  514. "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"
  515. },
  516. "require-dev": {
  517. "cerdic/css-tidy": "^1.7 || ^2.0",
  518. "simpletest/simpletest": "dev-master"
  519. },
  520. "suggest": {
  521. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  522. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  523. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  524. "ext-tidy": "Used for pretty-printing HTML"
  525. },
  526. "type": "library",
  527. "autoload": {
  528. "files": [
  529. "library/HTMLPurifier.composer.php"
  530. ],
  531. "psr-0": {
  532. "HTMLPurifier": "library/"
  533. },
  534. "exclude-from-classmap": [
  535. "/library/HTMLPurifier/Language/"
  536. ]
  537. },
  538. "notification-url": "https://packagist.org/downloads/",
  539. "license": [
  540. "LGPL-2.1-or-later"
  541. ],
  542. "authors": [
  543. {
  544. "name": "Edward Z. Yang",
  545. "email": "admin@htmlpurifier.org",
  546. "homepage": "http://ezyang.com"
  547. }
  548. ],
  549. "description": "Standards compliant HTML filter written in PHP",
  550. "homepage": "http://htmlpurifier.org/",
  551. "keywords": [
  552. "html"
  553. ],
  554. "support": {
  555. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  556. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  557. },
  558. "time": "2024-11-01T03:51:45+00:00"
  559. },
  560. {
  561. "name": "getuilaboratory/getui-pushapi-php-client-v2",
  562. "version": "dev-master",
  563. "source": {
  564. "type": "git",
  565. "url": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2.git",
  566. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6"
  567. },
  568. "dist": {
  569. "type": "zip",
  570. "url": "https://api.github.com/repos/GetuiLaboratory/getui-pushapi-php-client-v2/zipball/255cc076624d049c0481d7172cd3c519ae7b07f6",
  571. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6",
  572. "shasum": "",
  573. "mirrors": [
  574. {
  575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  576. "preferred": true
  577. }
  578. ]
  579. },
  580. "default-branch": true,
  581. "type": "library",
  582. "autoload": {
  583. "classmap": [
  584. ""
  585. ]
  586. },
  587. "notification-url": "https://packagist.org/downloads/",
  588. "license": [
  589. "MIT"
  590. ],
  591. "authors": [
  592. {
  593. "name": "getui",
  594. "homepage": "https://www.getui.com/cn"
  595. }
  596. ],
  597. "description": "getui php client V2",
  598. "homepage": "https://www.getui.com/cn/",
  599. "keywords": [
  600. "GeTui",
  601. "GetuiLaboratory",
  602. "getui-pushapi-php-client",
  603. "getui-pushapi-php-client-v2",
  604. "pushapi"
  605. ],
  606. "support": {
  607. "issues": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/issues",
  608. "source": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/tree/master"
  609. },
  610. "time": "2021-06-21T03:22:42+00:00"
  611. },
  612. {
  613. "name": "guzzlehttp/guzzle",
  614. "version": "7.9.x-dev",
  615. "source": {
  616. "type": "git",
  617. "url": "https://github.com/guzzle/guzzle.git",
  618. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  619. },
  620. "dist": {
  621. "type": "zip",
  622. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  623. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  624. "shasum": "",
  625. "mirrors": [
  626. {
  627. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  628. "preferred": true
  629. }
  630. ]
  631. },
  632. "require": {
  633. "ext-json": "*",
  634. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  635. "guzzlehttp/psr7": "^2.7.0",
  636. "php": "^7.2.5 || ^8.0",
  637. "psr/http-client": "^1.0",
  638. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  639. },
  640. "provide": {
  641. "psr/http-client-implementation": "1.0"
  642. },
  643. "require-dev": {
  644. "bamarni/composer-bin-plugin": "^1.8.2",
  645. "ext-curl": "*",
  646. "guzzle/client-integration-tests": "3.0.2",
  647. "php-http/message-factory": "^1.1",
  648. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  649. "psr/log": "^1.1 || ^2.0 || ^3.0"
  650. },
  651. "suggest": {
  652. "ext-curl": "Required for CURL handler support",
  653. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  654. "psr/log": "Required for using the Log middleware"
  655. },
  656. "default-branch": true,
  657. "type": "library",
  658. "extra": {
  659. "bamarni-bin": {
  660. "bin-links": true,
  661. "forward-command": false
  662. }
  663. },
  664. "autoload": {
  665. "files": [
  666. "src/functions_include.php"
  667. ],
  668. "psr-4": {
  669. "GuzzleHttp\\": "src/"
  670. }
  671. },
  672. "notification-url": "https://packagist.org/downloads/",
  673. "license": [
  674. "MIT"
  675. ],
  676. "authors": [
  677. {
  678. "name": "Graham Campbell",
  679. "email": "hello@gjcampbell.co.uk",
  680. "homepage": "https://github.com/GrahamCampbell"
  681. },
  682. {
  683. "name": "Michael Dowling",
  684. "email": "mtdowling@gmail.com",
  685. "homepage": "https://github.com/mtdowling"
  686. },
  687. {
  688. "name": "Jeremy Lindblom",
  689. "email": "jeremeamia@gmail.com",
  690. "homepage": "https://github.com/jeremeamia"
  691. },
  692. {
  693. "name": "George Mponos",
  694. "email": "gmponos@gmail.com",
  695. "homepage": "https://github.com/gmponos"
  696. },
  697. {
  698. "name": "Tobias Nyholm",
  699. "email": "tobias.nyholm@gmail.com",
  700. "homepage": "https://github.com/Nyholm"
  701. },
  702. {
  703. "name": "Márk Sági-Kazár",
  704. "email": "mark.sagikazar@gmail.com",
  705. "homepage": "https://github.com/sagikazarmark"
  706. },
  707. {
  708. "name": "Tobias Schultze",
  709. "email": "webmaster@tubo-world.de",
  710. "homepage": "https://github.com/Tobion"
  711. }
  712. ],
  713. "description": "Guzzle is a PHP HTTP client library",
  714. "keywords": [
  715. "client",
  716. "curl",
  717. "framework",
  718. "http",
  719. "http client",
  720. "psr-18",
  721. "psr-7",
  722. "rest",
  723. "web service"
  724. ],
  725. "support": {
  726. "issues": "https://github.com/guzzle/guzzle/issues",
  727. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  728. },
  729. "funding": [
  730. {
  731. "url": "https://github.com/GrahamCampbell",
  732. "type": "github"
  733. },
  734. {
  735. "url": "https://github.com/Nyholm",
  736. "type": "github"
  737. },
  738. {
  739. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  740. "type": "tidelift"
  741. }
  742. ],
  743. "time": "2025-03-27T13:37:11+00:00"
  744. },
  745. {
  746. "name": "guzzlehttp/promises",
  747. "version": "2.2.x-dev",
  748. "source": {
  749. "type": "git",
  750. "url": "https://github.com/guzzle/promises.git",
  751. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  752. },
  753. "dist": {
  754. "type": "zip",
  755. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  756. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  757. "shasum": "",
  758. "mirrors": [
  759. {
  760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  761. "preferred": true
  762. }
  763. ]
  764. },
  765. "require": {
  766. "php": "^7.2.5 || ^8.0"
  767. },
  768. "require-dev": {
  769. "bamarni/composer-bin-plugin": "^1.8.2",
  770. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  771. },
  772. "default-branch": true,
  773. "type": "library",
  774. "extra": {
  775. "bamarni-bin": {
  776. "bin-links": true,
  777. "forward-command": false
  778. }
  779. },
  780. "autoload": {
  781. "psr-4": {
  782. "GuzzleHttp\\Promise\\": "src/"
  783. }
  784. },
  785. "notification-url": "https://packagist.org/downloads/",
  786. "license": [
  787. "MIT"
  788. ],
  789. "authors": [
  790. {
  791. "name": "Graham Campbell",
  792. "email": "hello@gjcampbell.co.uk",
  793. "homepage": "https://github.com/GrahamCampbell"
  794. },
  795. {
  796. "name": "Michael Dowling",
  797. "email": "mtdowling@gmail.com",
  798. "homepage": "https://github.com/mtdowling"
  799. },
  800. {
  801. "name": "Tobias Nyholm",
  802. "email": "tobias.nyholm@gmail.com",
  803. "homepage": "https://github.com/Nyholm"
  804. },
  805. {
  806. "name": "Tobias Schultze",
  807. "email": "webmaster@tubo-world.de",
  808. "homepage": "https://github.com/Tobion"
  809. }
  810. ],
  811. "description": "Guzzle promises library",
  812. "keywords": [
  813. "promise"
  814. ],
  815. "support": {
  816. "issues": "https://github.com/guzzle/promises/issues",
  817. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  818. },
  819. "funding": [
  820. {
  821. "url": "https://github.com/GrahamCampbell",
  822. "type": "github"
  823. },
  824. {
  825. "url": "https://github.com/Nyholm",
  826. "type": "github"
  827. },
  828. {
  829. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  830. "type": "tidelift"
  831. }
  832. ],
  833. "time": "2025-03-27T13:27:01+00:00"
  834. },
  835. {
  836. "name": "guzzlehttp/psr7",
  837. "version": "2.7.x-dev",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/guzzle/psr7.git",
  841. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  846. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  847. "shasum": "",
  848. "mirrors": [
  849. {
  850. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  851. "preferred": true
  852. }
  853. ]
  854. },
  855. "require": {
  856. "php": "^7.2.5 || ^8.0",
  857. "psr/http-factory": "^1.0",
  858. "psr/http-message": "^1.1 || ^2.0",
  859. "ralouphie/getallheaders": "^3.0"
  860. },
  861. "provide": {
  862. "psr/http-factory-implementation": "1.0",
  863. "psr/http-message-implementation": "1.0"
  864. },
  865. "require-dev": {
  866. "bamarni/composer-bin-plugin": "^1.8.2",
  867. "http-interop/http-factory-tests": "0.9.0",
  868. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  869. },
  870. "suggest": {
  871. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  872. },
  873. "default-branch": true,
  874. "type": "library",
  875. "extra": {
  876. "bamarni-bin": {
  877. "bin-links": true,
  878. "forward-command": false
  879. }
  880. },
  881. "autoload": {
  882. "psr-4": {
  883. "GuzzleHttp\\Psr7\\": "src/"
  884. }
  885. },
  886. "notification-url": "https://packagist.org/downloads/",
  887. "license": [
  888. "MIT"
  889. ],
  890. "authors": [
  891. {
  892. "name": "Graham Campbell",
  893. "email": "hello@gjcampbell.co.uk",
  894. "homepage": "https://github.com/GrahamCampbell"
  895. },
  896. {
  897. "name": "Michael Dowling",
  898. "email": "mtdowling@gmail.com",
  899. "homepage": "https://github.com/mtdowling"
  900. },
  901. {
  902. "name": "George Mponos",
  903. "email": "gmponos@gmail.com",
  904. "homepage": "https://github.com/gmponos"
  905. },
  906. {
  907. "name": "Tobias Nyholm",
  908. "email": "tobias.nyholm@gmail.com",
  909. "homepage": "https://github.com/Nyholm"
  910. },
  911. {
  912. "name": "Márk Sági-Kazár",
  913. "email": "mark.sagikazar@gmail.com",
  914. "homepage": "https://github.com/sagikazarmark"
  915. },
  916. {
  917. "name": "Tobias Schultze",
  918. "email": "webmaster@tubo-world.de",
  919. "homepage": "https://github.com/Tobion"
  920. },
  921. {
  922. "name": "Márk Sági-Kazár",
  923. "email": "mark.sagikazar@gmail.com",
  924. "homepage": "https://sagikazarmark.hu"
  925. }
  926. ],
  927. "description": "PSR-7 message implementation that also provides common utility methods",
  928. "keywords": [
  929. "http",
  930. "message",
  931. "psr-7",
  932. "request",
  933. "response",
  934. "stream",
  935. "uri",
  936. "url"
  937. ],
  938. "support": {
  939. "issues": "https://github.com/guzzle/psr7/issues",
  940. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  941. },
  942. "funding": [
  943. {
  944. "url": "https://github.com/GrahamCampbell",
  945. "type": "github"
  946. },
  947. {
  948. "url": "https://github.com/Nyholm",
  949. "type": "github"
  950. },
  951. {
  952. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  953. "type": "tidelift"
  954. }
  955. ],
  956. "time": "2025-03-27T12:30:47+00:00"
  957. },
  958. {
  959. "name": "hollisho/yii2-redis-pub-sub",
  960. "version": "dev-master",
  961. "source": {
  962. "type": "git",
  963. "url": "https://github.com/hollisho/yii2-redis-pub-sub.git",
  964. "reference": "d19daa3c6928bb28aca180a8b77e952ef435d41b"
  965. },
  966. "dist": {
  967. "type": "zip",
  968. "url": "https://api.github.com/repos/hollisho/yii2-redis-pub-sub/zipball/d19daa3c6928bb28aca180a8b77e952ef435d41b",
  969. "reference": "d19daa3c6928bb28aca180a8b77e952ef435d41b",
  970. "shasum": "",
  971. "mirrors": [
  972. {
  973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  974. "preferred": true
  975. }
  976. ]
  977. },
  978. "require": {
  979. "php": ">=5.4.0"
  980. },
  981. "default-branch": true,
  982. "type": "library",
  983. "autoload": {
  984. "psr-4": {
  985. "hollisho\\redis_pub_sub\\": "src/"
  986. }
  987. },
  988. "notification-url": "https://packagist.org/downloads/",
  989. "license": [
  990. "MIT"
  991. ],
  992. "authors": [
  993. {
  994. "name": "Hollis Ho",
  995. "email": "he_wenzhi@126.com"
  996. }
  997. ],
  998. "description": "Yii2 Redis pub/sub(Publish,Subscribe)",
  999. "support": {
  1000. "issues": "https://github.com/hollisho/yii2-redis-pub-sub/issues",
  1001. "source": "https://github.com/hollisho/yii2-redis-pub-sub"
  1002. },
  1003. "time": "2018-11-22T10:56:17+00:00"
  1004. },
  1005. {
  1006. "name": "imagine/imagine",
  1007. "version": "dev-develop",
  1008. "source": {
  1009. "type": "git",
  1010. "url": "https://github.com/php-imagine/Imagine.git",
  1011. "reference": "43856ce80debe1c7b0d7a5fc8497ac64bb6870c3"
  1012. },
  1013. "dist": {
  1014. "type": "zip",
  1015. "url": "https://api.github.com/repos/php-imagine/Imagine/zipball/43856ce80debe1c7b0d7a5fc8497ac64bb6870c3",
  1016. "reference": "43856ce80debe1c7b0d7a5fc8497ac64bb6870c3",
  1017. "shasum": "",
  1018. "mirrors": [
  1019. {
  1020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1021. "preferred": true
  1022. }
  1023. ]
  1024. },
  1025. "require": {
  1026. "php": ">=7.1"
  1027. },
  1028. "require-dev": {
  1029. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4 || ^9.3"
  1030. },
  1031. "suggest": {
  1032. "ext-exif": "to read EXIF metadata",
  1033. "ext-gd": "to use the GD implementation",
  1034. "ext-gmagick": "to use the Gmagick implementation",
  1035. "ext-imagick": "to use the Imagick implementation"
  1036. },
  1037. "default-branch": true,
  1038. "type": "library",
  1039. "extra": {
  1040. "branch-alias": {
  1041. "dev-develop": "1.x-dev"
  1042. }
  1043. },
  1044. "autoload": {
  1045. "psr-4": {
  1046. "Imagine\\": "src/"
  1047. }
  1048. },
  1049. "notification-url": "https://packagist.org/downloads/",
  1050. "license": [
  1051. "MIT"
  1052. ],
  1053. "authors": [
  1054. {
  1055. "name": "Bulat Shakirzyanov",
  1056. "email": "mallluhuct@gmail.com",
  1057. "homepage": "http://avalanche123.com"
  1058. }
  1059. ],
  1060. "description": "Image processing for PHP",
  1061. "homepage": "http://imagine.readthedocs.org/",
  1062. "keywords": [
  1063. "drawing",
  1064. "graphics",
  1065. "image manipulation",
  1066. "image processing"
  1067. ],
  1068. "support": {
  1069. "issues": "https://github.com/php-imagine/Imagine/issues",
  1070. "source": "https://github.com/php-imagine/Imagine/tree/develop"
  1071. },
  1072. "time": "2025-01-18T23:39:55+00:00"
  1073. },
  1074. {
  1075. "name": "lcobucci/jwt",
  1076. "version": "3.3.0",
  1077. "source": {
  1078. "type": "git",
  1079. "url": "https://github.com/lcobucci/jwt.git",
  1080. "reference": "8866a58fa866f6872f2a6ea0e04ad56480f0f440"
  1081. },
  1082. "dist": {
  1083. "type": "zip",
  1084. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/8866a58fa866f6872f2a6ea0e04ad56480f0f440",
  1085. "reference": "8866a58fa866f6872f2a6ea0e04ad56480f0f440",
  1086. "shasum": "",
  1087. "mirrors": [
  1088. {
  1089. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1090. "preferred": true
  1091. }
  1092. ]
  1093. },
  1094. "require": {
  1095. "ext-mbstring": "*",
  1096. "ext-openssl": "*",
  1097. "php": "^5.6 || ^7.0"
  1098. },
  1099. "require-dev": {
  1100. "mikey179/vfsstream": "~1.5",
  1101. "phpmd/phpmd": "~2.2",
  1102. "phpunit/php-invoker": "~1.1",
  1103. "phpunit/phpunit": "^5.7 || ^7.3",
  1104. "squizlabs/php_codesniffer": "~2.3"
  1105. },
  1106. "type": "library",
  1107. "extra": {
  1108. "branch-alias": {
  1109. "dev-master": "3.1-dev"
  1110. }
  1111. },
  1112. "autoload": {
  1113. "psr-4": {
  1114. "Lcobucci\\JWT\\": "src"
  1115. }
  1116. },
  1117. "notification-url": "https://packagist.org/downloads/",
  1118. "license": [
  1119. "BSD-3-Clause"
  1120. ],
  1121. "authors": [
  1122. {
  1123. "name": "Luís Otávio Cobucci Oblonczyk",
  1124. "email": "lcobucci@gmail.com",
  1125. "role": "Developer"
  1126. }
  1127. ],
  1128. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1129. "keywords": [
  1130. "JWS",
  1131. "jwt"
  1132. ],
  1133. "support": {
  1134. "issues": "https://github.com/lcobucci/jwt/issues",
  1135. "source": "https://github.com/lcobucci/jwt/tree/3.3"
  1136. },
  1137. "time": "2019-05-22T09:44:23+00:00"
  1138. },
  1139. {
  1140. "name": "linslin/yii2-curl",
  1141. "version": "1.0.11",
  1142. "source": {
  1143. "type": "git",
  1144. "url": "https://github.com/linslin/Yii2-Curl.git",
  1145. "reference": "0384d175c594a6b76c4eeb91eb3804e24eb867b3"
  1146. },
  1147. "dist": {
  1148. "type": "zip",
  1149. "url": "https://api.github.com/repos/linslin/Yii2-Curl/zipball/0384d175c594a6b76c4eeb91eb3804e24eb867b3",
  1150. "reference": "0384d175c594a6b76c4eeb91eb3804e24eb867b3",
  1151. "shasum": "",
  1152. "mirrors": [
  1153. {
  1154. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1155. "preferred": true
  1156. }
  1157. ]
  1158. },
  1159. "require": {
  1160. "ext-curl": "*",
  1161. "yiisoft/yii2": "*"
  1162. },
  1163. "type": "yii2-extension",
  1164. "autoload": {
  1165. "psr-4": {
  1166. "linslin\\yii2\\curl\\": ""
  1167. }
  1168. },
  1169. "notification-url": "https://packagist.org/downloads/",
  1170. "license": [
  1171. "MIT"
  1172. ],
  1173. "authors": [
  1174. {
  1175. "name": "Nils Gajsek",
  1176. "email": "info@linslin.org"
  1177. }
  1178. ],
  1179. "description": "Easy and nice cURL extension with RESTful support for Yii2",
  1180. "keywords": [
  1181. " curl",
  1182. "extension",
  1183. "restful",
  1184. "yii2"
  1185. ],
  1186. "support": {
  1187. "issues": "https://github.com/linslin/Yii2-Curl/issues",
  1188. "source": "https://github.com/linslin/Yii2-Curl/tree/1.0.11"
  1189. },
  1190. "time": "2017-01-17T11:11:37+00:00"
  1191. },
  1192. {
  1193. "name": "mtdowling/jmespath.php",
  1194. "version": "dev-master",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/jmespath/jmespath.php.git",
  1198. "reference": "b243cacd2a9803b4cbc259246aa5081208238c10"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/b243cacd2a9803b4cbc259246aa5081208238c10",
  1203. "reference": "b243cacd2a9803b4cbc259246aa5081208238c10",
  1204. "shasum": "",
  1205. "mirrors": [
  1206. {
  1207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1208. "preferred": true
  1209. }
  1210. ]
  1211. },
  1212. "require": {
  1213. "php": "^7.2.5 || ^8.0",
  1214. "symfony/polyfill-mbstring": "^1.17"
  1215. },
  1216. "require-dev": {
  1217. "composer/xdebug-handler": "^3.0.3",
  1218. "phpunit/phpunit": "^8.5.33"
  1219. },
  1220. "default-branch": true,
  1221. "bin": [
  1222. "bin/jp.php"
  1223. ],
  1224. "type": "library",
  1225. "extra": {
  1226. "branch-alias": {
  1227. "dev-master": "2.7-dev"
  1228. }
  1229. },
  1230. "autoload": {
  1231. "files": [
  1232. "src/JmesPath.php"
  1233. ],
  1234. "psr-4": {
  1235. "JmesPath\\": "src/"
  1236. }
  1237. },
  1238. "notification-url": "https://packagist.org/downloads/",
  1239. "license": [
  1240. "MIT"
  1241. ],
  1242. "authors": [
  1243. {
  1244. "name": "Graham Campbell",
  1245. "email": "hello@gjcampbell.co.uk",
  1246. "homepage": "https://github.com/GrahamCampbell"
  1247. },
  1248. {
  1249. "name": "Michael Dowling",
  1250. "email": "mtdowling@gmail.com",
  1251. "homepage": "https://github.com/mtdowling"
  1252. }
  1253. ],
  1254. "description": "Declaratively specify how to extract elements from a JSON document",
  1255. "keywords": [
  1256. "json",
  1257. "jsonpath"
  1258. ],
  1259. "support": {
  1260. "issues": "https://github.com/jmespath/jmespath.php/issues",
  1261. "source": "https://github.com/jmespath/jmespath.php/tree/master"
  1262. },
  1263. "time": "2023-11-30T16:26:47+00:00"
  1264. },
  1265. {
  1266. "name": "overtrue/pinyin",
  1267. "version": "4.x-dev",
  1268. "source": {
  1269. "type": "git",
  1270. "url": "https://github.com/overtrue/pinyin.git",
  1271. "reference": "4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7"
  1272. },
  1273. "dist": {
  1274. "type": "zip",
  1275. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7",
  1276. "reference": "4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7",
  1277. "shasum": "",
  1278. "mirrors": [
  1279. {
  1280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1281. "preferred": true
  1282. }
  1283. ]
  1284. },
  1285. "require": {
  1286. "php": ">=7.1"
  1287. },
  1288. "require-dev": {
  1289. "brainmaestro/composer-git-hooks": "^2.7",
  1290. "friendsofphp/php-cs-fixer": "^2.16",
  1291. "phpunit/phpunit": "~8.0"
  1292. },
  1293. "type": "library",
  1294. "extra": {
  1295. "hooks": {
  1296. "pre-push": [
  1297. "composer test",
  1298. "composer check-style"
  1299. ],
  1300. "pre-commit": [
  1301. "composer test",
  1302. "composer fix-style"
  1303. ]
  1304. }
  1305. },
  1306. "autoload": {
  1307. "files": [
  1308. "src/const.php"
  1309. ],
  1310. "psr-4": {
  1311. "Overtrue\\Pinyin\\": "src/"
  1312. }
  1313. },
  1314. "notification-url": "https://packagist.org/downloads/",
  1315. "license": [
  1316. "MIT"
  1317. ],
  1318. "authors": [
  1319. {
  1320. "name": "overtrue",
  1321. "email": "anzhengchao@gmail.com",
  1322. "homepage": "http://github.com/overtrue"
  1323. }
  1324. ],
  1325. "description": "Chinese to pinyin translator.",
  1326. "homepage": "https://github.com/overtrue/pinyin",
  1327. "keywords": [
  1328. "Chinese",
  1329. "Pinyin",
  1330. "cn2pinyin"
  1331. ],
  1332. "support": {
  1333. "issues": "https://github.com/overtrue/pinyin/issues",
  1334. "source": "https://github.com/overtrue/pinyin/tree/4.x"
  1335. },
  1336. "funding": [
  1337. {
  1338. "url": "https://github.com/overtrue",
  1339. "type": "github"
  1340. }
  1341. ],
  1342. "time": "2023-04-27T10:17:12+00:00"
  1343. },
  1344. {
  1345. "name": "phpoffice/phpexcel",
  1346. "version": "1.8.x-dev",
  1347. "source": {
  1348. "type": "git",
  1349. "url": "https://github.com/PHPOffice/PHPExcel.git",
  1350. "reference": "39534e3dd376041d0d50a4714e73375bf45b692b"
  1351. },
  1352. "dist": {
  1353. "type": "zip",
  1354. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/39534e3dd376041d0d50a4714e73375bf45b692b",
  1355. "reference": "39534e3dd376041d0d50a4714e73375bf45b692b",
  1356. "shasum": "",
  1357. "mirrors": [
  1358. {
  1359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1360. "preferred": true
  1361. }
  1362. ]
  1363. },
  1364. "require": {
  1365. "ext-mbstring": "*",
  1366. "ext-xml": "*",
  1367. "ext-xmlwriter": "*",
  1368. "php": "^5.2|^7.0"
  1369. },
  1370. "require-dev": {
  1371. "squizlabs/php_codesniffer": "2.*"
  1372. },
  1373. "default-branch": true,
  1374. "type": "library",
  1375. "autoload": {
  1376. "psr-0": {
  1377. "PHPExcel": "Classes/"
  1378. }
  1379. },
  1380. "notification-url": "https://packagist.org/downloads/",
  1381. "license": [
  1382. "LGPL-2.1"
  1383. ],
  1384. "authors": [
  1385. {
  1386. "name": "Maarten Balliauw",
  1387. "homepage": "http://blog.maartenballiauw.be"
  1388. },
  1389. {
  1390. "name": "Mark Baker",
  1391. "homepage": "http://markbakeruk.net"
  1392. },
  1393. {
  1394. "name": "Franck Lefevre",
  1395. "homepage": "http://rootslabs.net"
  1396. },
  1397. {
  1398. "name": "Erik Tilt"
  1399. }
  1400. ],
  1401. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1402. "homepage": "https://github.com/PHPOffice/PHPExcel",
  1403. "keywords": [
  1404. "OpenXML",
  1405. "excel",
  1406. "php",
  1407. "spreadsheet",
  1408. "xls",
  1409. "xlsx"
  1410. ],
  1411. "support": {
  1412. "issues": "https://github.com/PHPOffice/PHPExcel/issues",
  1413. "source": "https://github.com/PHPOffice/PHPExcel/tree/1.8"
  1414. },
  1415. "abandoned": "phpoffice/phpspreadsheet",
  1416. "time": "2019-01-02T01:38:47+00:00"
  1417. },
  1418. {
  1419. "name": "phpoption/phpoption",
  1420. "version": "dev-master",
  1421. "source": {
  1422. "type": "git",
  1423. "url": "https://github.com/schmittjoh/php-option.git",
  1424. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  1425. },
  1426. "dist": {
  1427. "type": "zip",
  1428. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  1429. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  1430. "shasum": "",
  1431. "mirrors": [
  1432. {
  1433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1434. "preferred": true
  1435. }
  1436. ]
  1437. },
  1438. "require": {
  1439. "php": "^7.2.5 || ^8.0"
  1440. },
  1441. "require-dev": {
  1442. "bamarni/composer-bin-plugin": "^1.8.2",
  1443. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  1444. },
  1445. "default-branch": true,
  1446. "type": "library",
  1447. "extra": {
  1448. "bamarni-bin": {
  1449. "bin-links": true,
  1450. "forward-command": false
  1451. },
  1452. "branch-alias": {
  1453. "dev-master": "1.9-dev"
  1454. }
  1455. },
  1456. "autoload": {
  1457. "psr-4": {
  1458. "PhpOption\\": "src/PhpOption/"
  1459. }
  1460. },
  1461. "notification-url": "https://packagist.org/downloads/",
  1462. "license": [
  1463. "Apache-2.0"
  1464. ],
  1465. "authors": [
  1466. {
  1467. "name": "Johannes M. Schmitt",
  1468. "email": "schmittjoh@gmail.com",
  1469. "homepage": "https://github.com/schmittjoh"
  1470. },
  1471. {
  1472. "name": "Graham Campbell",
  1473. "email": "hello@gjcampbell.co.uk",
  1474. "homepage": "https://github.com/GrahamCampbell"
  1475. }
  1476. ],
  1477. "description": "Option Type for PHP",
  1478. "keywords": [
  1479. "language",
  1480. "option",
  1481. "php",
  1482. "type"
  1483. ],
  1484. "support": {
  1485. "issues": "https://github.com/schmittjoh/php-option/issues",
  1486. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  1487. },
  1488. "funding": [
  1489. {
  1490. "url": "https://github.com/GrahamCampbell",
  1491. "type": "github"
  1492. },
  1493. {
  1494. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  1495. "type": "tidelift"
  1496. }
  1497. ],
  1498. "time": "2024-07-20T21:41:07+00:00"
  1499. },
  1500. {
  1501. "name": "picqer/php-barcode-generator",
  1502. "version": "v0.3",
  1503. "source": {
  1504. "type": "git",
  1505. "url": "https://github.com/picqer/php-barcode-generator.git",
  1506. "reference": "2e4d5b1f7f04fdb348d0721ada65963dac6f0c0c"
  1507. },
  1508. "dist": {
  1509. "type": "zip",
  1510. "url": "https://api.github.com/repos/picqer/php-barcode-generator/zipball/2e4d5b1f7f04fdb348d0721ada65963dac6f0c0c",
  1511. "reference": "2e4d5b1f7f04fdb348d0721ada65963dac6f0c0c",
  1512. "shasum": "",
  1513. "mirrors": [
  1514. {
  1515. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1516. "preferred": true
  1517. }
  1518. ]
  1519. },
  1520. "require": {
  1521. "php": ">=5.4.0"
  1522. },
  1523. "require-dev": {
  1524. "phpunit/phpunit": "^5.3"
  1525. },
  1526. "type": "library",
  1527. "autoload": {
  1528. "psr-4": {
  1529. "Picqer\\Barcode\\": "src"
  1530. }
  1531. },
  1532. "notification-url": "https://packagist.org/downloads/",
  1533. "license": [
  1534. "LGPLv3"
  1535. ],
  1536. "authors": [
  1537. {
  1538. "name": "Nicola Asuni",
  1539. "email": "info@tecnick.com",
  1540. "homepage": "http://nicolaasuni.tecnick.com"
  1541. },
  1542. {
  1543. "name": "Casper Bakker",
  1544. "email": "info@picqer.com"
  1545. }
  1546. ],
  1547. "description": "An easy to use, non-bloated, barcode generator in PHP. Creates SVG, PNG, JPG and HTML images from the most used 1D barcode standards.",
  1548. "homepage": "http://github.com/picqer/php-barcode-generator",
  1549. "keywords": [
  1550. "CODABAR",
  1551. "Code11",
  1552. "Code93",
  1553. "EAN13",
  1554. "KIX",
  1555. "KIXCODE",
  1556. "MSI",
  1557. "POSTNET",
  1558. "Pharma",
  1559. "Standard 2 of 5",
  1560. "barcode",
  1561. "barcode generator",
  1562. "code128",
  1563. "code39",
  1564. "ean",
  1565. "html",
  1566. "jpeg",
  1567. "jpg",
  1568. "php",
  1569. "png",
  1570. "svg",
  1571. "upc"
  1572. ],
  1573. "support": {
  1574. "issues": "https://github.com/picqer/php-barcode-generator/issues",
  1575. "source": "https://github.com/picqer/php-barcode-generator/tree/v0.3"
  1576. },
  1577. "time": "2019-01-12T09:29:34+00:00"
  1578. },
  1579. {
  1580. "name": "predis/predis",
  1581. "version": "v3.0.1",
  1582. "source": {
  1583. "type": "git",
  1584. "url": "https://github.com/predis/predis.git",
  1585. "reference": "34fb0a7da0330df1bab4280fcac4afdeeccc3edf"
  1586. },
  1587. "dist": {
  1588. "type": "zip",
  1589. "url": "https://api.github.com/repos/predis/predis/zipball/34fb0a7da0330df1bab4280fcac4afdeeccc3edf",
  1590. "reference": "34fb0a7da0330df1bab4280fcac4afdeeccc3edf",
  1591. "shasum": "",
  1592. "mirrors": [
  1593. {
  1594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1595. "preferred": true
  1596. }
  1597. ]
  1598. },
  1599. "require": {
  1600. "php": "^7.2 || ^8.0",
  1601. "psr/http-message": "^1.0|^2.0"
  1602. },
  1603. "require-dev": {
  1604. "friendsofphp/php-cs-fixer": "^3.3",
  1605. "phpstan/phpstan": "^1.9",
  1606. "phpunit/phpcov": "^6.0 || ^8.0",
  1607. "phpunit/phpunit": "^8.0 || ~9.4.4"
  1608. },
  1609. "suggest": {
  1610. "ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
  1611. },
  1612. "type": "library",
  1613. "autoload": {
  1614. "psr-4": {
  1615. "Predis\\": "src/"
  1616. }
  1617. },
  1618. "notification-url": "https://packagist.org/downloads/",
  1619. "license": [
  1620. "MIT"
  1621. ],
  1622. "authors": [
  1623. {
  1624. "name": "Till Krüss",
  1625. "homepage": "https://till.im",
  1626. "role": "Maintainer"
  1627. }
  1628. ],
  1629. "description": "A flexible and feature-complete Redis/Valkey client for PHP.",
  1630. "homepage": "http://github.com/predis/predis",
  1631. "keywords": [
  1632. "nosql",
  1633. "predis",
  1634. "redis"
  1635. ],
  1636. "support": {
  1637. "issues": "https://github.com/predis/predis/issues",
  1638. "source": "https://github.com/predis/predis/tree/v3.0.1"
  1639. },
  1640. "funding": [
  1641. {
  1642. "url": "https://github.com/sponsors/tillkruss",
  1643. "type": "github"
  1644. }
  1645. ],
  1646. "time": "2025-05-16T18:30:32+00:00"
  1647. },
  1648. {
  1649. "name": "psr/http-client",
  1650. "version": "dev-master",
  1651. "source": {
  1652. "type": "git",
  1653. "url": "https://github.com/php-fig/http-client.git",
  1654. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  1655. },
  1656. "dist": {
  1657. "type": "zip",
  1658. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1659. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  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.0 || ^8.0",
  1670. "psr/http-message": "^1.0 || ^2.0"
  1671. },
  1672. "default-branch": true,
  1673. "type": "library",
  1674. "extra": {
  1675. "branch-alias": {
  1676. "dev-master": "1.0.x-dev"
  1677. }
  1678. },
  1679. "autoload": {
  1680. "psr-4": {
  1681. "Psr\\Http\\Client\\": "src/"
  1682. }
  1683. },
  1684. "notification-url": "https://packagist.org/downloads/",
  1685. "license": [
  1686. "MIT"
  1687. ],
  1688. "authors": [
  1689. {
  1690. "name": "PHP-FIG",
  1691. "homepage": "https://www.php-fig.org/"
  1692. }
  1693. ],
  1694. "description": "Common interface for HTTP clients",
  1695. "homepage": "https://github.com/php-fig/http-client",
  1696. "keywords": [
  1697. "http",
  1698. "http-client",
  1699. "psr",
  1700. "psr-18"
  1701. ],
  1702. "support": {
  1703. "source": "https://github.com/php-fig/http-client"
  1704. },
  1705. "time": "2023-09-23T14:17:50+00:00"
  1706. },
  1707. {
  1708. "name": "psr/http-factory",
  1709. "version": "dev-master",
  1710. "source": {
  1711. "type": "git",
  1712. "url": "https://github.com/php-fig/http-factory.git",
  1713. "reference": "7037f4b0950474e9d1350e8df89b15f1842085f6"
  1714. },
  1715. "dist": {
  1716. "type": "zip",
  1717. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/7037f4b0950474e9d1350e8df89b15f1842085f6",
  1718. "reference": "7037f4b0950474e9d1350e8df89b15f1842085f6",
  1719. "shasum": "",
  1720. "mirrors": [
  1721. {
  1722. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1723. "preferred": true
  1724. }
  1725. ]
  1726. },
  1727. "require": {
  1728. "php": ">=7.0.0",
  1729. "psr/http-message": "^1.0 || ^2.0"
  1730. },
  1731. "default-branch": true,
  1732. "type": "library",
  1733. "extra": {
  1734. "branch-alias": {
  1735. "dev-master": "1.0.x-dev"
  1736. }
  1737. },
  1738. "autoload": {
  1739. "psr-4": {
  1740. "Psr\\Http\\Message\\": "src/"
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "authors": [
  1748. {
  1749. "name": "PHP-FIG",
  1750. "homepage": "https://www.php-fig.org/"
  1751. }
  1752. ],
  1753. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  1754. "keywords": [
  1755. "factory",
  1756. "http",
  1757. "message",
  1758. "psr",
  1759. "psr-17",
  1760. "psr-7",
  1761. "request",
  1762. "response"
  1763. ],
  1764. "support": {
  1765. "source": "https://github.com/php-fig/http-factory"
  1766. },
  1767. "time": "2023-09-22T11:16:44+00:00"
  1768. },
  1769. {
  1770. "name": "psr/http-message",
  1771. "version": "dev-master",
  1772. "source": {
  1773. "type": "git",
  1774. "url": "https://github.com/php-fig/http-message.git",
  1775. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  1776. },
  1777. "dist": {
  1778. "type": "zip",
  1779. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  1780. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  1781. "shasum": "",
  1782. "mirrors": [
  1783. {
  1784. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1785. "preferred": true
  1786. }
  1787. ]
  1788. },
  1789. "require": {
  1790. "php": "^7.2 || ^8.0"
  1791. },
  1792. "default-branch": true,
  1793. "type": "library",
  1794. "extra": {
  1795. "branch-alias": {
  1796. "dev-master": "2.0.x-dev"
  1797. }
  1798. },
  1799. "autoload": {
  1800. "psr-4": {
  1801. "Psr\\Http\\Message\\": "src/"
  1802. }
  1803. },
  1804. "notification-url": "https://packagist.org/downloads/",
  1805. "license": [
  1806. "MIT"
  1807. ],
  1808. "authors": [
  1809. {
  1810. "name": "PHP-FIG",
  1811. "homepage": "https://www.php-fig.org/"
  1812. }
  1813. ],
  1814. "description": "Common interface for HTTP messages",
  1815. "homepage": "https://github.com/php-fig/http-message",
  1816. "keywords": [
  1817. "http",
  1818. "http-message",
  1819. "psr",
  1820. "psr-7",
  1821. "request",
  1822. "response"
  1823. ],
  1824. "support": {
  1825. "source": "https://github.com/php-fig/http-message/tree/2.0"
  1826. },
  1827. "time": "2023-04-04T09:54:51+00:00"
  1828. },
  1829. {
  1830. "name": "pwf0112/wxcrypt",
  1831. "version": "dev-master",
  1832. "source": {
  1833. "type": "git",
  1834. "url": "https://github.com/pwf0112/wxcrypt.git",
  1835. "reference": "4756b3cfb9e4b812d42acc381582485f21abe831"
  1836. },
  1837. "dist": {
  1838. "type": "zip",
  1839. "url": "https://api.github.com/repos/pwf0112/wxcrypt/zipball/4756b3cfb9e4b812d42acc381582485f21abe831",
  1840. "reference": "4756b3cfb9e4b812d42acc381582485f21abe831",
  1841. "shasum": "",
  1842. "mirrors": [
  1843. {
  1844. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1845. "preferred": true
  1846. }
  1847. ]
  1848. },
  1849. "require": {
  1850. "php": ">=5.5.9"
  1851. },
  1852. "require-dev": {
  1853. "phpunit/phpunit": "~4.0"
  1854. },
  1855. "default-branch": true,
  1856. "type": "library",
  1857. "autoload": {
  1858. "psr-4": {
  1859. "WxCrypt\\": "src/"
  1860. }
  1861. },
  1862. "notification-url": "https://packagist.org/downloads/",
  1863. "license": [
  1864. "MIT"
  1865. ],
  1866. "authors": [
  1867. {
  1868. "name": "彭未峰",
  1869. "email": "pwf0112@163.com"
  1870. }
  1871. ],
  1872. "description": "微信企业号接入文档Laravel改装",
  1873. "keywords": [
  1874. "企业号",
  1875. "回调接入",
  1876. "微信",
  1877. "消息加密",
  1878. "消息解密"
  1879. ],
  1880. "support": {
  1881. "issues": "https://github.com/pwf0112/wxcrypt/issues",
  1882. "source": "https://github.com/pwf0112/wxcrypt/tree/v1.0.4"
  1883. },
  1884. "time": "2016-10-27T08:11:14+00:00"
  1885. },
  1886. {
  1887. "name": "ralouphie/getallheaders",
  1888. "version": "3.0.3",
  1889. "source": {
  1890. "type": "git",
  1891. "url": "https://github.com/ralouphie/getallheaders.git",
  1892. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1893. },
  1894. "dist": {
  1895. "type": "zip",
  1896. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1897. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1898. "shasum": "",
  1899. "mirrors": [
  1900. {
  1901. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1902. "preferred": true
  1903. }
  1904. ]
  1905. },
  1906. "require": {
  1907. "php": ">=5.6"
  1908. },
  1909. "require-dev": {
  1910. "php-coveralls/php-coveralls": "^2.1",
  1911. "phpunit/phpunit": "^5 || ^6.5"
  1912. },
  1913. "type": "library",
  1914. "autoload": {
  1915. "files": [
  1916. "src/getallheaders.php"
  1917. ]
  1918. },
  1919. "notification-url": "https://packagist.org/downloads/",
  1920. "license": [
  1921. "MIT"
  1922. ],
  1923. "authors": [
  1924. {
  1925. "name": "Ralph Khattar",
  1926. "email": "ralph.khattar@gmail.com"
  1927. }
  1928. ],
  1929. "description": "A polyfill for getallheaders.",
  1930. "support": {
  1931. "issues": "https://github.com/ralouphie/getallheaders/issues",
  1932. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  1933. },
  1934. "time": "2019-03-08T08:55:37+00:00"
  1935. },
  1936. {
  1937. "name": "shishaoqi/meituan-flash-purchase",
  1938. "version": "v1.1.0",
  1939. "source": {
  1940. "type": "git",
  1941. "url": "https://github.com/shishaoqi/meituan-flash-purchase.git",
  1942. "reference": "23a571d7696b8a8bb3fc4922a26b1a7cc8e12afe"
  1943. },
  1944. "dist": {
  1945. "type": "zip",
  1946. "url": "https://api.github.com/repos/shishaoqi/meituan-flash-purchase/zipball/23a571d7696b8a8bb3fc4922a26b1a7cc8e12afe",
  1947. "reference": "23a571d7696b8a8bb3fc4922a26b1a7cc8e12afe",
  1948. "shasum": "",
  1949. "mirrors": [
  1950. {
  1951. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1952. "preferred": true
  1953. }
  1954. ]
  1955. },
  1956. "require": {
  1957. "guzzlehttp/guzzle": ">=6.5",
  1958. "php": ">=5.6"
  1959. },
  1960. "require-dev": {
  1961. "phpunit/phpunit": "^7.5.20"
  1962. },
  1963. "type": "library",
  1964. "autoload": {
  1965. "psr-4": {
  1966. "Shishaoqi\\MeituanFlashPurchase\\": "src"
  1967. }
  1968. },
  1969. "notification-url": "https://packagist.org/downloads/",
  1970. "license": [
  1971. "MIT"
  1972. ],
  1973. "authors": [
  1974. {
  1975. "name": "shishaoqi",
  1976. "email": "shishaoqi0928@gmail.com"
  1977. }
  1978. ],
  1979. "description": "美团外卖开放平台PHP SDK,更准确的说是美团闪购 SDK",
  1980. "support": {
  1981. "source": "https://github.com/shishaoqi/meituan-flash-purchase/tree/v1.1.0"
  1982. },
  1983. "time": "2022-07-11T09:40:52+00:00"
  1984. },
  1985. {
  1986. "name": "swiftmailer/swiftmailer",
  1987. "version": "5.x-dev",
  1988. "source": {
  1989. "type": "git",
  1990. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1991. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950"
  1992. },
  1993. "dist": {
  1994. "type": "zip",
  1995. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950",
  1996. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950",
  1997. "shasum": "",
  1998. "mirrors": [
  1999. {
  2000. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2001. "preferred": true
  2002. }
  2003. ]
  2004. },
  2005. "require": {
  2006. "php": ">=5.3.3"
  2007. },
  2008. "require-dev": {
  2009. "mockery/mockery": "~0.9.1",
  2010. "symfony/phpunit-bridge": "~3.2"
  2011. },
  2012. "type": "library",
  2013. "extra": {
  2014. "branch-alias": {
  2015. "dev-master": "5.4-dev"
  2016. }
  2017. },
  2018. "autoload": {
  2019. "files": [
  2020. "lib/swift_required.php"
  2021. ]
  2022. },
  2023. "notification-url": "https://packagist.org/downloads/",
  2024. "license": [
  2025. "MIT"
  2026. ],
  2027. "authors": [
  2028. {
  2029. "name": "Chris Corbyn"
  2030. },
  2031. {
  2032. "name": "Fabien Potencier",
  2033. "email": "fabien@symfony.com"
  2034. }
  2035. ],
  2036. "description": "Swiftmailer, free feature-rich PHP mailer",
  2037. "homepage": "https://swiftmailer.symfony.com",
  2038. "keywords": [
  2039. "email",
  2040. "mail",
  2041. "mailer"
  2042. ],
  2043. "support": {
  2044. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2045. "source": "https://github.com/swiftmailer/swiftmailer/tree/v5.4.12"
  2046. },
  2047. "abandoned": "symfony/mailer",
  2048. "time": "2018-07-31T09:26:32+00:00"
  2049. },
  2050. {
  2051. "name": "symfony/deprecation-contracts",
  2052. "version": "2.5.x-dev",
  2053. "source": {
  2054. "type": "git",
  2055. "url": "https://github.com/symfony/deprecation-contracts.git",
  2056. "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918"
  2057. },
  2058. "dist": {
  2059. "type": "zip",
  2060. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/605389f2a7e5625f273b53960dc46aeaf9c62918",
  2061. "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918",
  2062. "shasum": "",
  2063. "mirrors": [
  2064. {
  2065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2066. "preferred": true
  2067. }
  2068. ]
  2069. },
  2070. "require": {
  2071. "php": ">=7.1"
  2072. },
  2073. "type": "library",
  2074. "extra": {
  2075. "thanks": {
  2076. "url": "https://github.com/symfony/contracts",
  2077. "name": "symfony/contracts"
  2078. },
  2079. "branch-alias": {
  2080. "dev-main": "2.5-dev"
  2081. }
  2082. },
  2083. "autoload": {
  2084. "files": [
  2085. "function.php"
  2086. ]
  2087. },
  2088. "notification-url": "https://packagist.org/downloads/",
  2089. "license": [
  2090. "MIT"
  2091. ],
  2092. "authors": [
  2093. {
  2094. "name": "Nicolas Grekas",
  2095. "email": "p@tchwork.com"
  2096. },
  2097. {
  2098. "name": "Symfony Community",
  2099. "homepage": "https://symfony.com/contributors"
  2100. }
  2101. ],
  2102. "description": "A generic function and convention to trigger deprecation notices",
  2103. "homepage": "https://symfony.com",
  2104. "support": {
  2105. "source": "https://github.com/symfony/deprecation-contracts/tree/2.5"
  2106. },
  2107. "funding": [
  2108. {
  2109. "url": "https://symfony.com/sponsor",
  2110. "type": "custom"
  2111. },
  2112. {
  2113. "url": "https://github.com/fabpot",
  2114. "type": "github"
  2115. },
  2116. {
  2117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2118. "type": "tidelift"
  2119. }
  2120. ],
  2121. "time": "2024-09-25T14:11:13+00:00"
  2122. },
  2123. {
  2124. "name": "symfony/polyfill-ctype",
  2125. "version": "1.x-dev",
  2126. "source": {
  2127. "type": "git",
  2128. "url": "https://github.com/symfony/polyfill-ctype.git",
  2129. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  2130. },
  2131. "dist": {
  2132. "type": "zip",
  2133. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  2134. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  2135. "shasum": "",
  2136. "mirrors": [
  2137. {
  2138. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2139. "preferred": true
  2140. }
  2141. ]
  2142. },
  2143. "require": {
  2144. "php": ">=7.2"
  2145. },
  2146. "provide": {
  2147. "ext-ctype": "*"
  2148. },
  2149. "suggest": {
  2150. "ext-ctype": "For best performance"
  2151. },
  2152. "default-branch": true,
  2153. "type": "library",
  2154. "extra": {
  2155. "thanks": {
  2156. "url": "https://github.com/symfony/polyfill",
  2157. "name": "symfony/polyfill"
  2158. }
  2159. },
  2160. "autoload": {
  2161. "files": [
  2162. "bootstrap.php"
  2163. ],
  2164. "psr-4": {
  2165. "Symfony\\Polyfill\\Ctype\\": ""
  2166. }
  2167. },
  2168. "notification-url": "https://packagist.org/downloads/",
  2169. "license": [
  2170. "MIT"
  2171. ],
  2172. "authors": [
  2173. {
  2174. "name": "Gert de Pagter",
  2175. "email": "BackEndTea@gmail.com"
  2176. },
  2177. {
  2178. "name": "Symfony Community",
  2179. "homepage": "https://symfony.com/contributors"
  2180. }
  2181. ],
  2182. "description": "Symfony polyfill for ctype functions",
  2183. "homepage": "https://symfony.com",
  2184. "keywords": [
  2185. "compatibility",
  2186. "ctype",
  2187. "polyfill",
  2188. "portable"
  2189. ],
  2190. "support": {
  2191. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  2192. },
  2193. "funding": [
  2194. {
  2195. "url": "https://symfony.com/sponsor",
  2196. "type": "custom"
  2197. },
  2198. {
  2199. "url": "https://github.com/fabpot",
  2200. "type": "github"
  2201. },
  2202. {
  2203. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2204. "type": "tidelift"
  2205. }
  2206. ],
  2207. "time": "2024-09-09T11:45:10+00:00"
  2208. },
  2209. {
  2210. "name": "symfony/polyfill-mbstring",
  2211. "version": "1.x-dev",
  2212. "source": {
  2213. "type": "git",
  2214. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2215. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  2216. },
  2217. "dist": {
  2218. "type": "zip",
  2219. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  2220. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  2221. "shasum": "",
  2222. "mirrors": [
  2223. {
  2224. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2225. "preferred": true
  2226. }
  2227. ]
  2228. },
  2229. "require": {
  2230. "ext-iconv": "*",
  2231. "php": ">=7.2"
  2232. },
  2233. "provide": {
  2234. "ext-mbstring": "*"
  2235. },
  2236. "suggest": {
  2237. "ext-mbstring": "For best performance"
  2238. },
  2239. "default-branch": true,
  2240. "type": "library",
  2241. "extra": {
  2242. "thanks": {
  2243. "url": "https://github.com/symfony/polyfill",
  2244. "name": "symfony/polyfill"
  2245. }
  2246. },
  2247. "autoload": {
  2248. "files": [
  2249. "bootstrap.php"
  2250. ],
  2251. "psr-4": {
  2252. "Symfony\\Polyfill\\Mbstring\\": ""
  2253. }
  2254. },
  2255. "notification-url": "https://packagist.org/downloads/",
  2256. "license": [
  2257. "MIT"
  2258. ],
  2259. "authors": [
  2260. {
  2261. "name": "Nicolas Grekas",
  2262. "email": "p@tchwork.com"
  2263. },
  2264. {
  2265. "name": "Symfony Community",
  2266. "homepage": "https://symfony.com/contributors"
  2267. }
  2268. ],
  2269. "description": "Symfony polyfill for the Mbstring extension",
  2270. "homepage": "https://symfony.com",
  2271. "keywords": [
  2272. "compatibility",
  2273. "mbstring",
  2274. "polyfill",
  2275. "portable",
  2276. "shim"
  2277. ],
  2278. "support": {
  2279. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  2280. },
  2281. "funding": [
  2282. {
  2283. "url": "https://symfony.com/sponsor",
  2284. "type": "custom"
  2285. },
  2286. {
  2287. "url": "https://github.com/fabpot",
  2288. "type": "github"
  2289. },
  2290. {
  2291. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2292. "type": "tidelift"
  2293. }
  2294. ],
  2295. "time": "2024-12-23T08:48:59+00:00"
  2296. },
  2297. {
  2298. "name": "symfony/yaml",
  2299. "version": "2.8.x-dev",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://github.com/symfony/yaml.git",
  2303. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://api.github.com/repos/symfony/yaml/zipball/02c1859112aa779d9ab394ae4f3381911d84052b",
  2308. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b",
  2309. "shasum": "",
  2310. "mirrors": [
  2311. {
  2312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2313. "preferred": true
  2314. }
  2315. ]
  2316. },
  2317. "require": {
  2318. "php": ">=5.3.9",
  2319. "symfony/polyfill-ctype": "~1.8"
  2320. },
  2321. "type": "library",
  2322. "extra": {
  2323. "branch-alias": {
  2324. "dev-master": "2.8-dev"
  2325. }
  2326. },
  2327. "autoload": {
  2328. "psr-4": {
  2329. "Symfony\\Component\\Yaml\\": ""
  2330. },
  2331. "exclude-from-classmap": [
  2332. "/Tests/"
  2333. ]
  2334. },
  2335. "notification-url": "https://packagist.org/downloads/",
  2336. "license": [
  2337. "MIT"
  2338. ],
  2339. "authors": [
  2340. {
  2341. "name": "Fabien Potencier",
  2342. "email": "fabien@symfony.com"
  2343. },
  2344. {
  2345. "name": "Symfony Community",
  2346. "homepage": "https://symfony.com/contributors"
  2347. }
  2348. ],
  2349. "description": "Symfony Yaml Component",
  2350. "homepage": "https://symfony.com",
  2351. "support": {
  2352. "source": "https://github.com/symfony/yaml/tree/2.8"
  2353. },
  2354. "time": "2018-11-11T11:18:13+00:00"
  2355. },
  2356. {
  2357. "name": "vlucas/phpdotenv",
  2358. "version": "4.3.x-dev",
  2359. "source": {
  2360. "type": "git",
  2361. "url": "https://github.com/vlucas/phpdotenv.git",
  2362. "reference": "67a491df68208bef8c37092db11fa3885008efcf"
  2363. },
  2364. "dist": {
  2365. "type": "zip",
  2366. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67a491df68208bef8c37092db11fa3885008efcf",
  2367. "reference": "67a491df68208bef8c37092db11fa3885008efcf",
  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. "php": "^5.5.9 || ^7.0 || ^8.0",
  2378. "phpoption/phpoption": "^1.7.3",
  2379. "symfony/polyfill-ctype": "^1.17"
  2380. },
  2381. "require-dev": {
  2382. "bamarni/composer-bin-plugin": "^1.4.1",
  2383. "ext-filter": "*",
  2384. "ext-pcre": "*",
  2385. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.30"
  2386. },
  2387. "suggest": {
  2388. "ext-filter": "Required to use the boolean validator.",
  2389. "ext-pcre": "Required to use most of the library."
  2390. },
  2391. "type": "library",
  2392. "extra": {
  2393. "bamarni-bin": {
  2394. "bin-links": true,
  2395. "forward-command": true
  2396. },
  2397. "branch-alias": {
  2398. "dev-master": "4.3-dev"
  2399. }
  2400. },
  2401. "autoload": {
  2402. "psr-4": {
  2403. "Dotenv\\": "src/"
  2404. }
  2405. },
  2406. "notification-url": "https://packagist.org/downloads/",
  2407. "license": [
  2408. "BSD-3-Clause"
  2409. ],
  2410. "authors": [
  2411. {
  2412. "name": "Graham Campbell",
  2413. "email": "hello@gjcampbell.co.uk",
  2414. "homepage": "https://github.com/GrahamCampbell"
  2415. },
  2416. {
  2417. "name": "Vance Lucas",
  2418. "email": "vance@vancelucas.com",
  2419. "homepage": "https://github.com/vlucas"
  2420. }
  2421. ],
  2422. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2423. "keywords": [
  2424. "dotenv",
  2425. "env",
  2426. "environment"
  2427. ],
  2428. "support": {
  2429. "issues": "https://github.com/vlucas/phpdotenv/issues",
  2430. "source": "https://github.com/vlucas/phpdotenv/tree/4.3"
  2431. },
  2432. "funding": [
  2433. {
  2434. "url": "https://github.com/GrahamCampbell",
  2435. "type": "github"
  2436. },
  2437. {
  2438. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  2439. "type": "tidelift"
  2440. }
  2441. ],
  2442. "time": "2022-10-16T00:51:09+00:00"
  2443. },
  2444. {
  2445. "name": "workerman/gatewayclient",
  2446. "version": "v3.0.13",
  2447. "source": {
  2448. "type": "git",
  2449. "url": "https://github.com/walkor/GatewayClient.git",
  2450. "reference": "6f4e76f38947be5cabca2c6fee367151f248d949"
  2451. },
  2452. "dist": {
  2453. "type": "zip",
  2454. "url": "https://api.github.com/repos/walkor/GatewayClient/zipball/6f4e76f38947be5cabca2c6fee367151f248d949",
  2455. "reference": "6f4e76f38947be5cabca2c6fee367151f248d949",
  2456. "shasum": "",
  2457. "mirrors": [
  2458. {
  2459. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2460. "preferred": true
  2461. }
  2462. ]
  2463. },
  2464. "type": "library",
  2465. "autoload": {
  2466. "psr-4": {
  2467. "GatewayClient\\": "./"
  2468. }
  2469. },
  2470. "notification-url": "https://packagist.org/downloads/",
  2471. "license": [
  2472. "MIT"
  2473. ],
  2474. "homepage": "http://www.workerman.net",
  2475. "support": {
  2476. "issues": "https://github.com/walkor/GatewayClient/issues",
  2477. "source": "https://github.com/walkor/GatewayClient/tree/v3.0.13"
  2478. },
  2479. "time": "2018-09-15T03:03:50+00:00"
  2480. },
  2481. {
  2482. "name": "yiier/yii2-aliyun-oss",
  2483. "version": "dev-master",
  2484. "source": {
  2485. "type": "git",
  2486. "url": "https://github.com/yiier/yii2-aliyun-oss.git",
  2487. "reference": "ce1587cd58466cdf3a593f78532a210f2645f76a"
  2488. },
  2489. "dist": {
  2490. "type": "zip",
  2491. "url": "https://api.github.com/repos/yiier/yii2-aliyun-oss/zipball/ce1587cd58466cdf3a593f78532a210f2645f76a",
  2492. "reference": "ce1587cd58466cdf3a593f78532a210f2645f76a",
  2493. "shasum": "",
  2494. "mirrors": [
  2495. {
  2496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2497. "preferred": true
  2498. }
  2499. ]
  2500. },
  2501. "require": {
  2502. "aliyuncs/oss-sdk-php": ">2.0",
  2503. "yiisoft/yii2": "*"
  2504. },
  2505. "default-branch": true,
  2506. "type": "yii2-extension",
  2507. "autoload": {
  2508. "psr-4": {
  2509. "yiier\\AliyunOSS\\": ""
  2510. }
  2511. },
  2512. "notification-url": "https://packagist.org/downloads/",
  2513. "license": [
  2514. "BSD-3-Clause"
  2515. ],
  2516. "authors": [
  2517. {
  2518. "name": "forecho",
  2519. "email": "caizhenghai@gmail.com"
  2520. }
  2521. ],
  2522. "description": "Yii2 阿里云 OSS",
  2523. "keywords": [
  2524. "AliyunOSS",
  2525. "extension",
  2526. "oss",
  2527. "yii2"
  2528. ],
  2529. "support": {
  2530. "issues": "https://github.com/yiier/yii2-aliyun-oss/issues",
  2531. "source": "https://github.com/yiier/yii2-aliyun-oss/tree/master"
  2532. },
  2533. "funding": [
  2534. {
  2535. "url": "https://blog-1251237404.cos.ap-guangzhou.myqcloud.com/20190424153431.png",
  2536. "type": "custom"
  2537. },
  2538. {
  2539. "url": "https://blog-1251237404.cos.ap-guangzhou.myqcloud.com/20190424153510.png",
  2540. "type": "custom"
  2541. },
  2542. {
  2543. "url": "https://opencollective.com/yiier",
  2544. "type": "open_collective"
  2545. }
  2546. ],
  2547. "time": "2020-06-08T06:35:54+00:00"
  2548. },
  2549. {
  2550. "name": "yiisoft/yii2",
  2551. "version": "2.0.53",
  2552. "source": {
  2553. "type": "git",
  2554. "url": "https://github.com/yiisoft/yii2-framework.git",
  2555. "reference": "6c622fb8243181d7912b62ad80821cc0e1c745db"
  2556. },
  2557. "dist": {
  2558. "type": "zip",
  2559. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/6c622fb8243181d7912b62ad80821cc0e1c745db",
  2560. "reference": "6c622fb8243181d7912b62ad80821cc0e1c745db",
  2561. "shasum": "",
  2562. "mirrors": [
  2563. {
  2564. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2565. "preferred": true
  2566. }
  2567. ]
  2568. },
  2569. "require": {
  2570. "bower-asset/inputmask": "^5.0.8 ",
  2571. "bower-asset/jquery": "3.7.*@stable | 3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  2572. "bower-asset/punycode": "^1.4",
  2573. "bower-asset/yii2-pjax": "~2.0.1",
  2574. "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
  2575. "ext-ctype": "*",
  2576. "ext-mbstring": "*",
  2577. "ezyang/htmlpurifier": "^4.17",
  2578. "lib-pcre": "*",
  2579. "php": ">=7.3.0",
  2580. "yiisoft/yii2-composer": "~2.0.4"
  2581. },
  2582. "bin": [
  2583. "yii"
  2584. ],
  2585. "type": "library",
  2586. "extra": {
  2587. "branch-alias": {
  2588. "dev-master": "2.0.x-dev"
  2589. }
  2590. },
  2591. "autoload": {
  2592. "psr-4": {
  2593. "yii\\": ""
  2594. }
  2595. },
  2596. "notification-url": "https://packagist.org/downloads/",
  2597. "license": [
  2598. "BSD-3-Clause"
  2599. ],
  2600. "authors": [
  2601. {
  2602. "name": "Qiang Xue",
  2603. "email": "qiang.xue@gmail.com",
  2604. "homepage": "https://www.yiiframework.com/",
  2605. "role": "Founder and project lead"
  2606. },
  2607. {
  2608. "name": "Alexander Makarov",
  2609. "email": "sam@rmcreative.ru",
  2610. "homepage": "https://rmcreative.ru/",
  2611. "role": "Core framework development"
  2612. },
  2613. {
  2614. "name": "Maurizio Domba",
  2615. "homepage": "http://mdomba.info/",
  2616. "role": "Core framework development"
  2617. },
  2618. {
  2619. "name": "Carsten Brandt",
  2620. "email": "mail@cebe.cc",
  2621. "homepage": "https://www.cebe.cc/",
  2622. "role": "Core framework development"
  2623. },
  2624. {
  2625. "name": "Timur Ruziev",
  2626. "email": "resurtm@gmail.com",
  2627. "homepage": "http://resurtm.com/",
  2628. "role": "Core framework development"
  2629. },
  2630. {
  2631. "name": "Paul Klimov",
  2632. "email": "klimov.paul@gmail.com",
  2633. "role": "Core framework development"
  2634. },
  2635. {
  2636. "name": "Dmitry Naumenko",
  2637. "email": "d.naumenko.a@gmail.com",
  2638. "role": "Core framework development"
  2639. },
  2640. {
  2641. "name": "Boudewijn Vahrmeijer",
  2642. "email": "info@dynasource.eu",
  2643. "homepage": "http://dynasource.eu",
  2644. "role": "Core framework development"
  2645. }
  2646. ],
  2647. "description": "Yii PHP Framework Version 2",
  2648. "homepage": "https://www.yiiframework.com/",
  2649. "keywords": [
  2650. "framework",
  2651. "yii2"
  2652. ],
  2653. "support": {
  2654. "forum": "https://forum.yiiframework.com/",
  2655. "irc": "ircs://irc.libera.chat:6697/yii",
  2656. "issues": "https://github.com/yiisoft/yii2/issues?state=open",
  2657. "source": "https://github.com/yiisoft/yii2",
  2658. "wiki": "https://www.yiiframework.com/wiki"
  2659. },
  2660. "funding": [
  2661. {
  2662. "url": "https://github.com/yiisoft",
  2663. "type": "github"
  2664. },
  2665. {
  2666. "url": "https://opencollective.com/yiisoft",
  2667. "type": "open_collective"
  2668. },
  2669. {
  2670. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2",
  2671. "type": "tidelift"
  2672. }
  2673. ],
  2674. "time": "2025-06-27T07:42:53+00:00"
  2675. },
  2676. {
  2677. "name": "yiisoft/yii2-bootstrap",
  2678. "version": "dev-master",
  2679. "source": {
  2680. "type": "git",
  2681. "url": "https://github.com/yiisoft/yii2-bootstrap.git",
  2682. "reference": "2aedc680e9496982e68c106fa010326a4138b389"
  2683. },
  2684. "dist": {
  2685. "type": "zip",
  2686. "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/2aedc680e9496982e68c106fa010326a4138b389",
  2687. "reference": "2aedc680e9496982e68c106fa010326a4138b389",
  2688. "shasum": "",
  2689. "mirrors": [
  2690. {
  2691. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2692. "preferred": true
  2693. }
  2694. ]
  2695. },
  2696. "require": {
  2697. "bower-asset/bootstrap": "3.4.* | 3.3.* | 3.2.* | 3.1.*",
  2698. "yiisoft/yii2": "~2.0.6"
  2699. },
  2700. "require-dev": {
  2701. "cweagans/composer-patches": "^1.7",
  2702. "phpunit/phpunit": "4.8.34"
  2703. },
  2704. "default-branch": true,
  2705. "type": "yii2-extension",
  2706. "extra": {
  2707. "patches": {
  2708. "phpunit/phpunit": {
  2709. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  2710. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  2711. },
  2712. "phpunit/phpunit-mock-objects": {
  2713. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  2714. }
  2715. },
  2716. "branch-alias": {
  2717. "dev-master": "2.0.x-dev"
  2718. }
  2719. },
  2720. "autoload": {
  2721. "psr-4": {
  2722. "yii\\bootstrap\\": "src"
  2723. }
  2724. },
  2725. "notification-url": "https://packagist.org/downloads/",
  2726. "license": [
  2727. "BSD-3-Clause"
  2728. ],
  2729. "authors": [
  2730. {
  2731. "name": "Qiang Xue",
  2732. "email": "qiang.xue@gmail.com",
  2733. "homepage": "https://www.yiiframework.com/"
  2734. },
  2735. {
  2736. "name": "Alexander Makarov",
  2737. "email": "sam@rmcreative.ru",
  2738. "homepage": "https://rmcreative.ru/"
  2739. },
  2740. {
  2741. "name": "Antonio Ramirez",
  2742. "email": "amigo.cobos@gmail.com"
  2743. },
  2744. {
  2745. "name": "Paul Klimov",
  2746. "email": "klimov.paul@gmail.com"
  2747. }
  2748. ],
  2749. "description": "The Twitter Bootstrap extension for the Yii framework",
  2750. "keywords": [
  2751. "bootstrap",
  2752. "yii2"
  2753. ],
  2754. "support": {
  2755. "forum": "https://www.yiiframework.com/forum/",
  2756. "irc": "ircs://irc.libera.chat:6697/yii",
  2757. "issues": "https://github.com/yiisoft/yii2-bootstrap/issues",
  2758. "source": "https://github.com/yiisoft/yii2-bootstrap",
  2759. "wiki": "https://www.yiiframework.com/wiki/"
  2760. },
  2761. "funding": [
  2762. {
  2763. "url": "https://github.com/yiisoft",
  2764. "type": "github"
  2765. },
  2766. {
  2767. "url": "https://opencollective.com/yiisoft",
  2768. "type": "open_collective"
  2769. },
  2770. {
  2771. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-bootstrap",
  2772. "type": "tidelift"
  2773. }
  2774. ],
  2775. "time": "2023-06-02T07:19:18+00:00"
  2776. },
  2777. {
  2778. "name": "yiisoft/yii2-composer",
  2779. "version": "dev-master",
  2780. "source": {
  2781. "type": "git",
  2782. "url": "https://github.com/yiisoft/yii2-composer.git",
  2783. "reference": "b684b01ecb119c8287721def726a0e24fec2fef2"
  2784. },
  2785. "dist": {
  2786. "type": "zip",
  2787. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/b684b01ecb119c8287721def726a0e24fec2fef2",
  2788. "reference": "b684b01ecb119c8287721def726a0e24fec2fef2",
  2789. "shasum": "",
  2790. "mirrors": [
  2791. {
  2792. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2793. "preferred": true
  2794. }
  2795. ]
  2796. },
  2797. "require": {
  2798. "composer-plugin-api": "^1.0 | ^2.0"
  2799. },
  2800. "require-dev": {
  2801. "composer/composer": "^1.0 | ^2.0@dev",
  2802. "phpunit/phpunit": "<7"
  2803. },
  2804. "default-branch": true,
  2805. "type": "composer-plugin",
  2806. "extra": {
  2807. "class": "yii\\composer\\Plugin",
  2808. "branch-alias": {
  2809. "dev-master": "2.0.x-dev"
  2810. }
  2811. },
  2812. "autoload": {
  2813. "psr-4": {
  2814. "yii\\composer\\": ""
  2815. }
  2816. },
  2817. "notification-url": "https://packagist.org/downloads/",
  2818. "license": [
  2819. "BSD-3-Clause"
  2820. ],
  2821. "authors": [
  2822. {
  2823. "name": "Qiang Xue",
  2824. "email": "qiang.xue@gmail.com"
  2825. },
  2826. {
  2827. "name": "Carsten Brandt",
  2828. "email": "mail@cebe.cc"
  2829. }
  2830. ],
  2831. "description": "The composer plugin for Yii extension installer",
  2832. "keywords": [
  2833. "composer",
  2834. "extension installer",
  2835. "yii2"
  2836. ],
  2837. "support": {
  2838. "forum": "https://www.yiiframework.com/forum/",
  2839. "irc": "ircs://irc.libera.chat:6697/yii",
  2840. "issues": "https://github.com/yiisoft/yii2-composer/issues",
  2841. "source": "https://github.com/yiisoft/yii2-composer",
  2842. "wiki": "https://www.yiiframework.com/wiki/"
  2843. },
  2844. "funding": [
  2845. {
  2846. "url": "https://github.com/yiisoft",
  2847. "type": "github"
  2848. },
  2849. {
  2850. "url": "https://opencollective.com/yiisoft",
  2851. "type": "open_collective"
  2852. },
  2853. {
  2854. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-composer",
  2855. "type": "tidelift"
  2856. }
  2857. ],
  2858. "time": "2025-02-13T20:59:36+00:00"
  2859. },
  2860. {
  2861. "name": "yiisoft/yii2-imagine",
  2862. "version": "2.3.1",
  2863. "source": {
  2864. "type": "git",
  2865. "url": "https://github.com/yiisoft/yii2-imagine.git",
  2866. "reference": "7ec4332dc25893aec5a7cf084722b162b3a4d55d"
  2867. },
  2868. "dist": {
  2869. "type": "zip",
  2870. "url": "https://api.github.com/repos/yiisoft/yii2-imagine/zipball/7ec4332dc25893aec5a7cf084722b162b3a4d55d",
  2871. "reference": "7ec4332dc25893aec5a7cf084722b162b3a4d55d",
  2872. "shasum": "",
  2873. "mirrors": [
  2874. {
  2875. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2876. "preferred": true
  2877. }
  2878. ]
  2879. },
  2880. "require": {
  2881. "imagine/imagine": "^1.0",
  2882. "yiisoft/yii2": "~2.0.0"
  2883. },
  2884. "require-dev": {
  2885. "cweagans/composer-patches": "^1.7",
  2886. "phpunit/phpunit": "4.8.34"
  2887. },
  2888. "type": "yii2-extension",
  2889. "extra": {
  2890. "patches": {
  2891. "phpunit/phpunit": {
  2892. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  2893. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  2894. },
  2895. "phpunit/phpunit-mock-objects": {
  2896. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  2897. }
  2898. },
  2899. "branch-alias": {
  2900. "dev-master": "2.0.x-dev"
  2901. },
  2902. "composer-exit-on-patch-failure": true
  2903. },
  2904. "autoload": {
  2905. "psr-4": {
  2906. "yii\\imagine\\": "src"
  2907. }
  2908. },
  2909. "notification-url": "https://packagist.org/downloads/",
  2910. "license": [
  2911. "BSD-3-Clause"
  2912. ],
  2913. "authors": [
  2914. {
  2915. "name": "Antonio Ramirez",
  2916. "email": "amigo.cobos@gmail.com"
  2917. }
  2918. ],
  2919. "description": "The Imagine integration for the Yii framework",
  2920. "keywords": [
  2921. "helper",
  2922. "image",
  2923. "imagine",
  2924. "yii2"
  2925. ],
  2926. "support": {
  2927. "forum": "http://www.yiiframework.com/forum/",
  2928. "irc": "irc://irc.freenode.net/yii",
  2929. "issues": "https://github.com/yiisoft/yii2-imagine/issues",
  2930. "source": "https://github.com/yiisoft/yii2-imagine",
  2931. "wiki": "http://www.yiiframework.com/wiki/"
  2932. },
  2933. "funding": [
  2934. {
  2935. "url": "https://github.com/yiisoft",
  2936. "type": "github"
  2937. },
  2938. {
  2939. "url": "https://opencollective.com/yiisoft",
  2940. "type": "open_collective"
  2941. },
  2942. {
  2943. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-imagine",
  2944. "type": "tidelift"
  2945. }
  2946. ],
  2947. "time": "2022-09-04T10:06:40+00:00"
  2948. },
  2949. {
  2950. "name": "yiisoft/yii2-redis",
  2951. "version": "dev-master",
  2952. "source": {
  2953. "type": "git",
  2954. "url": "https://github.com/yiisoft/yii2-redis.git",
  2955. "reference": "efe038dd6637cc538715489a660504d4721a38a8"
  2956. },
  2957. "dist": {
  2958. "type": "zip",
  2959. "url": "https://api.github.com/repos/yiisoft/yii2-redis/zipball/efe038dd6637cc538715489a660504d4721a38a8",
  2960. "reference": "efe038dd6637cc538715489a660504d4721a38a8",
  2961. "shasum": "",
  2962. "mirrors": [
  2963. {
  2964. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2965. "preferred": true
  2966. }
  2967. ]
  2968. },
  2969. "require": {
  2970. "ext-openssl": "*",
  2971. "php": "^7.3 || ^8.0",
  2972. "predis/predis": "^v2.3.0|^3.0",
  2973. "yiisoft/yii2": "~2.0.39"
  2974. },
  2975. "require-dev": {
  2976. "phpunit/phpunit": "9.*",
  2977. "yiisoft/yii2-dev": "~2.0.39"
  2978. },
  2979. "default-branch": true,
  2980. "type": "yii2-extension",
  2981. "extra": {
  2982. "branch-alias": {
  2983. "dev-master": "2.0.x-dev"
  2984. }
  2985. },
  2986. "autoload": {
  2987. "psr-4": {
  2988. "yii\\redis\\": "src"
  2989. }
  2990. },
  2991. "notification-url": "https://packagist.org/downloads/",
  2992. "license": [
  2993. "BSD-3-Clause"
  2994. ],
  2995. "authors": [
  2996. {
  2997. "name": "Carsten Brandt",
  2998. "email": "mail@cebe.cc"
  2999. }
  3000. ],
  3001. "description": "Redis Cache, Session and ActiveRecord for the Yii framework",
  3002. "keywords": [
  3003. "active-record",
  3004. "cache",
  3005. "redis",
  3006. "session",
  3007. "yii2"
  3008. ],
  3009. "support": {
  3010. "forum": "https://www.yiiframework.com/forum/",
  3011. "irc": "ircs://irc.libera.chat:6697/yii",
  3012. "issues": "https://github.com/yiisoft/yii2-redis/issues",
  3013. "source": "https://github.com/yiisoft/yii2-redis",
  3014. "wiki": "https://www.yiiframework.com/wiki/"
  3015. },
  3016. "funding": [
  3017. {
  3018. "url": "https://github.com/yiisoft",
  3019. "type": "github"
  3020. },
  3021. {
  3022. "url": "https://opencollective.com/yiisoft",
  3023. "type": "open_collective"
  3024. },
  3025. {
  3026. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-redis",
  3027. "type": "tidelift"
  3028. }
  3029. ],
  3030. "time": "2025-07-14T16:56:01+00:00"
  3031. },
  3032. {
  3033. "name": "yiisoft/yii2-swiftmailer",
  3034. "version": "2.0.7",
  3035. "source": {
  3036. "type": "git",
  3037. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  3038. "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec"
  3039. },
  3040. "dist": {
  3041. "type": "zip",
  3042. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/8a03a62cbcb82e7697d3002eb43a8d2637f566ec",
  3043. "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec",
  3044. "shasum": "",
  3045. "mirrors": [
  3046. {
  3047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3048. "preferred": true
  3049. }
  3050. ]
  3051. },
  3052. "require": {
  3053. "swiftmailer/swiftmailer": "~5.0",
  3054. "yiisoft/yii2": "~2.0.4"
  3055. },
  3056. "type": "yii2-extension",
  3057. "extra": {
  3058. "branch-alias": {
  3059. "dev-master": "2.0.x-dev"
  3060. }
  3061. },
  3062. "autoload": {
  3063. "psr-4": {
  3064. "yii\\swiftmailer\\": ""
  3065. }
  3066. },
  3067. "notification-url": "https://packagist.org/downloads/",
  3068. "license": [
  3069. "BSD-3-Clause"
  3070. ],
  3071. "authors": [
  3072. {
  3073. "name": "Paul Klimov",
  3074. "email": "klimov.paul@gmail.com"
  3075. }
  3076. ],
  3077. "description": "The SwiftMailer integration for the Yii framework",
  3078. "keywords": [
  3079. "email",
  3080. "mail",
  3081. "mailer",
  3082. "swift",
  3083. "swiftmailer",
  3084. "yii2"
  3085. ],
  3086. "support": {
  3087. "forum": "http://www.yiiframework.com/forum/",
  3088. "irc": "irc://irc.freenode.net/yii",
  3089. "issues": "https://github.com/yiisoft/yii2-swiftmailer/issues",
  3090. "source": "https://github.com/yiisoft/yii2-swiftmailer",
  3091. "wiki": "http://www.yiiframework.com/wiki/"
  3092. },
  3093. "time": "2017-05-01T08:29:00+00:00"
  3094. }
  3095. ],
  3096. "packages-dev": [
  3097. {
  3098. "name": "bower-asset/typeahead.js",
  3099. "version": "v0.11.1",
  3100. "source": {
  3101. "type": "git",
  3102. "url": "git@github.com:twitter/typeahead.js.git",
  3103. "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
  3104. },
  3105. "dist": {
  3106. "type": "zip",
  3107. "url": "https://api.github.com/repos/twitter/typeahead.js/zipball/588440f66559714280628a4f9799f0c4eb880a4a",
  3108. "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
  3109. },
  3110. "require": {
  3111. "bower-asset/jquery": ">=1.7"
  3112. },
  3113. "type": "bower-asset"
  3114. },
  3115. {
  3116. "name": "doctrine/instantiator",
  3117. "version": "1.5.x-dev",
  3118. "source": {
  3119. "type": "git",
  3120. "url": "https://github.com/doctrine/instantiator.git",
  3121. "reference": "12be2483e1f0e850b353e26869e4e6c038459501"
  3122. },
  3123. "dist": {
  3124. "type": "zip",
  3125. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/12be2483e1f0e850b353e26869e4e6c038459501",
  3126. "reference": "12be2483e1f0e850b353e26869e4e6c038459501",
  3127. "shasum": "",
  3128. "mirrors": [
  3129. {
  3130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3131. "preferred": true
  3132. }
  3133. ]
  3134. },
  3135. "require": {
  3136. "php": "^7.1 || ^8.0"
  3137. },
  3138. "require-dev": {
  3139. "doctrine/coding-standard": "^9 || ^12",
  3140. "ext-pdo": "*",
  3141. "ext-phar": "*",
  3142. "phpbench/phpbench": "^0.16 || ^1",
  3143. "phpstan/phpstan": "^1.4",
  3144. "phpstan/phpstan-phpunit": "^1",
  3145. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  3146. "vimeo/psalm": "^4.30 || ^5.4"
  3147. },
  3148. "type": "library",
  3149. "autoload": {
  3150. "psr-4": {
  3151. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  3152. }
  3153. },
  3154. "notification-url": "https://packagist.org/downloads/",
  3155. "license": [
  3156. "MIT"
  3157. ],
  3158. "authors": [
  3159. {
  3160. "name": "Marco Pivetta",
  3161. "email": "ocramius@gmail.com",
  3162. "homepage": "https://ocramius.github.io/"
  3163. }
  3164. ],
  3165. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  3166. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  3167. "keywords": [
  3168. "constructor",
  3169. "instantiate"
  3170. ],
  3171. "support": {
  3172. "issues": "https://github.com/doctrine/instantiator/issues",
  3173. "source": "https://github.com/doctrine/instantiator/tree/1.5.x"
  3174. },
  3175. "funding": [
  3176. {
  3177. "url": "https://www.doctrine-project.org/sponsorship.html",
  3178. "type": "custom"
  3179. },
  3180. {
  3181. "url": "https://www.patreon.com/phpdoctrine",
  3182. "type": "patreon"
  3183. },
  3184. {
  3185. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  3186. "type": "tidelift"
  3187. }
  3188. ],
  3189. "time": "2023-12-09T14:16:53+00:00"
  3190. },
  3191. {
  3192. "name": "fakerphp/faker",
  3193. "version": "1.24.x-dev",
  3194. "source": {
  3195. "type": "git",
  3196. "url": "https://github.com/FakerPHP/Faker.git",
  3197. "reference": "f7ac50712e417f008402c8fc889c964e75eecfe9"
  3198. },
  3199. "dist": {
  3200. "type": "zip",
  3201. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/f7ac50712e417f008402c8fc889c964e75eecfe9",
  3202. "reference": "f7ac50712e417f008402c8fc889c964e75eecfe9",
  3203. "shasum": "",
  3204. "mirrors": [
  3205. {
  3206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3207. "preferred": true
  3208. }
  3209. ]
  3210. },
  3211. "require": {
  3212. "php": "^7.4 || ^8.0",
  3213. "psr/container": "^1.0 || ^2.0",
  3214. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  3215. },
  3216. "conflict": {
  3217. "fzaninotto/faker": "*"
  3218. },
  3219. "require-dev": {
  3220. "bamarni/composer-bin-plugin": "^1.4.1",
  3221. "doctrine/persistence": "^1.3 || ^2.0",
  3222. "ext-intl": "*",
  3223. "phpunit/phpunit": "^9.5.26",
  3224. "symfony/phpunit-bridge": "^5.4.16"
  3225. },
  3226. "suggest": {
  3227. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  3228. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  3229. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  3230. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  3231. "ext-mbstring": "Required for multibyte Unicode string functionality."
  3232. },
  3233. "type": "library",
  3234. "autoload": {
  3235. "psr-4": {
  3236. "Faker\\": "src/Faker/"
  3237. }
  3238. },
  3239. "notification-url": "https://packagist.org/downloads/",
  3240. "license": [
  3241. "MIT"
  3242. ],
  3243. "authors": [
  3244. {
  3245. "name": "François Zaninotto"
  3246. }
  3247. ],
  3248. "description": "Faker is a PHP library that generates fake data for you.",
  3249. "keywords": [
  3250. "data",
  3251. "faker",
  3252. "fixtures"
  3253. ],
  3254. "support": {
  3255. "issues": "https://github.com/FakerPHP/Faker/issues",
  3256. "source": "https://github.com/FakerPHP/Faker/tree/1.24"
  3257. },
  3258. "time": "2025-02-22T09:07:46+00:00"
  3259. },
  3260. {
  3261. "name": "myclabs/deep-copy",
  3262. "version": "1.x-dev",
  3263. "source": {
  3264. "type": "git",
  3265. "url": "https://github.com/myclabs/DeepCopy.git",
  3266. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  3267. },
  3268. "dist": {
  3269. "type": "zip",
  3270. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  3271. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  3272. "shasum": "",
  3273. "mirrors": [
  3274. {
  3275. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3276. "preferred": true
  3277. }
  3278. ]
  3279. },
  3280. "require": {
  3281. "php": "^7.1 || ^8.0"
  3282. },
  3283. "conflict": {
  3284. "doctrine/collections": "<1.6.8",
  3285. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  3286. },
  3287. "require-dev": {
  3288. "doctrine/collections": "^1.6.8",
  3289. "doctrine/common": "^2.13.3 || ^3.2.2",
  3290. "phpspec/prophecy": "^1.10",
  3291. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  3292. },
  3293. "default-branch": true,
  3294. "type": "library",
  3295. "autoload": {
  3296. "files": [
  3297. "src/DeepCopy/deep_copy.php"
  3298. ],
  3299. "psr-4": {
  3300. "DeepCopy\\": "src/DeepCopy/"
  3301. }
  3302. },
  3303. "notification-url": "https://packagist.org/downloads/",
  3304. "license": [
  3305. "MIT"
  3306. ],
  3307. "description": "Create deep copies (clones) of your objects",
  3308. "keywords": [
  3309. "clone",
  3310. "copy",
  3311. "duplicate",
  3312. "object",
  3313. "object graph"
  3314. ],
  3315. "support": {
  3316. "issues": "https://github.com/myclabs/DeepCopy/issues",
  3317. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  3318. },
  3319. "funding": [
  3320. {
  3321. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  3322. "type": "tidelift"
  3323. }
  3324. ],
  3325. "time": "2025-07-05T12:25:42+00:00"
  3326. },
  3327. {
  3328. "name": "nikic/php-parser",
  3329. "version": "v5.3.1",
  3330. "source": {
  3331. "type": "git",
  3332. "url": "https://github.com/nikic/PHP-Parser.git",
  3333. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  3334. },
  3335. "dist": {
  3336. "type": "zip",
  3337. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  3338. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  3339. "shasum": "",
  3340. "mirrors": [
  3341. {
  3342. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3343. "preferred": true
  3344. }
  3345. ]
  3346. },
  3347. "require": {
  3348. "ext-ctype": "*",
  3349. "ext-json": "*",
  3350. "ext-tokenizer": "*",
  3351. "php": ">=7.4"
  3352. },
  3353. "require-dev": {
  3354. "ircmaxell/php-yacc": "^0.0.7",
  3355. "phpunit/phpunit": "^9.0"
  3356. },
  3357. "bin": [
  3358. "bin/php-parse"
  3359. ],
  3360. "type": "library",
  3361. "extra": {
  3362. "branch-alias": {
  3363. "dev-master": "5.0-dev"
  3364. }
  3365. },
  3366. "autoload": {
  3367. "psr-4": {
  3368. "PhpParser\\": "lib/PhpParser"
  3369. }
  3370. },
  3371. "notification-url": "https://packagist.org/downloads/",
  3372. "license": [
  3373. "BSD-3-Clause"
  3374. ],
  3375. "authors": [
  3376. {
  3377. "name": "Nikita Popov"
  3378. }
  3379. ],
  3380. "description": "A PHP parser written in PHP",
  3381. "keywords": [
  3382. "parser",
  3383. "php"
  3384. ],
  3385. "support": {
  3386. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3387. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  3388. },
  3389. "time": "2024-10-08T18:51:32+00:00"
  3390. },
  3391. {
  3392. "name": "phar-io/manifest",
  3393. "version": "dev-master",
  3394. "source": {
  3395. "type": "git",
  3396. "url": "https://github.com/phar-io/manifest.git",
  3397. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  3398. },
  3399. "dist": {
  3400. "type": "zip",
  3401. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  3402. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  3403. "shasum": "",
  3404. "mirrors": [
  3405. {
  3406. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3407. "preferred": true
  3408. }
  3409. ]
  3410. },
  3411. "require": {
  3412. "ext-dom": "*",
  3413. "ext-libxml": "*",
  3414. "ext-phar": "*",
  3415. "ext-xmlwriter": "*",
  3416. "phar-io/version": "^3.0.1",
  3417. "php": "^7.2 || ^8.0"
  3418. },
  3419. "default-branch": true,
  3420. "type": "library",
  3421. "extra": {
  3422. "branch-alias": {
  3423. "dev-master": "2.0.x-dev"
  3424. }
  3425. },
  3426. "autoload": {
  3427. "classmap": [
  3428. "src/"
  3429. ]
  3430. },
  3431. "notification-url": "https://packagist.org/downloads/",
  3432. "license": [
  3433. "BSD-3-Clause"
  3434. ],
  3435. "authors": [
  3436. {
  3437. "name": "Arne Blankerts",
  3438. "email": "arne@blankerts.de",
  3439. "role": "Developer"
  3440. },
  3441. {
  3442. "name": "Sebastian Heuer",
  3443. "email": "sebastian@phpeople.de",
  3444. "role": "Developer"
  3445. },
  3446. {
  3447. "name": "Sebastian Bergmann",
  3448. "email": "sebastian@phpunit.de",
  3449. "role": "Developer"
  3450. }
  3451. ],
  3452. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  3453. "support": {
  3454. "issues": "https://github.com/phar-io/manifest/issues",
  3455. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  3456. },
  3457. "funding": [
  3458. {
  3459. "url": "https://github.com/theseer",
  3460. "type": "github"
  3461. }
  3462. ],
  3463. "time": "2024-03-03T12:33:53+00:00"
  3464. },
  3465. {
  3466. "name": "phar-io/version",
  3467. "version": "3.2.1",
  3468. "source": {
  3469. "type": "git",
  3470. "url": "https://github.com/phar-io/version.git",
  3471. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  3472. },
  3473. "dist": {
  3474. "type": "zip",
  3475. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  3476. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  3477. "shasum": "",
  3478. "mirrors": [
  3479. {
  3480. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3481. "preferred": true
  3482. }
  3483. ]
  3484. },
  3485. "require": {
  3486. "php": "^7.2 || ^8.0"
  3487. },
  3488. "type": "library",
  3489. "autoload": {
  3490. "classmap": [
  3491. "src/"
  3492. ]
  3493. },
  3494. "notification-url": "https://packagist.org/downloads/",
  3495. "license": [
  3496. "BSD-3-Clause"
  3497. ],
  3498. "authors": [
  3499. {
  3500. "name": "Arne Blankerts",
  3501. "email": "arne@blankerts.de",
  3502. "role": "Developer"
  3503. },
  3504. {
  3505. "name": "Sebastian Heuer",
  3506. "email": "sebastian@phpeople.de",
  3507. "role": "Developer"
  3508. },
  3509. {
  3510. "name": "Sebastian Bergmann",
  3511. "email": "sebastian@phpunit.de",
  3512. "role": "Developer"
  3513. }
  3514. ],
  3515. "description": "Library for handling version information and constraints",
  3516. "support": {
  3517. "issues": "https://github.com/phar-io/version/issues",
  3518. "source": "https://github.com/phar-io/version/tree/3.2.1"
  3519. },
  3520. "time": "2022-02-21T01:04:05+00:00"
  3521. },
  3522. {
  3523. "name": "phpspec/php-diff",
  3524. "version": "v1.1.3",
  3525. "source": {
  3526. "type": "git",
  3527. "url": "https://github.com/phpspec/php-diff.git",
  3528. "reference": "fc1156187f9f6c8395886fe85ed88a0a245d72e9"
  3529. },
  3530. "dist": {
  3531. "type": "zip",
  3532. "url": "https://api.github.com/repos/phpspec/php-diff/zipball/fc1156187f9f6c8395886fe85ed88a0a245d72e9",
  3533. "reference": "fc1156187f9f6c8395886fe85ed88a0a245d72e9",
  3534. "shasum": "",
  3535. "mirrors": [
  3536. {
  3537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3538. "preferred": true
  3539. }
  3540. ]
  3541. },
  3542. "type": "library",
  3543. "extra": {
  3544. "branch-alias": {
  3545. "dev-master": "1.0.x-dev"
  3546. }
  3547. },
  3548. "autoload": {
  3549. "psr-0": {
  3550. "Diff": "lib/"
  3551. }
  3552. },
  3553. "notification-url": "https://packagist.org/downloads/",
  3554. "license": [
  3555. "BSD-3-Clause"
  3556. ],
  3557. "authors": [
  3558. {
  3559. "name": "Chris Boulton",
  3560. "homepage": "http://github.com/chrisboulton"
  3561. }
  3562. ],
  3563. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
  3564. "support": {
  3565. "source": "https://github.com/phpspec/php-diff/tree/v1.1.3"
  3566. },
  3567. "time": "2020-09-18T13:47:07+00:00"
  3568. },
  3569. {
  3570. "name": "phpunit/php-code-coverage",
  3571. "version": "9.2.x-dev",
  3572. "source": {
  3573. "type": "git",
  3574. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3575. "reference": "0448d60087a382392a1b2a1abe434466e03dcc87"
  3576. },
  3577. "dist": {
  3578. "type": "zip",
  3579. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/0448d60087a382392a1b2a1abe434466e03dcc87",
  3580. "reference": "0448d60087a382392a1b2a1abe434466e03dcc87",
  3581. "shasum": "",
  3582. "mirrors": [
  3583. {
  3584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3585. "preferred": true
  3586. }
  3587. ]
  3588. },
  3589. "require": {
  3590. "ext-dom": "*",
  3591. "ext-libxml": "*",
  3592. "ext-xmlwriter": "*",
  3593. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  3594. "php": ">=7.3",
  3595. "phpunit/php-file-iterator": "^3.0.6",
  3596. "phpunit/php-text-template": "^2.0.4",
  3597. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  3598. "sebastian/complexity": "^2.0.3",
  3599. "sebastian/environment": "^5.1.5",
  3600. "sebastian/lines-of-code": "^1.0.4",
  3601. "sebastian/version": "^3.0.2",
  3602. "theseer/tokenizer": "^1.2.3"
  3603. },
  3604. "require-dev": {
  3605. "phpunit/phpunit": "^9.6"
  3606. },
  3607. "suggest": {
  3608. "ext-pcov": "PHP extension that provides line coverage",
  3609. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  3610. },
  3611. "type": "library",
  3612. "extra": {
  3613. "branch-alias": {
  3614. "dev-main": "9.2.x-dev"
  3615. }
  3616. },
  3617. "autoload": {
  3618. "classmap": [
  3619. "src/"
  3620. ]
  3621. },
  3622. "notification-url": "https://packagist.org/downloads/",
  3623. "license": [
  3624. "BSD-3-Clause"
  3625. ],
  3626. "authors": [
  3627. {
  3628. "name": "Sebastian Bergmann",
  3629. "email": "sebastian@phpunit.de",
  3630. "role": "lead"
  3631. }
  3632. ],
  3633. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3634. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3635. "keywords": [
  3636. "coverage",
  3637. "testing",
  3638. "xunit"
  3639. ],
  3640. "support": {
  3641. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  3642. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  3643. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2"
  3644. },
  3645. "funding": [
  3646. {
  3647. "url": "https://github.com/sebastianbergmann",
  3648. "type": "github"
  3649. }
  3650. ],
  3651. "time": "2024-10-31T05:58:25+00:00"
  3652. },
  3653. {
  3654. "name": "phpunit/php-file-iterator",
  3655. "version": "3.0.x-dev",
  3656. "source": {
  3657. "type": "git",
  3658. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3659. "reference": "38b24367e1b340aa78b96d7cab042942d917bb84"
  3660. },
  3661. "dist": {
  3662. "type": "zip",
  3663. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/38b24367e1b340aa78b96d7cab042942d917bb84",
  3664. "reference": "38b24367e1b340aa78b96d7cab042942d917bb84",
  3665. "shasum": "",
  3666. "mirrors": [
  3667. {
  3668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3669. "preferred": true
  3670. }
  3671. ]
  3672. },
  3673. "require": {
  3674. "php": ">=7.3"
  3675. },
  3676. "require-dev": {
  3677. "phpunit/phpunit": "^9.3"
  3678. },
  3679. "type": "library",
  3680. "extra": {
  3681. "branch-alias": {
  3682. "dev-master": "3.0-dev"
  3683. }
  3684. },
  3685. "autoload": {
  3686. "classmap": [
  3687. "src/"
  3688. ]
  3689. },
  3690. "notification-url": "https://packagist.org/downloads/",
  3691. "license": [
  3692. "BSD-3-Clause"
  3693. ],
  3694. "authors": [
  3695. {
  3696. "name": "Sebastian Bergmann",
  3697. "email": "sebastian@phpunit.de",
  3698. "role": "lead"
  3699. }
  3700. ],
  3701. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3702. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3703. "keywords": [
  3704. "filesystem",
  3705. "iterator"
  3706. ],
  3707. "support": {
  3708. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  3709. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0"
  3710. },
  3711. "funding": [
  3712. {
  3713. "url": "https://github.com/sebastianbergmann",
  3714. "type": "github"
  3715. }
  3716. ],
  3717. "time": "2022-02-11T16:23:04+00:00"
  3718. },
  3719. {
  3720. "name": "phpunit/php-invoker",
  3721. "version": "3.1.1",
  3722. "source": {
  3723. "type": "git",
  3724. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  3725. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  3726. },
  3727. "dist": {
  3728. "type": "zip",
  3729. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  3730. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  3731. "shasum": "",
  3732. "mirrors": [
  3733. {
  3734. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3735. "preferred": true
  3736. }
  3737. ]
  3738. },
  3739. "require": {
  3740. "php": ">=7.3"
  3741. },
  3742. "require-dev": {
  3743. "ext-pcntl": "*",
  3744. "phpunit/phpunit": "^9.3"
  3745. },
  3746. "suggest": {
  3747. "ext-pcntl": "*"
  3748. },
  3749. "type": "library",
  3750. "extra": {
  3751. "branch-alias": {
  3752. "dev-master": "3.1-dev"
  3753. }
  3754. },
  3755. "autoload": {
  3756. "classmap": [
  3757. "src/"
  3758. ]
  3759. },
  3760. "notification-url": "https://packagist.org/downloads/",
  3761. "license": [
  3762. "BSD-3-Clause"
  3763. ],
  3764. "authors": [
  3765. {
  3766. "name": "Sebastian Bergmann",
  3767. "email": "sebastian@phpunit.de",
  3768. "role": "lead"
  3769. }
  3770. ],
  3771. "description": "Invoke callables with a timeout",
  3772. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  3773. "keywords": [
  3774. "process"
  3775. ],
  3776. "support": {
  3777. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  3778. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  3779. },
  3780. "funding": [
  3781. {
  3782. "url": "https://github.com/sebastianbergmann",
  3783. "type": "github"
  3784. }
  3785. ],
  3786. "time": "2020-09-28T05:58:55+00:00"
  3787. },
  3788. {
  3789. "name": "phpunit/php-text-template",
  3790. "version": "2.0.4",
  3791. "source": {
  3792. "type": "git",
  3793. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3794. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  3795. },
  3796. "dist": {
  3797. "type": "zip",
  3798. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  3799. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  3800. "shasum": "",
  3801. "mirrors": [
  3802. {
  3803. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3804. "preferred": true
  3805. }
  3806. ]
  3807. },
  3808. "require": {
  3809. "php": ">=7.3"
  3810. },
  3811. "require-dev": {
  3812. "phpunit/phpunit": "^9.3"
  3813. },
  3814. "type": "library",
  3815. "extra": {
  3816. "branch-alias": {
  3817. "dev-master": "2.0-dev"
  3818. }
  3819. },
  3820. "autoload": {
  3821. "classmap": [
  3822. "src/"
  3823. ]
  3824. },
  3825. "notification-url": "https://packagist.org/downloads/",
  3826. "license": [
  3827. "BSD-3-Clause"
  3828. ],
  3829. "authors": [
  3830. {
  3831. "name": "Sebastian Bergmann",
  3832. "email": "sebastian@phpunit.de",
  3833. "role": "lead"
  3834. }
  3835. ],
  3836. "description": "Simple template engine.",
  3837. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3838. "keywords": [
  3839. "template"
  3840. ],
  3841. "support": {
  3842. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  3843. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  3844. },
  3845. "funding": [
  3846. {
  3847. "url": "https://github.com/sebastianbergmann",
  3848. "type": "github"
  3849. }
  3850. ],
  3851. "time": "2020-10-26T05:33:50+00:00"
  3852. },
  3853. {
  3854. "name": "phpunit/php-timer",
  3855. "version": "5.0.3",
  3856. "source": {
  3857. "type": "git",
  3858. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3859. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  3860. },
  3861. "dist": {
  3862. "type": "zip",
  3863. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  3864. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  3865. "shasum": "",
  3866. "mirrors": [
  3867. {
  3868. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3869. "preferred": true
  3870. }
  3871. ]
  3872. },
  3873. "require": {
  3874. "php": ">=7.3"
  3875. },
  3876. "require-dev": {
  3877. "phpunit/phpunit": "^9.3"
  3878. },
  3879. "type": "library",
  3880. "extra": {
  3881. "branch-alias": {
  3882. "dev-master": "5.0-dev"
  3883. }
  3884. },
  3885. "autoload": {
  3886. "classmap": [
  3887. "src/"
  3888. ]
  3889. },
  3890. "notification-url": "https://packagist.org/downloads/",
  3891. "license": [
  3892. "BSD-3-Clause"
  3893. ],
  3894. "authors": [
  3895. {
  3896. "name": "Sebastian Bergmann",
  3897. "email": "sebastian@phpunit.de",
  3898. "role": "lead"
  3899. }
  3900. ],
  3901. "description": "Utility class for timing",
  3902. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3903. "keywords": [
  3904. "timer"
  3905. ],
  3906. "support": {
  3907. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  3908. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  3909. },
  3910. "funding": [
  3911. {
  3912. "url": "https://github.com/sebastianbergmann",
  3913. "type": "github"
  3914. }
  3915. ],
  3916. "time": "2020-10-26T13:16:10+00:00"
  3917. },
  3918. {
  3919. "name": "phpunit/phpunit",
  3920. "version": "9.6.x-dev",
  3921. "source": {
  3922. "type": "git",
  3923. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3924. "reference": "c8cff11a3dd089c0bc91889cd58955cc75e1bb2b"
  3925. },
  3926. "dist": {
  3927. "type": "zip",
  3928. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c8cff11a3dd089c0bc91889cd58955cc75e1bb2b",
  3929. "reference": "c8cff11a3dd089c0bc91889cd58955cc75e1bb2b",
  3930. "shasum": "",
  3931. "mirrors": [
  3932. {
  3933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3934. "preferred": true
  3935. }
  3936. ]
  3937. },
  3938. "require": {
  3939. "doctrine/instantiator": "^1.5.0 || ^2",
  3940. "ext-dom": "*",
  3941. "ext-json": "*",
  3942. "ext-libxml": "*",
  3943. "ext-mbstring": "*",
  3944. "ext-xml": "*",
  3945. "ext-xmlwriter": "*",
  3946. "myclabs/deep-copy": "^1.13.3",
  3947. "phar-io/manifest": "^2.0.4",
  3948. "phar-io/version": "^3.2.1",
  3949. "php": ">=7.3",
  3950. "phpunit/php-code-coverage": "^9.2.32",
  3951. "phpunit/php-file-iterator": "^3.0.6",
  3952. "phpunit/php-invoker": "^3.1.1",
  3953. "phpunit/php-text-template": "^2.0.4",
  3954. "phpunit/php-timer": "^5.0.3",
  3955. "sebastian/cli-parser": "^1.0.2",
  3956. "sebastian/code-unit": "^1.0.8",
  3957. "sebastian/comparator": "^4.0.8",
  3958. "sebastian/diff": "^4.0.6",
  3959. "sebastian/environment": "^5.1.5",
  3960. "sebastian/exporter": "^4.0.6",
  3961. "sebastian/global-state": "^5.0.7",
  3962. "sebastian/object-enumerator": "^4.0.4",
  3963. "sebastian/resource-operations": "^3.0.4",
  3964. "sebastian/type": "^3.2.1",
  3965. "sebastian/version": "^3.0.2"
  3966. },
  3967. "suggest": {
  3968. "ext-soap": "To be able to generate mocks based on WSDL files",
  3969. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  3970. },
  3971. "bin": [
  3972. "phpunit"
  3973. ],
  3974. "type": "library",
  3975. "extra": {
  3976. "branch-alias": {
  3977. "dev-master": "9.6-dev"
  3978. }
  3979. },
  3980. "autoload": {
  3981. "files": [
  3982. "src/Framework/Assert/Functions.php"
  3983. ],
  3984. "classmap": [
  3985. "src/"
  3986. ]
  3987. },
  3988. "notification-url": "https://packagist.org/downloads/",
  3989. "license": [
  3990. "BSD-3-Clause"
  3991. ],
  3992. "authors": [
  3993. {
  3994. "name": "Sebastian Bergmann",
  3995. "email": "sebastian@phpunit.de",
  3996. "role": "lead"
  3997. }
  3998. ],
  3999. "description": "The PHP Unit Testing framework.",
  4000. "homepage": "https://phpunit.de/",
  4001. "keywords": [
  4002. "phpunit",
  4003. "testing",
  4004. "xunit"
  4005. ],
  4006. "support": {
  4007. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  4008. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  4009. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6"
  4010. },
  4011. "funding": [
  4012. {
  4013. "url": "https://phpunit.de/sponsors.html",
  4014. "type": "custom"
  4015. },
  4016. {
  4017. "url": "https://github.com/sebastianbergmann",
  4018. "type": "github"
  4019. },
  4020. {
  4021. "url": "https://liberapay.com/sebastianbergmann",
  4022. "type": "liberapay"
  4023. },
  4024. {
  4025. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  4026. "type": "thanks_dev"
  4027. },
  4028. {
  4029. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  4030. "type": "tidelift"
  4031. }
  4032. ],
  4033. "time": "2025-07-09T17:39:00+00:00"
  4034. },
  4035. {
  4036. "name": "psr/container",
  4037. "version": "dev-master",
  4038. "source": {
  4039. "type": "git",
  4040. "url": "https://github.com/php-fig/container.git",
  4041. "reference": "707984727bd5b2b670e59559d3ed2500240cf875"
  4042. },
  4043. "dist": {
  4044. "type": "zip",
  4045. "url": "https://api.github.com/repos/php-fig/container/zipball/707984727bd5b2b670e59559d3ed2500240cf875",
  4046. "reference": "707984727bd5b2b670e59559d3ed2500240cf875",
  4047. "shasum": "",
  4048. "mirrors": [
  4049. {
  4050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4051. "preferred": true
  4052. }
  4053. ]
  4054. },
  4055. "require": {
  4056. "php": ">=7.4.0"
  4057. },
  4058. "default-branch": true,
  4059. "type": "library",
  4060. "extra": {
  4061. "branch-alias": {
  4062. "dev-master": "2.0.x-dev"
  4063. }
  4064. },
  4065. "autoload": {
  4066. "psr-4": {
  4067. "Psr\\Container\\": "src/"
  4068. }
  4069. },
  4070. "notification-url": "https://packagist.org/downloads/",
  4071. "license": [
  4072. "MIT"
  4073. ],
  4074. "authors": [
  4075. {
  4076. "name": "PHP-FIG",
  4077. "homepage": "https://www.php-fig.org/"
  4078. }
  4079. ],
  4080. "description": "Common Container Interface (PHP FIG PSR-11)",
  4081. "homepage": "https://github.com/php-fig/container",
  4082. "keywords": [
  4083. "PSR-11",
  4084. "container",
  4085. "container-interface",
  4086. "container-interop",
  4087. "psr"
  4088. ],
  4089. "support": {
  4090. "issues": "https://github.com/php-fig/container/issues",
  4091. "source": "https://github.com/php-fig/container"
  4092. },
  4093. "time": "2023-09-22T11:11:30+00:00"
  4094. },
  4095. {
  4096. "name": "sebastian/cli-parser",
  4097. "version": "1.0.x-dev",
  4098. "source": {
  4099. "type": "git",
  4100. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  4101. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  4102. },
  4103. "dist": {
  4104. "type": "zip",
  4105. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  4106. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  4107. "shasum": "",
  4108. "mirrors": [
  4109. {
  4110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4111. "preferred": true
  4112. }
  4113. ]
  4114. },
  4115. "require": {
  4116. "php": ">=7.3"
  4117. },
  4118. "require-dev": {
  4119. "phpunit/phpunit": "^9.3"
  4120. },
  4121. "type": "library",
  4122. "extra": {
  4123. "branch-alias": {
  4124. "dev-master": "1.0-dev"
  4125. }
  4126. },
  4127. "autoload": {
  4128. "classmap": [
  4129. "src/"
  4130. ]
  4131. },
  4132. "notification-url": "https://packagist.org/downloads/",
  4133. "license": [
  4134. "BSD-3-Clause"
  4135. ],
  4136. "authors": [
  4137. {
  4138. "name": "Sebastian Bergmann",
  4139. "email": "sebastian@phpunit.de",
  4140. "role": "lead"
  4141. }
  4142. ],
  4143. "description": "Library for parsing CLI options",
  4144. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  4145. "support": {
  4146. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  4147. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  4148. },
  4149. "funding": [
  4150. {
  4151. "url": "https://github.com/sebastianbergmann",
  4152. "type": "github"
  4153. }
  4154. ],
  4155. "time": "2024-03-02T06:27:43+00:00"
  4156. },
  4157. {
  4158. "name": "sebastian/code-unit",
  4159. "version": "1.0.8",
  4160. "source": {
  4161. "type": "git",
  4162. "url": "https://github.com/sebastianbergmann/code-unit.git",
  4163. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  4164. },
  4165. "dist": {
  4166. "type": "zip",
  4167. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  4168. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  4169. "shasum": "",
  4170. "mirrors": [
  4171. {
  4172. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4173. "preferred": true
  4174. }
  4175. ]
  4176. },
  4177. "require": {
  4178. "php": ">=7.3"
  4179. },
  4180. "require-dev": {
  4181. "phpunit/phpunit": "^9.3"
  4182. },
  4183. "type": "library",
  4184. "extra": {
  4185. "branch-alias": {
  4186. "dev-master": "1.0-dev"
  4187. }
  4188. },
  4189. "autoload": {
  4190. "classmap": [
  4191. "src/"
  4192. ]
  4193. },
  4194. "notification-url": "https://packagist.org/downloads/",
  4195. "license": [
  4196. "BSD-3-Clause"
  4197. ],
  4198. "authors": [
  4199. {
  4200. "name": "Sebastian Bergmann",
  4201. "email": "sebastian@phpunit.de",
  4202. "role": "lead"
  4203. }
  4204. ],
  4205. "description": "Collection of value objects that represent the PHP code units",
  4206. "homepage": "https://github.com/sebastianbergmann/code-unit",
  4207. "support": {
  4208. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  4209. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  4210. },
  4211. "funding": [
  4212. {
  4213. "url": "https://github.com/sebastianbergmann",
  4214. "type": "github"
  4215. }
  4216. ],
  4217. "time": "2020-10-26T13:08:54+00:00"
  4218. },
  4219. {
  4220. "name": "sebastian/code-unit-reverse-lookup",
  4221. "version": "2.0.3",
  4222. "source": {
  4223. "type": "git",
  4224. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4225. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  4226. },
  4227. "dist": {
  4228. "type": "zip",
  4229. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  4230. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  4231. "shasum": "",
  4232. "mirrors": [
  4233. {
  4234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4235. "preferred": true
  4236. }
  4237. ]
  4238. },
  4239. "require": {
  4240. "php": ">=7.3"
  4241. },
  4242. "require-dev": {
  4243. "phpunit/phpunit": "^9.3"
  4244. },
  4245. "type": "library",
  4246. "extra": {
  4247. "branch-alias": {
  4248. "dev-master": "2.0-dev"
  4249. }
  4250. },
  4251. "autoload": {
  4252. "classmap": [
  4253. "src/"
  4254. ]
  4255. },
  4256. "notification-url": "https://packagist.org/downloads/",
  4257. "license": [
  4258. "BSD-3-Clause"
  4259. ],
  4260. "authors": [
  4261. {
  4262. "name": "Sebastian Bergmann",
  4263. "email": "sebastian@phpunit.de"
  4264. }
  4265. ],
  4266. "description": "Looks up which function or method a line of code belongs to",
  4267. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4268. "support": {
  4269. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  4270. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  4271. },
  4272. "funding": [
  4273. {
  4274. "url": "https://github.com/sebastianbergmann",
  4275. "type": "github"
  4276. }
  4277. ],
  4278. "time": "2020-09-28T05:30:19+00:00"
  4279. },
  4280. {
  4281. "name": "sebastian/comparator",
  4282. "version": "4.0.x-dev",
  4283. "source": {
  4284. "type": "git",
  4285. "url": "https://github.com/sebastianbergmann/comparator.git",
  4286. "reference": "b247957a1c8dc81a671770f74b479c0a78a818f1"
  4287. },
  4288. "dist": {
  4289. "type": "zip",
  4290. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/b247957a1c8dc81a671770f74b479c0a78a818f1",
  4291. "reference": "b247957a1c8dc81a671770f74b479c0a78a818f1",
  4292. "shasum": "",
  4293. "mirrors": [
  4294. {
  4295. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4296. "preferred": true
  4297. }
  4298. ]
  4299. },
  4300. "require": {
  4301. "php": ">=7.3",
  4302. "sebastian/diff": "^4.0",
  4303. "sebastian/exporter": "^4.0"
  4304. },
  4305. "require-dev": {
  4306. "phpunit/phpunit": "^9.3"
  4307. },
  4308. "type": "library",
  4309. "extra": {
  4310. "branch-alias": {
  4311. "dev-master": "4.0-dev"
  4312. }
  4313. },
  4314. "autoload": {
  4315. "classmap": [
  4316. "src/"
  4317. ]
  4318. },
  4319. "notification-url": "https://packagist.org/downloads/",
  4320. "license": [
  4321. "BSD-3-Clause"
  4322. ],
  4323. "authors": [
  4324. {
  4325. "name": "Sebastian Bergmann",
  4326. "email": "sebastian@phpunit.de"
  4327. },
  4328. {
  4329. "name": "Jeff Welch",
  4330. "email": "whatthejeff@gmail.com"
  4331. },
  4332. {
  4333. "name": "Volker Dusch",
  4334. "email": "github@wallbash.com"
  4335. },
  4336. {
  4337. "name": "Bernhard Schussek",
  4338. "email": "bschussek@2bepublished.at"
  4339. }
  4340. ],
  4341. "description": "Provides the functionality to compare PHP values for equality",
  4342. "homepage": "https://github.com/sebastianbergmann/comparator",
  4343. "keywords": [
  4344. "comparator",
  4345. "compare",
  4346. "equality"
  4347. ],
  4348. "support": {
  4349. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  4350. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0"
  4351. },
  4352. "funding": [
  4353. {
  4354. "url": "https://github.com/sebastianbergmann",
  4355. "type": "github"
  4356. }
  4357. ],
  4358. "time": "2022-09-14T12:46:14+00:00"
  4359. },
  4360. {
  4361. "name": "sebastian/complexity",
  4362. "version": "2.0.x-dev",
  4363. "source": {
  4364. "type": "git",
  4365. "url": "https://github.com/sebastianbergmann/complexity.git",
  4366. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  4367. },
  4368. "dist": {
  4369. "type": "zip",
  4370. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  4371. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  4372. "shasum": "",
  4373. "mirrors": [
  4374. {
  4375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4376. "preferred": true
  4377. }
  4378. ]
  4379. },
  4380. "require": {
  4381. "nikic/php-parser": "^4.18 || ^5.0",
  4382. "php": ">=7.3"
  4383. },
  4384. "require-dev": {
  4385. "phpunit/phpunit": "^9.3"
  4386. },
  4387. "type": "library",
  4388. "extra": {
  4389. "branch-alias": {
  4390. "dev-master": "2.0-dev"
  4391. }
  4392. },
  4393. "autoload": {
  4394. "classmap": [
  4395. "src/"
  4396. ]
  4397. },
  4398. "notification-url": "https://packagist.org/downloads/",
  4399. "license": [
  4400. "BSD-3-Clause"
  4401. ],
  4402. "authors": [
  4403. {
  4404. "name": "Sebastian Bergmann",
  4405. "email": "sebastian@phpunit.de",
  4406. "role": "lead"
  4407. }
  4408. ],
  4409. "description": "Library for calculating the complexity of PHP code units",
  4410. "homepage": "https://github.com/sebastianbergmann/complexity",
  4411. "support": {
  4412. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  4413. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  4414. },
  4415. "funding": [
  4416. {
  4417. "url": "https://github.com/sebastianbergmann",
  4418. "type": "github"
  4419. }
  4420. ],
  4421. "time": "2023-12-22T06:19:30+00:00"
  4422. },
  4423. {
  4424. "name": "sebastian/diff",
  4425. "version": "4.0.x-dev",
  4426. "source": {
  4427. "type": "git",
  4428. "url": "https://github.com/sebastianbergmann/diff.git",
  4429. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  4430. },
  4431. "dist": {
  4432. "type": "zip",
  4433. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  4434. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  4435. "shasum": "",
  4436. "mirrors": [
  4437. {
  4438. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4439. "preferred": true
  4440. }
  4441. ]
  4442. },
  4443. "require": {
  4444. "php": ">=7.3"
  4445. },
  4446. "require-dev": {
  4447. "phpunit/phpunit": "^9.3",
  4448. "symfony/process": "^4.2 || ^5"
  4449. },
  4450. "type": "library",
  4451. "extra": {
  4452. "branch-alias": {
  4453. "dev-master": "4.0-dev"
  4454. }
  4455. },
  4456. "autoload": {
  4457. "classmap": [
  4458. "src/"
  4459. ]
  4460. },
  4461. "notification-url": "https://packagist.org/downloads/",
  4462. "license": [
  4463. "BSD-3-Clause"
  4464. ],
  4465. "authors": [
  4466. {
  4467. "name": "Sebastian Bergmann",
  4468. "email": "sebastian@phpunit.de"
  4469. },
  4470. {
  4471. "name": "Kore Nordmann",
  4472. "email": "mail@kore-nordmann.de"
  4473. }
  4474. ],
  4475. "description": "Diff implementation",
  4476. "homepage": "https://github.com/sebastianbergmann/diff",
  4477. "keywords": [
  4478. "diff",
  4479. "udiff",
  4480. "unidiff",
  4481. "unified diff"
  4482. ],
  4483. "support": {
  4484. "issues": "https://github.com/sebastianbergmann/diff/issues",
  4485. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  4486. },
  4487. "funding": [
  4488. {
  4489. "url": "https://github.com/sebastianbergmann",
  4490. "type": "github"
  4491. }
  4492. ],
  4493. "time": "2024-03-02T06:30:58+00:00"
  4494. },
  4495. {
  4496. "name": "sebastian/environment",
  4497. "version": "5.1.x-dev",
  4498. "source": {
  4499. "type": "git",
  4500. "url": "https://github.com/sebastianbergmann/environment.git",
  4501. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  4502. },
  4503. "dist": {
  4504. "type": "zip",
  4505. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  4506. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  4507. "shasum": "",
  4508. "mirrors": [
  4509. {
  4510. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4511. "preferred": true
  4512. }
  4513. ]
  4514. },
  4515. "require": {
  4516. "php": ">=7.3"
  4517. },
  4518. "require-dev": {
  4519. "phpunit/phpunit": "^9.3"
  4520. },
  4521. "suggest": {
  4522. "ext-posix": "*"
  4523. },
  4524. "type": "library",
  4525. "extra": {
  4526. "branch-alias": {
  4527. "dev-master": "5.1-dev"
  4528. }
  4529. },
  4530. "autoload": {
  4531. "classmap": [
  4532. "src/"
  4533. ]
  4534. },
  4535. "notification-url": "https://packagist.org/downloads/",
  4536. "license": [
  4537. "BSD-3-Clause"
  4538. ],
  4539. "authors": [
  4540. {
  4541. "name": "Sebastian Bergmann",
  4542. "email": "sebastian@phpunit.de"
  4543. }
  4544. ],
  4545. "description": "Provides functionality to handle HHVM/PHP environments",
  4546. "homepage": "http://www.github.com/sebastianbergmann/environment",
  4547. "keywords": [
  4548. "Xdebug",
  4549. "environment",
  4550. "hhvm"
  4551. ],
  4552. "support": {
  4553. "issues": "https://github.com/sebastianbergmann/environment/issues",
  4554. "source": "https://github.com/sebastianbergmann/environment/tree/5.1"
  4555. },
  4556. "funding": [
  4557. {
  4558. "url": "https://github.com/sebastianbergmann",
  4559. "type": "github"
  4560. }
  4561. ],
  4562. "time": "2023-02-03T06:03:51+00:00"
  4563. },
  4564. {
  4565. "name": "sebastian/exporter",
  4566. "version": "4.0.x-dev",
  4567. "source": {
  4568. "type": "git",
  4569. "url": "https://github.com/sebastianbergmann/exporter.git",
  4570. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  4571. },
  4572. "dist": {
  4573. "type": "zip",
  4574. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  4575. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  4576. "shasum": "",
  4577. "mirrors": [
  4578. {
  4579. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4580. "preferred": true
  4581. }
  4582. ]
  4583. },
  4584. "require": {
  4585. "php": ">=7.3",
  4586. "sebastian/recursion-context": "^4.0"
  4587. },
  4588. "require-dev": {
  4589. "ext-mbstring": "*",
  4590. "phpunit/phpunit": "^9.3"
  4591. },
  4592. "type": "library",
  4593. "extra": {
  4594. "branch-alias": {
  4595. "dev-master": "4.0-dev"
  4596. }
  4597. },
  4598. "autoload": {
  4599. "classmap": [
  4600. "src/"
  4601. ]
  4602. },
  4603. "notification-url": "https://packagist.org/downloads/",
  4604. "license": [
  4605. "BSD-3-Clause"
  4606. ],
  4607. "authors": [
  4608. {
  4609. "name": "Sebastian Bergmann",
  4610. "email": "sebastian@phpunit.de"
  4611. },
  4612. {
  4613. "name": "Jeff Welch",
  4614. "email": "whatthejeff@gmail.com"
  4615. },
  4616. {
  4617. "name": "Volker Dusch",
  4618. "email": "github@wallbash.com"
  4619. },
  4620. {
  4621. "name": "Adam Harvey",
  4622. "email": "aharvey@php.net"
  4623. },
  4624. {
  4625. "name": "Bernhard Schussek",
  4626. "email": "bschussek@gmail.com"
  4627. }
  4628. ],
  4629. "description": "Provides the functionality to export PHP variables for visualization",
  4630. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  4631. "keywords": [
  4632. "export",
  4633. "exporter"
  4634. ],
  4635. "support": {
  4636. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  4637. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  4638. },
  4639. "funding": [
  4640. {
  4641. "url": "https://github.com/sebastianbergmann",
  4642. "type": "github"
  4643. }
  4644. ],
  4645. "time": "2024-03-02T06:33:00+00:00"
  4646. },
  4647. {
  4648. "name": "sebastian/global-state",
  4649. "version": "5.0.x-dev",
  4650. "source": {
  4651. "type": "git",
  4652. "url": "https://github.com/sebastianbergmann/global-state.git",
  4653. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  4654. },
  4655. "dist": {
  4656. "type": "zip",
  4657. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  4658. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  4659. "shasum": "",
  4660. "mirrors": [
  4661. {
  4662. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4663. "preferred": true
  4664. }
  4665. ]
  4666. },
  4667. "require": {
  4668. "php": ">=7.3",
  4669. "sebastian/object-reflector": "^2.0",
  4670. "sebastian/recursion-context": "^4.0"
  4671. },
  4672. "require-dev": {
  4673. "ext-dom": "*",
  4674. "phpunit/phpunit": "^9.3"
  4675. },
  4676. "suggest": {
  4677. "ext-uopz": "*"
  4678. },
  4679. "type": "library",
  4680. "extra": {
  4681. "branch-alias": {
  4682. "dev-master": "5.0-dev"
  4683. }
  4684. },
  4685. "autoload": {
  4686. "classmap": [
  4687. "src/"
  4688. ]
  4689. },
  4690. "notification-url": "https://packagist.org/downloads/",
  4691. "license": [
  4692. "BSD-3-Clause"
  4693. ],
  4694. "authors": [
  4695. {
  4696. "name": "Sebastian Bergmann",
  4697. "email": "sebastian@phpunit.de"
  4698. }
  4699. ],
  4700. "description": "Snapshotting of global state",
  4701. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  4702. "keywords": [
  4703. "global state"
  4704. ],
  4705. "support": {
  4706. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  4707. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  4708. },
  4709. "funding": [
  4710. {
  4711. "url": "https://github.com/sebastianbergmann",
  4712. "type": "github"
  4713. }
  4714. ],
  4715. "time": "2024-03-02T06:35:11+00:00"
  4716. },
  4717. {
  4718. "name": "sebastian/lines-of-code",
  4719. "version": "1.0.x-dev",
  4720. "source": {
  4721. "type": "git",
  4722. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  4723. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  4724. },
  4725. "dist": {
  4726. "type": "zip",
  4727. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  4728. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  4729. "shasum": "",
  4730. "mirrors": [
  4731. {
  4732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4733. "preferred": true
  4734. }
  4735. ]
  4736. },
  4737. "require": {
  4738. "nikic/php-parser": "^4.18 || ^5.0",
  4739. "php": ">=7.3"
  4740. },
  4741. "require-dev": {
  4742. "phpunit/phpunit": "^9.3"
  4743. },
  4744. "type": "library",
  4745. "extra": {
  4746. "branch-alias": {
  4747. "dev-master": "1.0-dev"
  4748. }
  4749. },
  4750. "autoload": {
  4751. "classmap": [
  4752. "src/"
  4753. ]
  4754. },
  4755. "notification-url": "https://packagist.org/downloads/",
  4756. "license": [
  4757. "BSD-3-Clause"
  4758. ],
  4759. "authors": [
  4760. {
  4761. "name": "Sebastian Bergmann",
  4762. "email": "sebastian@phpunit.de",
  4763. "role": "lead"
  4764. }
  4765. ],
  4766. "description": "Library for counting the lines of code in PHP source code",
  4767. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  4768. "support": {
  4769. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  4770. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  4771. },
  4772. "funding": [
  4773. {
  4774. "url": "https://github.com/sebastianbergmann",
  4775. "type": "github"
  4776. }
  4777. ],
  4778. "time": "2023-12-22T06:20:34+00:00"
  4779. },
  4780. {
  4781. "name": "sebastian/object-enumerator",
  4782. "version": "4.0.4",
  4783. "source": {
  4784. "type": "git",
  4785. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  4786. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  4787. },
  4788. "dist": {
  4789. "type": "zip",
  4790. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  4791. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  4792. "shasum": "",
  4793. "mirrors": [
  4794. {
  4795. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4796. "preferred": true
  4797. }
  4798. ]
  4799. },
  4800. "require": {
  4801. "php": ">=7.3",
  4802. "sebastian/object-reflector": "^2.0",
  4803. "sebastian/recursion-context": "^4.0"
  4804. },
  4805. "require-dev": {
  4806. "phpunit/phpunit": "^9.3"
  4807. },
  4808. "type": "library",
  4809. "extra": {
  4810. "branch-alias": {
  4811. "dev-master": "4.0-dev"
  4812. }
  4813. },
  4814. "autoload": {
  4815. "classmap": [
  4816. "src/"
  4817. ]
  4818. },
  4819. "notification-url": "https://packagist.org/downloads/",
  4820. "license": [
  4821. "BSD-3-Clause"
  4822. ],
  4823. "authors": [
  4824. {
  4825. "name": "Sebastian Bergmann",
  4826. "email": "sebastian@phpunit.de"
  4827. }
  4828. ],
  4829. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  4830. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  4831. "support": {
  4832. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  4833. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  4834. },
  4835. "funding": [
  4836. {
  4837. "url": "https://github.com/sebastianbergmann",
  4838. "type": "github"
  4839. }
  4840. ],
  4841. "time": "2020-10-26T13:12:34+00:00"
  4842. },
  4843. {
  4844. "name": "sebastian/object-reflector",
  4845. "version": "2.0.4",
  4846. "source": {
  4847. "type": "git",
  4848. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  4849. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  4850. },
  4851. "dist": {
  4852. "type": "zip",
  4853. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  4854. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  4855. "shasum": "",
  4856. "mirrors": [
  4857. {
  4858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4859. "preferred": true
  4860. }
  4861. ]
  4862. },
  4863. "require": {
  4864. "php": ">=7.3"
  4865. },
  4866. "require-dev": {
  4867. "phpunit/phpunit": "^9.3"
  4868. },
  4869. "type": "library",
  4870. "extra": {
  4871. "branch-alias": {
  4872. "dev-master": "2.0-dev"
  4873. }
  4874. },
  4875. "autoload": {
  4876. "classmap": [
  4877. "src/"
  4878. ]
  4879. },
  4880. "notification-url": "https://packagist.org/downloads/",
  4881. "license": [
  4882. "BSD-3-Clause"
  4883. ],
  4884. "authors": [
  4885. {
  4886. "name": "Sebastian Bergmann",
  4887. "email": "sebastian@phpunit.de"
  4888. }
  4889. ],
  4890. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  4891. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  4892. "support": {
  4893. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  4894. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  4895. },
  4896. "funding": [
  4897. {
  4898. "url": "https://github.com/sebastianbergmann",
  4899. "type": "github"
  4900. }
  4901. ],
  4902. "time": "2020-10-26T13:14:26+00:00"
  4903. },
  4904. {
  4905. "name": "sebastian/recursion-context",
  4906. "version": "4.0.x-dev",
  4907. "source": {
  4908. "type": "git",
  4909. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  4910. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  4911. },
  4912. "dist": {
  4913. "type": "zip",
  4914. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  4915. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  4916. "shasum": "",
  4917. "mirrors": [
  4918. {
  4919. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4920. "preferred": true
  4921. }
  4922. ]
  4923. },
  4924. "require": {
  4925. "php": ">=7.3"
  4926. },
  4927. "require-dev": {
  4928. "phpunit/phpunit": "^9.3"
  4929. },
  4930. "type": "library",
  4931. "extra": {
  4932. "branch-alias": {
  4933. "dev-master": "4.0-dev"
  4934. }
  4935. },
  4936. "autoload": {
  4937. "classmap": [
  4938. "src/"
  4939. ]
  4940. },
  4941. "notification-url": "https://packagist.org/downloads/",
  4942. "license": [
  4943. "BSD-3-Clause"
  4944. ],
  4945. "authors": [
  4946. {
  4947. "name": "Sebastian Bergmann",
  4948. "email": "sebastian@phpunit.de"
  4949. },
  4950. {
  4951. "name": "Jeff Welch",
  4952. "email": "whatthejeff@gmail.com"
  4953. },
  4954. {
  4955. "name": "Adam Harvey",
  4956. "email": "aharvey@php.net"
  4957. }
  4958. ],
  4959. "description": "Provides functionality to recursively process PHP variables",
  4960. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  4961. "support": {
  4962. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  4963. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  4964. },
  4965. "funding": [
  4966. {
  4967. "url": "https://github.com/sebastianbergmann",
  4968. "type": "github"
  4969. }
  4970. ],
  4971. "time": "2023-02-03T06:07:39+00:00"
  4972. },
  4973. {
  4974. "name": "sebastian/resource-operations",
  4975. "version": "dev-main",
  4976. "source": {
  4977. "type": "git",
  4978. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  4979. "reference": "ff553e7482dcee39fa4acc2b175d6ddeb0f7bc25"
  4980. },
  4981. "dist": {
  4982. "type": "zip",
  4983. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ff553e7482dcee39fa4acc2b175d6ddeb0f7bc25",
  4984. "reference": "ff553e7482dcee39fa4acc2b175d6ddeb0f7bc25",
  4985. "shasum": "",
  4986. "mirrors": [
  4987. {
  4988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4989. "preferred": true
  4990. }
  4991. ]
  4992. },
  4993. "require": {
  4994. "php": ">=7.3"
  4995. },
  4996. "require-dev": {
  4997. "phpunit/phpunit": "^9.0"
  4998. },
  4999. "default-branch": true,
  5000. "type": "library",
  5001. "extra": {
  5002. "branch-alias": {
  5003. "dev-main": "3.0-dev"
  5004. }
  5005. },
  5006. "autoload": {
  5007. "classmap": [
  5008. "src/"
  5009. ]
  5010. },
  5011. "notification-url": "https://packagist.org/downloads/",
  5012. "license": [
  5013. "BSD-3-Clause"
  5014. ],
  5015. "authors": [
  5016. {
  5017. "name": "Sebastian Bergmann",
  5018. "email": "sebastian@phpunit.de"
  5019. }
  5020. ],
  5021. "description": "Provides a list of PHP built-in functions that operate on resources",
  5022. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5023. "support": {
  5024. "source": "https://github.com/sebastianbergmann/resource-operations/tree/main"
  5025. },
  5026. "funding": [
  5027. {
  5028. "url": "https://github.com/sebastianbergmann",
  5029. "type": "github"
  5030. }
  5031. ],
  5032. "time": "2024-03-14T18:47:08+00:00"
  5033. },
  5034. {
  5035. "name": "sebastian/type",
  5036. "version": "3.2.x-dev",
  5037. "source": {
  5038. "type": "git",
  5039. "url": "https://github.com/sebastianbergmann/type.git",
  5040. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  5041. },
  5042. "dist": {
  5043. "type": "zip",
  5044. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  5045. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  5046. "shasum": "",
  5047. "mirrors": [
  5048. {
  5049. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5050. "preferred": true
  5051. }
  5052. ]
  5053. },
  5054. "require": {
  5055. "php": ">=7.3"
  5056. },
  5057. "require-dev": {
  5058. "phpunit/phpunit": "^9.5"
  5059. },
  5060. "type": "library",
  5061. "extra": {
  5062. "branch-alias": {
  5063. "dev-master": "3.2-dev"
  5064. }
  5065. },
  5066. "autoload": {
  5067. "classmap": [
  5068. "src/"
  5069. ]
  5070. },
  5071. "notification-url": "https://packagist.org/downloads/",
  5072. "license": [
  5073. "BSD-3-Clause"
  5074. ],
  5075. "authors": [
  5076. {
  5077. "name": "Sebastian Bergmann",
  5078. "email": "sebastian@phpunit.de",
  5079. "role": "lead"
  5080. }
  5081. ],
  5082. "description": "Collection of value objects that represent the types of the PHP type system",
  5083. "homepage": "https://github.com/sebastianbergmann/type",
  5084. "support": {
  5085. "issues": "https://github.com/sebastianbergmann/type/issues",
  5086. "source": "https://github.com/sebastianbergmann/type/tree/3.2"
  5087. },
  5088. "funding": [
  5089. {
  5090. "url": "https://github.com/sebastianbergmann",
  5091. "type": "github"
  5092. }
  5093. ],
  5094. "time": "2023-02-03T06:13:03+00:00"
  5095. },
  5096. {
  5097. "name": "sebastian/version",
  5098. "version": "3.0.x-dev",
  5099. "source": {
  5100. "type": "git",
  5101. "url": "https://github.com/sebastianbergmann/version.git",
  5102. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  5103. },
  5104. "dist": {
  5105. "type": "zip",
  5106. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  5107. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  5108. "shasum": "",
  5109. "mirrors": [
  5110. {
  5111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5112. "preferred": true
  5113. }
  5114. ]
  5115. },
  5116. "require": {
  5117. "php": ">=7.3"
  5118. },
  5119. "type": "library",
  5120. "extra": {
  5121. "branch-alias": {
  5122. "dev-master": "3.0-dev"
  5123. }
  5124. },
  5125. "autoload": {
  5126. "classmap": [
  5127. "src/"
  5128. ]
  5129. },
  5130. "notification-url": "https://packagist.org/downloads/",
  5131. "license": [
  5132. "BSD-3-Clause"
  5133. ],
  5134. "authors": [
  5135. {
  5136. "name": "Sebastian Bergmann",
  5137. "email": "sebastian@phpunit.de",
  5138. "role": "lead"
  5139. }
  5140. ],
  5141. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5142. "homepage": "https://github.com/sebastianbergmann/version",
  5143. "support": {
  5144. "issues": "https://github.com/sebastianbergmann/version/issues",
  5145. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  5146. },
  5147. "funding": [
  5148. {
  5149. "url": "https://github.com/sebastianbergmann",
  5150. "type": "github"
  5151. }
  5152. ],
  5153. "time": "2020-09-28T06:39:44+00:00"
  5154. },
  5155. {
  5156. "name": "squizlabs/php_codesniffer",
  5157. "version": "4.x-dev",
  5158. "source": {
  5159. "type": "git",
  5160. "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
  5161. "reference": "ec395e7becea37b58d45b80fa3d1afad73967816"
  5162. },
  5163. "dist": {
  5164. "type": "zip",
  5165. "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/ec395e7becea37b58d45b80fa3d1afad73967816",
  5166. "reference": "ec395e7becea37b58d45b80fa3d1afad73967816",
  5167. "shasum": "",
  5168. "mirrors": [
  5169. {
  5170. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5171. "preferred": true
  5172. }
  5173. ]
  5174. },
  5175. "require": {
  5176. "ext-simplexml": "*",
  5177. "ext-tokenizer": "*",
  5178. "ext-xmlwriter": "*",
  5179. "php": ">=7.2.0"
  5180. },
  5181. "require-dev": {
  5182. "phpunit/phpunit": "^8.0 || ^9.3.4 || ^10.5.32 || ^11.3.3"
  5183. },
  5184. "bin": [
  5185. "bin/phpcbf",
  5186. "bin/phpcs"
  5187. ],
  5188. "type": "library",
  5189. "extra": {
  5190. "branch-alias": {
  5191. "dev-master": "3.x-dev"
  5192. }
  5193. },
  5194. "notification-url": "https://packagist.org/downloads/",
  5195. "license": [
  5196. "BSD-3-Clause"
  5197. ],
  5198. "authors": [
  5199. {
  5200. "name": "Greg Sherwood",
  5201. "role": "Former lead"
  5202. },
  5203. {
  5204. "name": "Juliette Reinders Folmer",
  5205. "role": "Current lead"
  5206. },
  5207. {
  5208. "name": "Contributors",
  5209. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
  5210. }
  5211. ],
  5212. "description": "PHP_CodeSniffer tokenizes PHP files and detects violations of a defined set of coding standards.",
  5213. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  5214. "keywords": [
  5215. "phpcs",
  5216. "standards",
  5217. "static analysis"
  5218. ],
  5219. "support": {
  5220. "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
  5221. "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
  5222. "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  5223. "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
  5224. },
  5225. "funding": [
  5226. {
  5227. "url": "https://github.com/PHPCSStandards",
  5228. "type": "github"
  5229. },
  5230. {
  5231. "url": "https://github.com/jrfnl",
  5232. "type": "github"
  5233. },
  5234. {
  5235. "url": "https://opencollective.com/php_codesniffer",
  5236. "type": "open_collective"
  5237. },
  5238. {
  5239. "url": "https://thanks.dev/u/gh/phpcsstandards",
  5240. "type": "thanks_dev"
  5241. }
  5242. ],
  5243. "time": "2025-07-28T13:03:24+00:00"
  5244. },
  5245. {
  5246. "name": "symfony/var-dumper",
  5247. "version": "3.4.x-dev",
  5248. "source": {
  5249. "type": "git",
  5250. "url": "https://github.com/symfony/var-dumper.git",
  5251. "reference": "0719f6cf4633a38b2c1585140998579ce23b4b7d"
  5252. },
  5253. "dist": {
  5254. "type": "zip",
  5255. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0719f6cf4633a38b2c1585140998579ce23b4b7d",
  5256. "reference": "0719f6cf4633a38b2c1585140998579ce23b4b7d",
  5257. "shasum": "",
  5258. "mirrors": [
  5259. {
  5260. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5261. "preferred": true
  5262. }
  5263. ]
  5264. },
  5265. "require": {
  5266. "php": "^5.5.9|>=7.0.8",
  5267. "symfony/polyfill-mbstring": "~1.0"
  5268. },
  5269. "conflict": {
  5270. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  5271. },
  5272. "require-dev": {
  5273. "ext-iconv": "*",
  5274. "twig/twig": "~1.34|~2.4"
  5275. },
  5276. "suggest": {
  5277. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5278. "ext-intl": "To show region name in time zone dump",
  5279. "ext-symfony_debug": ""
  5280. },
  5281. "type": "library",
  5282. "autoload": {
  5283. "files": [
  5284. "Resources/functions/dump.php"
  5285. ],
  5286. "psr-4": {
  5287. "Symfony\\Component\\VarDumper\\": ""
  5288. },
  5289. "exclude-from-classmap": [
  5290. "/Tests/"
  5291. ]
  5292. },
  5293. "notification-url": "https://packagist.org/downloads/",
  5294. "license": [
  5295. "MIT"
  5296. ],
  5297. "authors": [
  5298. {
  5299. "name": "Nicolas Grekas",
  5300. "email": "p@tchwork.com"
  5301. },
  5302. {
  5303. "name": "Symfony Community",
  5304. "homepage": "https://symfony.com/contributors"
  5305. }
  5306. ],
  5307. "description": "Symfony mechanism for exploring and dumping PHP variables",
  5308. "homepage": "https://symfony.com",
  5309. "keywords": [
  5310. "debug",
  5311. "dump"
  5312. ],
  5313. "support": {
  5314. "source": "https://github.com/symfony/var-dumper/tree/3.4"
  5315. },
  5316. "funding": [
  5317. {
  5318. "url": "https://symfony.com/sponsor",
  5319. "type": "custom"
  5320. },
  5321. {
  5322. "url": "https://github.com/fabpot",
  5323. "type": "github"
  5324. },
  5325. {
  5326. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5327. "type": "tidelift"
  5328. }
  5329. ],
  5330. "time": "2020-10-24T10:57:07+00:00"
  5331. },
  5332. {
  5333. "name": "theseer/tokenizer",
  5334. "version": "1.2.3",
  5335. "source": {
  5336. "type": "git",
  5337. "url": "https://github.com/theseer/tokenizer.git",
  5338. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  5339. },
  5340. "dist": {
  5341. "type": "zip",
  5342. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  5343. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  5344. "shasum": "",
  5345. "mirrors": [
  5346. {
  5347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5348. "preferred": true
  5349. }
  5350. ]
  5351. },
  5352. "require": {
  5353. "ext-dom": "*",
  5354. "ext-tokenizer": "*",
  5355. "ext-xmlwriter": "*",
  5356. "php": "^7.2 || ^8.0"
  5357. },
  5358. "type": "library",
  5359. "autoload": {
  5360. "classmap": [
  5361. "src/"
  5362. ]
  5363. },
  5364. "notification-url": "https://packagist.org/downloads/",
  5365. "license": [
  5366. "BSD-3-Clause"
  5367. ],
  5368. "authors": [
  5369. {
  5370. "name": "Arne Blankerts",
  5371. "email": "arne@blankerts.de",
  5372. "role": "Developer"
  5373. }
  5374. ],
  5375. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  5376. "support": {
  5377. "issues": "https://github.com/theseer/tokenizer/issues",
  5378. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  5379. },
  5380. "funding": [
  5381. {
  5382. "url": "https://github.com/theseer",
  5383. "type": "github"
  5384. }
  5385. ],
  5386. "time": "2024-03-03T12:36:25+00:00"
  5387. },
  5388. {
  5389. "name": "yiisoft/yii2-codeception",
  5390. "version": "dev-master",
  5391. "source": {
  5392. "type": "git",
  5393. "url": "https://github.com/yiisoft/yii2-codeception.git",
  5394. "reference": "c7d1509498c349179940a8d2b9c6d078e8054b90"
  5395. },
  5396. "dist": {
  5397. "type": "zip",
  5398. "url": "https://api.github.com/repos/yiisoft/yii2-codeception/zipball/c7d1509498c349179940a8d2b9c6d078e8054b90",
  5399. "reference": "c7d1509498c349179940a8d2b9c6d078e8054b90",
  5400. "shasum": "",
  5401. "mirrors": [
  5402. {
  5403. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5404. "preferred": true
  5405. }
  5406. ]
  5407. },
  5408. "require": {
  5409. "yiisoft/yii2": ">=2.0.4"
  5410. },
  5411. "default-branch": true,
  5412. "type": "yii2-extension",
  5413. "extra": {
  5414. "branch-alias": {
  5415. "dev-master": "2.0.x-dev"
  5416. }
  5417. },
  5418. "autoload": {
  5419. "psr-4": {
  5420. "yii\\codeception\\": ""
  5421. }
  5422. },
  5423. "notification-url": "https://packagist.org/downloads/",
  5424. "license": [
  5425. "BSD-3-Clause"
  5426. ],
  5427. "authors": [
  5428. {
  5429. "name": "Mark Jebri",
  5430. "email": "mark.github@yandex.ru"
  5431. }
  5432. ],
  5433. "description": "The Codeception integration for the Yii framework",
  5434. "keywords": [
  5435. "codeception",
  5436. "yii2"
  5437. ],
  5438. "support": {
  5439. "forum": "http://www.yiiframework.com/forum/",
  5440. "irc": "irc://irc.freenode.net/yii",
  5441. "issues": "https://github.com/yiisoft/yii2-codeception/issues",
  5442. "source": "https://github.com/yiisoft/yii2-codeception",
  5443. "wiki": "http://www.yiiframework.com/wiki/"
  5444. },
  5445. "abandoned": "codeception/codeception",
  5446. "time": "2018-04-26T18:21:40+00:00"
  5447. },
  5448. {
  5449. "name": "yiisoft/yii2-coding-standards",
  5450. "version": "3.0.1",
  5451. "source": {
  5452. "type": "git",
  5453. "url": "https://github.com/yiisoft/yii2-coding-standards.git",
  5454. "reference": "842ffdf6c31f46bb6f4b3f3c7dda4f570321ace7"
  5455. },
  5456. "dist": {
  5457. "type": "zip",
  5458. "url": "https://api.github.com/repos/yiisoft/yii2-coding-standards/zipball/842ffdf6c31f46bb6f4b3f3c7dda4f570321ace7",
  5459. "reference": "842ffdf6c31f46bb6f4b3f3c7dda4f570321ace7",
  5460. "shasum": "",
  5461. "mirrors": [
  5462. {
  5463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5464. "preferred": true
  5465. }
  5466. ]
  5467. },
  5468. "require": {
  5469. "php": ">=5.4.0",
  5470. "squizlabs/php_codesniffer": ">=3.2"
  5471. },
  5472. "type": "phpcodesniffer-standard",
  5473. "autoload": {
  5474. "psr-4": {
  5475. "yii\\console\\controllers\\": "src/console/controllers/"
  5476. }
  5477. },
  5478. "notification-url": "https://packagist.org/downloads/",
  5479. "license": [
  5480. "BSD-3-Clause"
  5481. ],
  5482. "authors": [
  5483. {
  5484. "name": "Qiang Xue",
  5485. "email": "qiang.xue@gmail.com",
  5486. "homepage": "https://www.yiiframework.com/",
  5487. "role": "Founder and project lead"
  5488. },
  5489. {
  5490. "name": "Alexander Makarov",
  5491. "email": "sam@rmcreative.ru",
  5492. "homepage": "https://rmcreative.ru/",
  5493. "role": "Core framework development"
  5494. },
  5495. {
  5496. "name": "Maurizio Domba",
  5497. "homepage": "https://mdomba.info/",
  5498. "role": "Core framework development"
  5499. },
  5500. {
  5501. "name": "Carsten Brandt",
  5502. "email": "mail@cebe.cc",
  5503. "homepage": "https://cebe.cc/",
  5504. "role": "Core framework development"
  5505. },
  5506. {
  5507. "name": "Timur Ruziev",
  5508. "email": "resurtm@gmail.com",
  5509. "homepage": "https://resurtm.com/",
  5510. "role": "Core framework development"
  5511. },
  5512. {
  5513. "name": "Paul Klimov",
  5514. "email": "klimov.paul@gmail.com",
  5515. "role": "Core framework development"
  5516. }
  5517. ],
  5518. "description": "Yii PHP Framework Version 2 - Coding standard tools",
  5519. "homepage": "https://www.yiiframework.com/",
  5520. "keywords": [
  5521. "codesniffer",
  5522. "framework",
  5523. "yii"
  5524. ],
  5525. "support": {
  5526. "forum": "https://www.yiiframework.com/forum/",
  5527. "irc": "ircs://irc.libera.chat:6697/yii",
  5528. "issues": "https://github.com/yiisoft/yii2/issues?state=open",
  5529. "source": "https://github.com/yiisoft/yii2",
  5530. "wiki": "https://www.yiiframework.com/wiki/"
  5531. },
  5532. "funding": [
  5533. {
  5534. "url": "https://opencollective.com/yiisoft",
  5535. "type": "open_collective"
  5536. }
  5537. ],
  5538. "time": "2024-06-12T13:50:40+00:00"
  5539. },
  5540. {
  5541. "name": "yiisoft/yii2-debug",
  5542. "version": "dev-master",
  5543. "source": {
  5544. "type": "git",
  5545. "url": "https://github.com/yiisoft/yii2-debug.git",
  5546. "reference": "9026d8a41571facc6fba816da15d62581f7f02cb"
  5547. },
  5548. "dist": {
  5549. "type": "zip",
  5550. "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/9026d8a41571facc6fba816da15d62581f7f02cb",
  5551. "reference": "9026d8a41571facc6fba816da15d62581f7f02cb",
  5552. "shasum": "",
  5553. "mirrors": [
  5554. {
  5555. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5556. "preferred": true
  5557. }
  5558. ]
  5559. },
  5560. "require": {
  5561. "ext-mbstring": "*",
  5562. "php": ">=5.4",
  5563. "yiisoft/yii2": "~2.0.13"
  5564. },
  5565. "require-dev": {
  5566. "cweagans/composer-patches": "^1.7",
  5567. "phpunit/phpunit": "4.8.34",
  5568. "yiisoft/yii2-coding-standards": "~2.0",
  5569. "yiisoft/yii2-swiftmailer": "*"
  5570. },
  5571. "default-branch": true,
  5572. "type": "yii2-extension",
  5573. "extra": {
  5574. "patches": {
  5575. "phpunit/phpunit": {
  5576. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  5577. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch",
  5578. "Fix PHP 8.1 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php81.patch"
  5579. },
  5580. "phpunit/phpunit-mock-objects": {
  5581. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  5582. }
  5583. },
  5584. "branch-alias": {
  5585. "dev-master": "2.0.x-dev"
  5586. },
  5587. "composer-exit-on-patch-failure": true
  5588. },
  5589. "autoload": {
  5590. "psr-4": {
  5591. "yii\\debug\\": "src"
  5592. }
  5593. },
  5594. "notification-url": "https://packagist.org/downloads/",
  5595. "license": [
  5596. "BSD-3-Clause"
  5597. ],
  5598. "authors": [
  5599. {
  5600. "name": "Qiang Xue",
  5601. "email": "qiang.xue@gmail.com"
  5602. },
  5603. {
  5604. "name": "Simon Karlen",
  5605. "email": "simi.albi@outlook.com"
  5606. }
  5607. ],
  5608. "description": "The debugger extension for the Yii framework",
  5609. "keywords": [
  5610. "debug",
  5611. "debugger",
  5612. "dev",
  5613. "yii2"
  5614. ],
  5615. "support": {
  5616. "forum": "https://www.yiiframework.com/forum/",
  5617. "irc": "ircs://irc.libera.chat:6697/yii",
  5618. "issues": "https://github.com/yiisoft/yii2-debug/issues",
  5619. "source": "https://github.com/yiisoft/yii2-debug",
  5620. "wiki": "https://www.yiiframework.com/wiki/"
  5621. },
  5622. "funding": [
  5623. {
  5624. "url": "https://github.com/yiisoft",
  5625. "type": "github"
  5626. },
  5627. {
  5628. "url": "https://opencollective.com/yiisoft",
  5629. "type": "open_collective"
  5630. },
  5631. {
  5632. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-debug",
  5633. "type": "tidelift"
  5634. }
  5635. ],
  5636. "time": "2025-06-08T13:33:56+00:00"
  5637. },
  5638. {
  5639. "name": "yiisoft/yii2-faker",
  5640. "version": "dev-master",
  5641. "source": {
  5642. "type": "git",
  5643. "url": "https://github.com/yiisoft/yii2-faker.git",
  5644. "reference": "9550b28832322a13c9e4e76f3d348da3c29f19da"
  5645. },
  5646. "dist": {
  5647. "type": "zip",
  5648. "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/9550b28832322a13c9e4e76f3d348da3c29f19da",
  5649. "reference": "9550b28832322a13c9e4e76f3d348da3c29f19da",
  5650. "shasum": "",
  5651. "mirrors": [
  5652. {
  5653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5654. "preferred": true
  5655. }
  5656. ]
  5657. },
  5658. "require": {
  5659. "fakerphp/faker": "~1.9|~1.10",
  5660. "yiisoft/yii2": "~2.0.0"
  5661. },
  5662. "require-dev": {
  5663. "cweagans/composer-patches": "^1.7",
  5664. "phpunit/phpunit": "4.8.34"
  5665. },
  5666. "default-branch": true,
  5667. "type": "yii2-extension",
  5668. "extra": {
  5669. "patches": {
  5670. "phpunit/phpunit": {
  5671. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  5672. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  5673. },
  5674. "phpunit/phpunit-mock-objects": {
  5675. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  5676. }
  5677. },
  5678. "branch-alias": {
  5679. "dev-master": "2.0.x-dev"
  5680. },
  5681. "composer-exit-on-patch-failure": true
  5682. },
  5683. "autoload": {
  5684. "psr-4": {
  5685. "yii\\faker\\": "src"
  5686. }
  5687. },
  5688. "notification-url": "https://packagist.org/downloads/",
  5689. "license": [
  5690. "BSD-3-Clause"
  5691. ],
  5692. "authors": [
  5693. {
  5694. "name": "Mark Jebri",
  5695. "email": "mark.github@yandex.ru"
  5696. }
  5697. ],
  5698. "description": "Fixture generator. The Faker integration for the Yii framework.",
  5699. "keywords": [
  5700. "Fixture",
  5701. "faker",
  5702. "yii2"
  5703. ],
  5704. "support": {
  5705. "forum": "https://www.yiiframework.com/forum/",
  5706. "irc": "ircs://irc.libera.chat:6697/yii",
  5707. "issues": "https://github.com/yiisoft/yii2-faker/issues",
  5708. "source": "https://github.com/yiisoft/yii2-faker",
  5709. "wiki": "https://www.yiiframework.com/wiki/"
  5710. },
  5711. "funding": [
  5712. {
  5713. "url": "https://github.com/yiisoft",
  5714. "type": "github"
  5715. },
  5716. {
  5717. "url": "https://opencollective.com/yiisoft",
  5718. "type": "open_collective"
  5719. },
  5720. {
  5721. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-faker",
  5722. "type": "tidelift"
  5723. }
  5724. ],
  5725. "time": "2025-05-29T09:29:00+00:00"
  5726. },
  5727. {
  5728. "name": "yiisoft/yii2-gii",
  5729. "version": "2.0.8",
  5730. "source": {
  5731. "type": "git",
  5732. "url": "https://github.com/yiisoft/yii2-gii.git",
  5733. "reference": "c02adc552bcf3a0ef6f3694a9dcbf209f4885ab1"
  5734. },
  5735. "dist": {
  5736. "type": "zip",
  5737. "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/c02adc552bcf3a0ef6f3694a9dcbf209f4885ab1",
  5738. "reference": "c02adc552bcf3a0ef6f3694a9dcbf209f4885ab1",
  5739. "shasum": "",
  5740. "mirrors": [
  5741. {
  5742. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5743. "preferred": true
  5744. }
  5745. ]
  5746. },
  5747. "require": {
  5748. "bower-asset/typeahead.js": "0.10.* | ~0.11.0",
  5749. "phpspec/php-diff": ">=1.0.2",
  5750. "yiisoft/yii2": "~2.0.14",
  5751. "yiisoft/yii2-bootstrap": "~2.0.0"
  5752. },
  5753. "type": "yii2-extension",
  5754. "extra": {
  5755. "branch-alias": {
  5756. "dev-master": "2.0.x-dev"
  5757. }
  5758. },
  5759. "autoload": {
  5760. "psr-4": {
  5761. "yii\\gii\\": "src"
  5762. }
  5763. },
  5764. "notification-url": "https://packagist.org/downloads/",
  5765. "license": [
  5766. "BSD-3-Clause"
  5767. ],
  5768. "authors": [
  5769. {
  5770. "name": "Qiang Xue",
  5771. "email": "qiang.xue@gmail.com"
  5772. }
  5773. ],
  5774. "description": "The Gii extension for the Yii framework",
  5775. "keywords": [
  5776. "code generator",
  5777. "gii",
  5778. "yii2"
  5779. ],
  5780. "support": {
  5781. "forum": "http://www.yiiframework.com/forum/",
  5782. "irc": "irc://irc.freenode.net/yii",
  5783. "issues": "https://github.com/yiisoft/yii2-gii/issues",
  5784. "source": "https://github.com/yiisoft/yii2-gii",
  5785. "wiki": "http://www.yiiframework.com/wiki/"
  5786. },
  5787. "time": "2018-12-08T10:07:49+00:00"
  5788. }
  5789. ],
  5790. "aliases": [],
  5791. "minimum-stability": "dev",
  5792. "stability-flags": {
  5793. "hollisho/yii2-redis-pub-sub": 20,
  5794. "phpoption/phpoption": 20,
  5795. "alibabacloud/client": 20,
  5796. "baidu/aip-sdk": 20,
  5797. "getuilaboratory/getui-pushapi-php-client-v2": 20
  5798. },
  5799. "prefer-stable": false,
  5800. "prefer-lowest": false,
  5801. "platform": {
  5802. "php": ">=7.0"
  5803. },
  5804. "platform-dev": [],
  5805. "plugin-api-version": "2.6.0"
  5806. }