| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196 |
- {
- "_readme": [
- "This file locks the dependencies of your project to a known state",
- "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
- "This file is @generated automatically"
- ],
- "content-hash": "8546d0e582f3179da4b4d17cd2eba58c",
- "packages": [
- {
- "name": "aliyuncs/oss-sdk-php",
- "version": "v2.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
- "reference": "e69f57916678458642ac9d2fd341ae78a56996c8"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/e69f57916678458642ac9d2fd341ae78a56996c8",
- "reference": "e69f57916678458642ac9d2fd341ae78a56996c8",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.0",
- "satooshi/php-coveralls": "~1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "OSS\\": "src/OSS"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Aliyuncs",
- "homepage": "http://www.aliyun.com"
- }
- ],
- "description": "Aliyun OSS SDK for PHP",
- "homepage": "http://www.aliyun.com/product/oss/",
- "time": "2018-01-08T06:59:35+00:00"
- },
- {
- "name": "bower-asset/bootstrap",
- "version": "v3.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/twbs/bootstrap.git",
- "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/twbs/bootstrap/zipball/68b0d231a13201eb14acd3dc84e51543d16e5f7e",
- "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e",
- "shasum": ""
- },
- "require": {
- "bower-asset/jquery": ">=1.9.1,<=3"
- },
- "type": "bower-asset-library",
- "extra": {
- "bower-asset-main": [
- "less/bootstrap.less",
- "dist/js/bootstrap.js"
- ],
- "bower-asset-ignore": [
- "/.*",
- "_config.yml",
- "CNAME",
- "composer.json",
- "CONTRIBUTING.md",
- "docs",
- "js/tests",
- "test-infra"
- ]
- },
- "license": [
- "MIT"
- ],
- "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
- "keywords": [
- "css",
- "framework",
- "front-end",
- "js",
- "less",
- "mobile-first",
- "responsive",
- "web"
- ]
- },
- {
- "name": "bower-asset/inputmask",
- "version": "3.3.11",
- "source": {
- "type": "git",
- "url": "https://github.com/RobinHerbots/Inputmask.git",
- "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
- "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b",
- "shasum": ""
- },
- "require": {
- "bower-asset/jquery": ">=1.7"
- },
- "type": "bower-asset-library",
- "extra": {
- "bower-asset-main": [
- "./dist/inputmask/inputmask.js",
- "./dist/inputmask/inputmask.extensions.js",
- "./dist/inputmask/inputmask.date.extensions.js",
- "./dist/inputmask/inputmask.numeric.extensions.js",
- "./dist/inputmask/inputmask.phone.extensions.js",
- "./dist/inputmask/jquery.inputmask.js",
- "./dist/inputmask/global/document.js",
- "./dist/inputmask/global/window.js",
- "./dist/inputmask/phone-codes/phone.js",
- "./dist/inputmask/phone-codes/phone-be.js",
- "./dist/inputmask/phone-codes/phone-nl.js",
- "./dist/inputmask/phone-codes/phone-ru.js",
- "./dist/inputmask/phone-codes/phone-uk.js",
- "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jqlite.js",
- "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jquery.js",
- "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.js",
- "./dist/inputmask/bindings/inputmask.binding.js"
- ],
- "bower-asset-ignore": [
- "**/*",
- "!dist/*",
- "!dist/inputmask/*",
- "!dist/min/*",
- "!dist/min/inputmask/*"
- ]
- },
- "license": [
- "http://opensource.org/licenses/mit-license.php"
- ],
- "description": "Inputmask is a javascript library which creates an input mask. Inputmask can run against vanilla javascript, jQuery and jqlite.",
- "keywords": [
- "form",
- "input",
- "inputmask",
- "jquery",
- "mask",
- "plugins"
- ],
- "time": "2017-11-21T11:46:23+00:00"
- },
- {
- "name": "bower-asset/jquery",
- "version": "2.2.4",
- "source": {
- "type": "git",
- "url": "https://github.com/jquery/jquery-dist.git",
- "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/c0185ab7c75aab88762c5aae780b9d83b80eda72",
- "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72",
- "shasum": ""
- },
- "type": "bower-asset-library",
- "extra": {
- "bower-asset-main": "dist/jquery.js",
- "bower-asset-ignore": [
- "package.json"
- ]
- },
- "license": [
- "MIT"
- ],
- "keywords": [
- "browser",
- "javascript",
- "jquery",
- "library"
- ]
- },
- {
- "name": "bower-asset/punycode",
- "version": "v1.3.2",
- "source": {
- "type": "git",
- "url": "https://github.com/bestiejs/punycode.js.git",
- "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
- "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3",
- "shasum": ""
- },
- "type": "bower-asset-library",
- "extra": {
- "bower-asset-main": "punycode.js",
- "bower-asset-ignore": [
- "coverage",
- "tests",
- ".*",
- "component.json",
- "Gruntfile.js",
- "node_modules",
- "package.json"
- ]
- }
- },
- {
- "name": "bower-asset/yii2-pjax",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/yiisoft/jquery-pjax.git",
- "reference": "c39f2393883f370d3c0d63d80a122534131b0f56"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/c39f2393883f370d3c0d63d80a122534131b0f56",
- "reference": "c39f2393883f370d3c0d63d80a122534131b0f56",
- "shasum": ""
- },
- "require": {
- "bower-asset/jquery": ">=1.8"
- },
- "type": "bower-asset-library",
- "extra": {
- "bower-asset-main": "./jquery.pjax.js",
- "bower-asset-ignore": [
- ".travis.yml",
- "Gemfile",
- "Gemfile.lock",
- "CONTRIBUTING.md",
- "vendor/",
- "script/",
- "test/"
- ],
- "branch-alias": {
- "dev-master": "2.0.8-dev"
- }
- },
- "license": [
- "MIT"
- ]
- },
- {
- "name": "cebe/markdown",
- "version": "1.1.2",
- "source": {
- "type": "git",
- "url": "https://github.com/cebe/markdown.git",
- "reference": "25b28bae8a6f185b5030673af77b32e1163d5c6e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/cebe/markdown/zipball/25b28bae8a6f185b5030673af77b32e1163d5c6e",
- "reference": "25b28bae8a6f185b5030673af77b32e1163d5c6e",
- "shasum": ""
- },
- "require": {
- "lib-pcre": "*",
- "php": ">=5.4.0"
- },
- "require-dev": {
- "cebe/indent": "*",
- "facebook/xhprof": "*@dev",
- "phpunit/phpunit": "4.1.*"
- },
- "bin": [
- "bin/markdown"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.1.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "cebe\\markdown\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Carsten Brandt",
- "email": "mail@cebe.cc",
- "homepage": "http://cebe.cc/",
- "role": "Creator"
- }
- ],
- "description": "A super fast, highly extensible markdown parser for PHP",
- "homepage": "https://github.com/cebe/markdown#readme",
- "keywords": [
- "extensible",
- "fast",
- "gfm",
- "markdown",
- "markdown-extra"
- ],
- "time": "2017-07-16T21:13:23+00:00"
- },
- {
- "name": "ezyang/htmlpurifier",
- "version": "v4.10.0",
- "source": {
- "type": "git",
- "url": "https://github.com/ezyang/htmlpurifier.git",
- "reference": "d85d39da4576a6934b72480be6978fb10c860021"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d85d39da4576a6934b72480be6978fb10c860021",
- "reference": "d85d39da4576a6934b72480be6978fb10c860021",
- "shasum": ""
- },
- "require": {
- "php": ">=5.2"
- },
- "require-dev": {
- "simpletest/simpletest": "^1.1"
- },
- "type": "library",
- "autoload": {
- "psr-0": {
- "HTMLPurifier": "library/"
- },
- "files": [
- "library/HTMLPurifier.composer.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL"
- ],
- "authors": [
- {
- "name": "Edward Z. Yang",
- "email": "admin@htmlpurifier.org",
- "homepage": "http://ezyang.com"
- }
- ],
- "description": "Standards compliant HTML filter written in PHP",
- "homepage": "http://htmlpurifier.org/",
- "keywords": [
- "html"
- ],
- "time": "2018-02-23T01:58:20+00:00"
- },
- {
- "name": "guzzlehttp/guzzle",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/guzzle/guzzle.git",
- "reference": "bf595424e4d442a190582e088985dc835a789071"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/bf595424e4d442a190582e088985dc835a789071",
- "reference": "bf595424e4d442a190582e088985dc835a789071",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "guzzlehttp/promises": "^1.0",
- "guzzlehttp/psr7": "^1.4",
- "php": ">=5.5"
- },
- "require-dev": {
- "ext-curl": "*",
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
- "psr/log": "^1.1"
- },
- "suggest": {
- "psr/log": "Required for using the Log middleware"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "6.3-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "GuzzleHttp\\": "src/"
- },
- "files": [
- "src/functions_include.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Michael Dowling",
- "email": "mtdowling@gmail.com",
- "homepage": "https://github.com/mtdowling"
- }
- ],
- "description": "Guzzle is a PHP HTTP client library",
- "homepage": "http://guzzlephp.org/",
- "keywords": [
- "client",
- "curl",
- "framework",
- "http",
- "http client",
- "rest",
- "web service"
- ],
- "time": "2019-04-15T08:22:37+00:00"
- },
- {
- "name": "guzzlehttp/promises",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/guzzle/promises.git",
- "reference": "926eaa3ff73cde2becf652b785831bcb7618568a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/guzzle/promises/zipball/926eaa3ff73cde2becf652b785831bcb7618568a",
- "reference": "926eaa3ff73cde2becf652b785831bcb7618568a",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.8.36"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.4-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "GuzzleHttp\\Promise\\": "src/"
- },
- "files": [
- "src/functions_include.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Michael Dowling",
- "email": "mtdowling@gmail.com",
- "homepage": "https://github.com/mtdowling"
- }
- ],
- "description": "Guzzle promises library",
- "keywords": [
- "promise"
- ],
- "time": "2018-10-30T00:20:04+00:00"
- },
- {
- "name": "guzzlehttp/psr7",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/guzzle/psr7.git",
- "reference": "a346647434953deb5bd599d92922b2d225e25170"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/a346647434953deb5bd599d92922b2d225e25170",
- "reference": "a346647434953deb5bd599d92922b2d225e25170",
- "shasum": "",
- "mirrors": [
- {
- "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
- "preferred": true
- }
- ]
- },
- "require": {
- "php": ">=5.4.0",
- "psr/http-message": "~1.0",
- "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
- },
- "provide": {
- "psr/http-message-implementation": "1.0"
- },
- "require-dev": {
- "ext-zlib": "*",
- "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
- },
- "suggest": {
- "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.5-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "GuzzleHttp\\Psr7\\": "src/"
- },
- "files": [
- "src/functions_include.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Michael Dowling",
- "email": "mtdowling@gmail.com",
- "homepage": "https://github.com/mtdowling"
- },
- {
- "name": "Tobias Schultze",
- "homepage": "https://github.com/Tobion"
- }
- ],
- "description": "PSR-7 message implementation that also provides common utility methods",
- "keywords": [
- "http",
- "message",
- "psr-7",
- "request",
- "response",
- "stream",
- "uri",
- "url"
- ],
- "time": "2019-04-01T06:40:32+00:00"
- },
- {
- "name": "hollisho/yii2-redis-pub-sub",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/hollisho/yii2-redis-pub-sub.git",
- "reference": "d19daa3c6928bb28aca180a8b77e952ef435d41b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/hollisho/yii2-redis-pub-sub/zipball/d19daa3c6928bb28aca180a8b77e952ef435d41b",
- "reference": "d19daa3c6928bb28aca180a8b77e952ef435d41b",
- "shasum": ""
- },
- "require": {
- "php": ">=5.4.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "hollisho\\redis_pub_sub\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Hollis Ho",
- "email": "he_wenzhi@126.com"
- }
- ],
- "description": "Yii2 Redis pub/sub(Publish,Subscribe)",
- "time": "2018-11-22T10:56:17+00:00"
- },
- {
- "name": "jzweb/open-weixin",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/yidejia/jzweb-open-weixin.git",
- "reference": "90283189b6bb5a75a0be3c1fe3f1c49fcfc9b2a7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/yidejia/jzweb-open-weixin/zipball/90283189b6bb5a75a0be3c1fe3f1c49fcfc9b2a7",
- "reference": "90283189b6bb5a75a0be3c1fe3f1c49fcfc9b2a7",
- "shasum": ""
- },
- "require": {
- "guzzlehttp/guzzle": "~6.0",
- "php": ">=5.5.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "jzweb\\open\\weixin\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "liusongsen",
- "email": "liusongsen@gmail.com"
- }
- ],
- "description": "微信开放平台接口",
- "time": "2018-06-01T07:58:00+00:00"
- },
- {
- "name": "lcobucci/jwt",
- "version": "3.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/lcobucci/jwt.git",
- "reference": "8866a58fa866f6872f2a6ea0e04ad56480f0f440"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/lcobucci/jwt/zipball/8866a58fa866f6872f2a6ea0e04ad56480f0f440",
- "reference": "8866a58fa866f6872f2a6ea0e04ad56480f0f440",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "ext-openssl": "*",
- "php": "^5.6 || ^7.0"
- },
- "require-dev": {
- "mikey179/vfsstream": "~1.5",
- "phpmd/phpmd": "~2.2",
- "phpunit/php-invoker": "~1.1",
- "phpunit/phpunit": "^5.7 || ^7.3",
- "squizlabs/php_codesniffer": "~2.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.1-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Lcobucci\\JWT\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Luís Otávio Cobucci Oblonczyk",
- "email": "lcobucci@gmail.com",
- "role": "Developer"
- }
- ],
- "description": "A simple library to work with JSON Web Token and JSON Web Signature",
- "keywords": [
- "JWS",
- "jwt"
- ],
- "time": "2019-05-22T09:44:23+00:00"
- },
- {
- "name": "linslin/yii2-curl",
- "version": "1.0.11",
- "source": {
- "type": "git",
- "url": "https://github.com/linslin/Yii2-Curl.git",
- "reference": "0384d175c594a6b76c4eeb91eb3804e24eb867b3"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/linslin/Yii2-Curl/zipball/0384d175c594a6b76c4eeb91eb3804e24eb867b3",
- "reference": "0384d175c594a6b76c4eeb91eb3804e24eb867b3",
- "shasum": ""
- },
- "require": {
- "ext-curl": "*",
- "yiisoft/yii2": "*"
- },
- "type": "yii2-extension",
- "autoload": {
- "psr-4": {
- "linslin\\yii2\\curl\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nils Gajsek",
- "email": "info@linslin.org"
- }
- ],
- "description": "Easy and nice cURL extension with RESTful support for Yii2",
- "keywords": [
- " curl",
- "extension",
- "restful",
- "yii2"
- ],
- "time": "2017-01-17T11:11:37+00:00"
- },
- {
- "name": "mikemadisonweb/yii2-rabbitmq",
- "version": "2.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/mikemadisonweb/yii2-rabbitmq.git",
- "reference": "d5574048b813f26f57996b0a7819a879df5826e2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/mikemadisonweb/yii2-rabbitmq/zipball/d5574048b813f26f57996b0a7819a879df5826e2",
- "reference": "d5574048b813f26f57996b0a7819a879df5826e2",
- "shasum": ""
- },
- "require": {
- "php": "^7.0",
- "php-amqplib/php-amqplib": "^2.9",
- "yiisoft/yii2": "^2.0"
- },
- "require-dev": {
- "php-coveralls/php-coveralls": "^1.0",
- "phpunit/phpunit": "^6.4"
- },
- "type": "yii2-extension",
- "extra": {
- "bootstrap": "mikemadisonweb\\rabbitmq\\DependencyInjection"
- },
- "autoload": {
- "psr-4": {
- "mikemadisonweb\\rabbitmq\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Mikhail Bakulin",
- "email": "mikemadweb@gmail.com"
- }
- ],
- "description": "Wrapper based on php-amqplib to incorporate messaging in your Yii2 application via RabbitMQ. Inspired by RabbitMqBundle for Symfony 2, really awesome package.",
- "keywords": [
- "AMQP",
- "distributed systems",
- "extension",
- "message queue",
- "rabbitmq",
- "yii2"
- ],
- "time": "2019-04-23T12:48:21+00:00"
- },
- {
- "name": "php-amqplib/php-amqplib",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/php-amqplib/php-amqplib.git",
- "reference": "04e5366f032906d5f716890427e425e71307d3a8"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/04e5366f032906d5f716890427e425e71307d3a8",
- "reference": "04e5366f032906d5f716890427e425e71307d3a8",
- "shasum": ""
- },
- "require": {
- "ext-bcmath": "*",
- "ext-sockets": "*",
- "php": ">=5.6"
- },
- "replace": {
- "videlalvaro/php-amqplib": "self.version"
- },
- "require-dev": {
- "ext-curl": "*",
- "nategood/httpful": "^0.2.20",
- "phpdocumentor/phpdocumentor": "dev-master",
- "phpunit/phpunit": "^5.7|^6.5|^7.0",
- "squizlabs/php_codesniffer": "^2.5"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.10-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "PhpAmqpLib\\": "PhpAmqpLib/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-2.1-or-later"
- ],
- "authors": [
- {
- "name": "Alvaro Videla",
- "role": "Original Maintainer"
- },
- {
- "name": "John Kelly",
- "role": "Maintainer",
- "email": "johnmkelly86@gmail.com"
- },
- {
- "name": "Raúl Araya",
- "role": "Maintainer",
- "email": "nubeiro@gmail.com"
- },
- {
- "name": "Luke Bakken",
- "role": "Maintainer",
- "email": "luke@bakken.io"
- }
- ],
- "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
- "homepage": "https://github.com/php-amqplib/php-amqplib/",
- "keywords": [
- "message",
- "queue",
- "rabbitmq"
- ],
- "time": "2019-08-08T18:28:18+00:00"
- },
- {
- "name": "phpoffice/phpexcel",
- "version": "1.8.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/PHPOffice/PHPExcel.git",
- "reference": "39534e3dd376041d0d50a4714e73375bf45b692b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/39534e3dd376041d0d50a4714e73375bf45b692b",
- "reference": "39534e3dd376041d0d50a4714e73375bf45b692b",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "ext-xml": "*",
- "ext-xmlwriter": "*",
- "php": "^5.2|^7.0"
- },
- "require-dev": {
- "squizlabs/php_codesniffer": "2.*"
- },
- "type": "library",
- "autoload": {
- "psr-0": {
- "PHPExcel": "Classes/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-2.1"
- ],
- "authors": [
- {
- "name": "Maarten Balliauw",
- "homepage": "http://blog.maartenballiauw.be"
- },
- {
- "name": "Erik Tilt"
- },
- {
- "name": "Franck Lefevre",
- "homepage": "http://rootslabs.net"
- },
- {
- "name": "Mark Baker",
- "homepage": "http://markbakeruk.net"
- }
- ],
- "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
- "homepage": "https://github.com/PHPOffice/PHPExcel",
- "keywords": [
- "OpenXML",
- "excel",
- "php",
- "spreadsheet",
- "xls",
- "xlsx"
- ],
- "abandoned": "phpoffice/phpspreadsheet",
- "time": "2019-01-02T01:38:47+00:00"
- },
- {
- "name": "phpoption/phpoption",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/schmittjoh/php-option.git",
- "reference": "2f6af23c6ff2bcd32ebd969e118e5a3b57d649dc"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/2f6af23c6ff2bcd32ebd969e118e5a3b57d649dc",
- "reference": "2f6af23c6ff2bcd32ebd969e118e5a3b57d649dc",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.7|^5.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.6-dev"
- }
- },
- "autoload": {
- "psr-0": {
- "PhpOption\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "Johannes M. Schmitt",
- "email": "schmittjoh@gmail.com"
- }
- ],
- "description": "Option Type for PHP",
- "keywords": [
- "language",
- "option",
- "php",
- "type"
- ],
- "time": "2019-11-10T15:06:50+00:00"
- },
- {
- "name": "psr/http-message",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/http-message.git",
- "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
- "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Http\\Message\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
- }
- ],
- "description": "Common interface for HTTP messages",
- "homepage": "https://github.com/php-fig/http-message",
- "keywords": [
- "http",
- "http-message",
- "psr",
- "psr-7",
- "request",
- "response"
- ],
- "time": "2016-08-06T14:39:51+00:00"
- },
- {
- "name": "pwf0112/wxcrypt",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/pwf0112/wxcrypt.git",
- "reference": "4756b3cfb9e4b812d42acc381582485f21abe831"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/pwf0112/wxcrypt/zipball/4756b3cfb9e4b812d42acc381582485f21abe831",
- "reference": "4756b3cfb9e4b812d42acc381582485f21abe831",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.9"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "WxCrypt\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "彭未峰",
- "email": "pwf0112@163.com"
- }
- ],
- "description": "微信企业号接入文档Laravel改装",
- "keywords": [
- "企业号",
- "回调接入",
- "微信",
- "消息加密",
- "消息解密"
- ],
- "time": "2016-10-27T08:11:14+00:00"
- },
- {
- "name": "ralouphie/getallheaders",
- "version": "3.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/ralouphie/getallheaders.git",
- "reference": "120b605dfeb996808c31b6477290a714d356e822"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
- "reference": "120b605dfeb996808c31b6477290a714d356e822",
- "shasum": ""
- },
- "require": {
- "php": ">=5.6"
- },
- "require-dev": {
- "php-coveralls/php-coveralls": "^2.1",
- "phpunit/phpunit": "^5 || ^6.5"
- },
- "type": "library",
- "autoload": {
- "files": [
- "src/getallheaders.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Ralph Khattar",
- "email": "ralph.khattar@gmail.com"
- }
- ],
- "description": "A polyfill for getallheaders.",
- "time": "2019-03-08T08:55:37+00:00"
- },
- {
- "name": "swiftmailer/swiftmailer",
- "version": "5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/swiftmailer/swiftmailer.git",
- "reference": "181b89f18a90f8925ef805f950d47a7190e9b950"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950",
- "reference": "181b89f18a90f8925ef805f950d47a7190e9b950",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.3"
- },
- "require-dev": {
- "mockery/mockery": "~0.9.1",
- "symfony/phpunit-bridge": "~3.2"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.4-dev"
- }
- },
- "autoload": {
- "files": [
- "lib/swift_required.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Chris Corbyn"
- },
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- }
- ],
- "description": "Swiftmailer, free feature-rich PHP mailer",
- "homepage": "https://swiftmailer.symfony.com",
- "keywords": [
- "email",
- "mail",
- "mailer"
- ],
- "time": "2018-07-31T09:26:32+00:00"
- },
- {
- "name": "symfony/polyfill-ctype",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-ctype.git",
- "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
- "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.3"
- },
- "suggest": {
- "ext-ctype": "For best performance"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.12-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Polyfill\\Ctype\\": ""
- },
- "files": [
- "bootstrap.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Gert de Pagter",
- "email": "BackEndTea@gmail.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill for ctype functions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "ctype",
- "polyfill",
- "portable"
- ],
- "time": "2019-08-06T08:03:45+00:00"
- },
- {
- "name": "vlucas/phpdotenv",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/vlucas/phpdotenv.git",
- "reference": "e9b60fd90d7cf5037d34f62e6ffc6e07e89eb2dc"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/e9b60fd90d7cf5037d34f62e6ffc6e07e89eb2dc",
- "reference": "e9b60fd90d7cf5037d34f62e6ffc6e07e89eb2dc",
- "shasum": ""
- },
- "require": {
- "php": "^5.4 || ^7.0",
- "phpoption/phpoption": "^1.5",
- "symfony/polyfill-ctype": "^1.9"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Dotenv\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Graham Campbell",
- "email": "graham@alt-three.com",
- "homepage": "https://gjcampbell.co.uk/"
- },
- {
- "name": "Vance Lucas",
- "email": "vance@vancelucas.com",
- "homepage": "https://vancelucas.com/"
- }
- ],
- "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
- "keywords": [
- "dotenv",
- "env",
- "environment"
- ],
- "time": "2019-11-04T22:18:38+00:00"
- },
- {
- "name": "yiisoft/yii2",
- "version": "2.0.29",
- "source": {
- "type": "git",
- "url": "https://github.com/yiisoft/yii2-framework.git",
- "reference": "f972275551172a4b2e293979d77aa0c795ae36a2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/f972275551172a4b2e293979d77aa0c795ae36a2",
- "reference": "f972275551172a4b2e293979d77aa0c795ae36a2",
- "shasum": ""
- },
- "require": {
- "bower-asset/inputmask": "~3.2.2 | ~3.3.5",
- "bower-asset/jquery": "3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
- "bower-asset/punycode": "1.3.*",
- "bower-asset/yii2-pjax": "~2.0.1",
- "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
- "ext-ctype": "*",
- "ext-mbstring": "*",
- "ezyang/htmlpurifier": "~4.6",
- "lib-pcre": "*",
- "php": ">=5.4.0",
- "yiisoft/yii2-composer": "~2.0.4"
- },
- "bin": [
- "yii"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "yii\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Qiang Xue",
- "email": "qiang.xue@gmail.com",
- "homepage": "http://www.yiiframework.com/",
- "role": "Founder and project lead"
- },
- {
- "name": "Alexander Makarov",
- "email": "sam@rmcreative.ru",
- "homepage": "http://rmcreative.ru/",
- "role": "Core framework development"
- },
- {
- "name": "Maurizio Domba",
- "homepage": "http://mdomba.info/",
- "role": "Core framework development"
- },
- {
- "name": "Carsten Brandt",
- "email": "mail@cebe.cc",
- "homepage": "http://cebe.cc/",
- "role": "Core framework development"
- },
- {
- "name": "Timur Ruziev",
- "email": "resurtm@gmail.com",
- "homepage": "http://resurtm.com/",
- "role": "Core framework development"
- },
- {
- "name": "Paul Klimov",
- "email": "klimov.paul@gmail.com",
- "role": "Core framework development"
- },
- {
- "name": "Dmitry Naumenko",
- "email": "d.naumenko.a@gmail.com",
- "role": "Core framework development"
- },
- {
- "name": "Boudewijn Vahrmeijer",
- "email": "info@dynasource.eu",
- "homepage": "http://dynasource.eu",
- "role": "Core framework development"
- }
- ],
- "description": "Yii PHP Framework Version 2",
- "homepage": "http://www.yiiframework.com/",
- "keywords": [
- "framework",
- "yii2"
- ],
- "time": "2019-10-22T13:47:14+00:00"
- },
- {
- "name": "yiisoft/yii2-bootstrap",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/yiisoft/yii2-bootstrap.git",
- "reference": "454552b7a90e2a803def733e4d1f612b850158da"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/454552b7a90e2a803def733e4d1f612b850158da",
- "reference": "454552b7a90e2a803def733e4d1f612b850158da",
- "shasum": ""
- },
- "require": {
- "bower-asset/bootstrap": "3.4.* | 3.3.* | 3.2.* | 3.1.*",
- "yiisoft/yii2": "~2.0.6"
- },
- "require-dev": {
- "phpunit/phpunit": "<7"
- },
- "type": "yii2-extension",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "yii\\bootstrap\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Paul Klimov",
- "email": "klimov.paul@gmail.com"
- },
- {
- "name": "Alexander Makarov",
- "email": "sam@rmcreative.ru",
- "homepage": "http://rmcreative.ru/"
- },
- {
- "name": "Antonio Ramirez",
- "email": "amigo.cobos@gmail.com"
- },
- {
- "name": "Qiang Xue",
- "email": "qiang.xue@gmail.com",
- "homepage": "http://www.yiiframework.com/"
- }
- ],
- "description": "The Twitter Bootstrap extension for the Yii framework",
- "keywords": [
- "bootstrap",
- "yii2"
- ],
- "time": "2019-02-17T13:23:56+00:00"
- },
- {
- "name": "yiisoft/yii2-composer",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/yiisoft/yii2-composer.git",
- "reference": "602673880e00bc2cc6d874b0714382775b372ac2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/602673880e00bc2cc6d874b0714382775b372ac2",
- "reference": "602673880e00bc2cc6d874b0714382775b372ac2",
- "shasum": ""
- },
- "require": {
- "composer-plugin-api": "^1.0"
- },
- "require-dev": {
- "composer/composer": "^1.0",
- "phpunit/phpunit": "<7"
- },
- "type": "composer-plugin",
- "extra": {
- "class": "yii\\composer\\Plugin",
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "yii\\composer\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Qiang Xue",
- "email": "qiang.xue@gmail.com"
- },
- {
- "name": "Carsten Brandt",
- "email": "mail@cebe.cc"
- }
- ],
- "description": "The composer plugin for Yii extension installer",
- "keywords": [
- "composer",
- "extension installer",
- "yii2"
- ],
- "time": "2019-07-16T13:22:50+00:00"
- },
- {
- "name": "yiisoft/yii2-redis",
- "version": "2.0.6",
- "source": {
- "type": "git",
- "url": "https://github.com/yiisoft/yii2-redis.git",
- "reference": "5dc55d5187923219e9db86d149d56acf1f5a6ee8"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/yiisoft/yii2-redis/zipball/5dc55d5187923219e9db86d149d56acf1f5a6ee8",
- "reference": "5dc55d5187923219e9db86d149d56acf1f5a6ee8",
- "shasum": ""
- },
- "require": {
- "yiisoft/yii2": "~2.0.11"
- },
- "type": "yii2-extension",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "yii\\redis\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Carsten Brandt",
- "email": "mail@cebe.cc"
- }
- ],
- "description": "Redis Cache, Session and ActiveRecord for the Yii framework",
- "keywords": [
- "active-record",
- "cache",
- "redis",
- "session",
- "yii2"
- ],
- "time": "2017-04-05T13:42:11+00:00"
- },
- {
- "name": "yiisoft/yii2-swiftmailer",
- "version": "2.0.7",
- "source": {
- "type": "git",
- "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
- "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/8a03a62cbcb82e7697d3002eb43a8d2637f566ec",
- "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec",
- "shasum": ""
- },
- "require": {
- "swiftmailer/swiftmailer": "~5.0",
- "yiisoft/yii2": "~2.0.4"
- },
- "type": "yii2-extension",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "yii\\swiftmailer\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Paul Klimov",
- "email": "klimov.paul@gmail.com"
- }
- ],
- "description": "The SwiftMailer integration for the Yii framework",
- "keywords": [
- "email",
- "mail",
- "mailer",
- "swift",
- "swiftmailer",
- "yii2"
- ],
- "time": "2017-05-01T08:29:00+00:00"
- }
- ],
- "packages-dev": [
- {
- "name": "bower-asset/jquery.inputmask",
- "version": "3.3.11",
- "source": {
- "type": "git",
- "url": "https://github.com/RobinHerbots/Inputmask.git",
- "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
- "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b",
- "shasum": ""
- },
- "require": {
- "bower-asset/jquery": ">=1.7"
- },
- "type": "bower-asset-library",
- "extra": {
- "bower-asset-main": [
- "./dist/inputmask/inputmask.js",
- "./dist/inputmask/inputmask.extensions.js",
- "./dist/inputmask/inputmask.date.extensions.js",
- "./dist/inputmask/inputmask.numeric.extensions.js",
- "./dist/inputmask/inputmask.phone.extensions.js",
- "./dist/inputmask/jquery.inputmask.js",
- "./dist/inputmask/global/document.js",
- "./dist/inputmask/global/window.js",
- "./dist/inputmask/phone-codes/phone.js",
- "./dist/inputmask/phone-codes/phone-be.js",
- "./dist/inputmask/phone-codes/phone-nl.js",
- "./dist/inputmask/phone-codes/phone-ru.js",
- "./dist/inputmask/phone-codes/phone-uk.js",
- "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jqlite.js",
- "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jquery.js",
- "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.js",
- "./dist/inputmask/bindings/inputmask.binding.js"
- ],
- "bower-asset-ignore": [
- "**/*",
- "!dist/*",
- "!dist/inputmask/*",
- "!dist/min/*",
- "!dist/min/inputmask/*"
- ]
- },
- "license": [
- "http://opensource.org/licenses/mit-license.php"
- ],
- "description": "Inputmask is a javascript library which creates an input mask. Inputmask can run against vanilla javascript, jQuery and jqlite.",
- "keywords": [
- "form",
- "input",
- "inputmask",
- "jquery",
- "mask",
- "plugins"
- ]
- },
- {
- "name": "bower-asset/typeahead.js",
- "version": "v0.11.1",
- "source": {
- "type": "git",
- "url": "https://github.com/twitter/typeahead.js.git",
- "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/twitter/typeahead.js/zipball/588440f66559714280628a4f9799f0c4eb880a4a",
- "reference": "588440f66559714280628a4f9799f0c4eb880a4a",
- "shasum": ""
- },
- "require": {
- "bower-asset/jquery": ">=1.7"
- },
- "require-dev": {
- "bower-asset/jasmine-ajax": "~1.3.1",
- "bower-asset/jasmine-jquery": "~1.5.2",
- "bower-asset/jquery": "~1.7"
- },
- "type": "bower-asset-library",
- "extra": {
- "bower-asset-main": "dist/typeahead.bundle.js"
- }
- },
- {
- "name": "fzaninotto/faker",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/fzaninotto/Faker.git",
- "reference": "fb218ada627f7c750c6e0e41cae486d2db48e911"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fb218ada627f7c750c6e0e41cae486d2db48e911",
- "reference": "fb218ada627f7c750c6e0e41cae486d2db48e911",
- "shasum": ""
- },
- "require": {
- "php": "^5.3.3 || ^7.0"
- },
- "require-dev": {
- "ext-intl": "*",
- "phpunit/phpunit": "^4.8.35 || ^5.7",
- "squizlabs/php_codesniffer": "^1.5"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.9-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Faker\\": "src/Faker/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "François Zaninotto"
- }
- ],
- "description": "Faker is a PHP library that generates fake data for you.",
- "keywords": [
- "data",
- "faker",
- "fixtures"
- ],
- "time": "2019-04-16T09:48:34+00:00"
- },
- {
- "name": "lcobucci/clock",
- "version": "1.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/lcobucci/clock.git",
- "reference": "d11d20b6a3df872d34f3b18d5bf4cbe5a01a2451"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/lcobucci/clock/zipball/d11d20b6a3df872d34f3b18d5bf4cbe5a01a2451",
- "reference": "d11d20b6a3df872d34f3b18d5bf4cbe5a01a2451",
- "shasum": ""
- },
- "require": {
- "php": "^7.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^6.1"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.1-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Lcobucci\\Clock\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Luís Cobucci",
- "email": "lcobucci@gmail.com"
- }
- ],
- "description": "Yet another clock abstraction",
- "time": "2018-01-19T15:38:44+00:00"
- },
- {
- "name": "lcobucci/jose-parsing",
- "version": "2.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/lcobucci/jose-parsing.git",
- "reference": "ea0eaed79c3a5ca9ece3f824ecfe1e798fd1e1f4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/lcobucci/jose-parsing/zipball/ea0eaed79c3a5ca9ece3f824ecfe1e798fd1e1f4",
- "reference": "ea0eaed79c3a5ca9ece3f824ecfe1e798fd1e1f4",
- "shasum": ""
- },
- "require": {
- "php": "^7.1"
- },
- "require-dev": {
- "phpmd/phpmd": "^2.3",
- "phpunit/phpunit": "^6.0",
- "squizlabs/php_codesniffer": "^2.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.2-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Lcobucci\\Jose\\Parsing\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Luís Otávio Cobucci Oblonczyk",
- "email": "lcobucci@gmail.com",
- "role": "Developer"
- }
- ],
- "description": "A basic Base64Url and JSON encoding/decoding implementation",
- "keywords": [
- "JOSE",
- "base64url"
- ],
- "time": "2017-02-12T22:14:17+00:00"
- },
- {
- "name": "phpspec/php-diff",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/phpspec/php-diff.git",
- "reference": "0464787bfa7cd13576c5a1e318709768798bec6a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phpspec/php-diff/zipball/0464787bfa7cd13576c5a1e318709768798bec6a",
- "reference": "0464787bfa7cd13576c5a1e318709768798bec6a",
- "shasum": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-0": {
- "Diff": "lib/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Chris Boulton",
- "homepage": "http://github.com/chrisboulton"
- }
- ],
- "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
- "time": "2016-04-07T12:29:16+00:00"
- },
- {
- "name": "symfony/polyfill-mbstring",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
- "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.3"
- },
- "suggest": {
- "ext-mbstring": "For best performance"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.11-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Polyfill\\Mbstring\\": ""
- },
- "files": [
- "bootstrap.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill for the Mbstring extension",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "mbstring",
- "polyfill",
- "portable",
- "shim"
- ],
- "time": "2019-02-06T07:57:58+00:00"
- },
- {
- "name": "symfony/var-dumper",
- "version": "3.4.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/var-dumper.git",
- "reference": "e463ad286cb2c56527c56bfff9e1aa7bb471c04e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e463ad286cb2c56527c56bfff9e1aa7bb471c04e",
- "reference": "e463ad286cb2c56527c56bfff9e1aa7bb471c04e",
- "shasum": ""
- },
- "require": {
- "php": "^5.5.9|>=7.0.8",
- "symfony/polyfill-mbstring": "~1.0"
- },
- "conflict": {
- "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
- },
- "require-dev": {
- "ext-iconv": "*",
- "twig/twig": "~1.34|~2.4"
- },
- "suggest": {
- "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
- "ext-intl": "To show region name in time zone dump",
- "ext-symfony_debug": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.4-dev"
- }
- },
- "autoload": {
- "files": [
- "Resources/functions/dump.php"
- ],
- "psr-4": {
- "Symfony\\Component\\VarDumper\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony mechanism for exploring and dumping PHP variables",
- "homepage": "https://symfony.com",
- "keywords": [
- "debug",
- "dump"
- ],
- "time": "2019-04-11T09:48:14+00:00"
- },
- {
- "name": "yiisoft/yii2-codeception",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/yiisoft/yii2-codeception.git",
- "reference": "c7d1509498c349179940a8d2b9c6d078e8054b90"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/yiisoft/yii2-codeception/zipball/c7d1509498c349179940a8d2b9c6d078e8054b90",
- "reference": "c7d1509498c349179940a8d2b9c6d078e8054b90",
- "shasum": ""
- },
- "require": {
- "yiisoft/yii2": ">=2.0.4"
- },
- "type": "yii2-extension",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "yii\\codeception\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Mark Jebri",
- "email": "mark.github@yandex.ru"
- }
- ],
- "description": "The Codeception integration for the Yii framework",
- "keywords": [
- "codeception",
- "yii2"
- ],
- "abandoned": "codeception/codeception",
- "time": "2018-04-26T18:21:40+00:00"
- },
- {
- "name": "yiisoft/yii2-debug",
- "version": "2.0.12",
- "source": {
- "type": "git",
- "url": "https://github.com/yiisoft/yii2-debug.git",
- "reference": "93082f46d3568b4431a26f264e0d16a12c42bd50"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/93082f46d3568b4431a26f264e0d16a12c42bd50",
- "reference": "93082f46d3568b4431a26f264e0d16a12c42bd50",
- "shasum": ""
- },
- "require": {
- "yiisoft/yii2": "~2.0.11",
- "yiisoft/yii2-bootstrap": "~2.0.0"
- },
- "type": "yii2-extension",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "yii\\debug\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Qiang Xue",
- "email": "qiang.xue@gmail.com"
- }
- ],
- "description": "The debugger extension for the Yii framework",
- "keywords": [
- "debug",
- "debugger",
- "yii2"
- ],
- "time": "2017-10-09T20:30:01+00:00"
- },
- {
- "name": "yiisoft/yii2-faker",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/yiisoft/yii2-faker.git",
- "reference": "2f548188b2961f097c08623214f5190e3cf2f1ac"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/2f548188b2961f097c08623214f5190e3cf2f1ac",
- "reference": "2f548188b2961f097c08623214f5190e3cf2f1ac",
- "shasum": ""
- },
- "require": {
- "fzaninotto/faker": "~1.4",
- "yiisoft/yii2": "~2.0.0"
- },
- "require-dev": {
- "phpunit/phpunit": "<7"
- },
- "type": "yii2-extension",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "yii\\faker\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Mark Jebri",
- "email": "mark.github@yandex.ru"
- }
- ],
- "description": "Fixture generator. The Faker integration for the Yii framework.",
- "keywords": [
- "Fixture",
- "faker",
- "yii2"
- ],
- "time": "2019-02-18T10:24:17+00:00"
- },
- {
- "name": "yiisoft/yii2-gii",
- "version": "2.0.5",
- "source": {
- "type": "git",
- "url": "https://github.com/yiisoft/yii2-gii.git",
- "reference": "1bd6df6804ca077ec022587905a0d43eb286f507"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/1bd6df6804ca077ec022587905a0d43eb286f507",
- "reference": "1bd6df6804ca077ec022587905a0d43eb286f507",
- "shasum": ""
- },
- "require": {
- "bower-asset/typeahead.js": "0.10.* | ~0.11.0",
- "phpspec/php-diff": ">=1.0.2",
- "yiisoft/yii2": ">=2.0.4",
- "yiisoft/yii2-bootstrap": "~2.0"
- },
- "type": "yii2-extension",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- },
- "asset-installer-paths": {
- "npm-asset-library": "vendor/npm",
- "bower-asset-library": "vendor/bower"
- }
- },
- "autoload": {
- "psr-4": {
- "yii\\gii\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Qiang Xue",
- "email": "qiang.xue@gmail.com"
- }
- ],
- "description": "The Gii extension for the Yii framework",
- "keywords": [
- "code generator",
- "gii",
- "yii2"
- ],
- "time": "2016-03-18T14:09:46+00:00"
- }
- ],
- "aliases": [],
- "minimum-stability": "dev",
- "stability-flags": {
- "hollisho/yii2-redis-pub-sub": 20,
- "vlucas/phpdotenv": 20
- },
- "prefer-stable": false,
- "prefer-lowest": false,
- "platform": {
- "php": ">=5.4.0"
- },
- "platform-dev": []
- }
|