composer.lock 207 KB

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