composer.lock 194 KB

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