2015-05-22 12:36:26 -04:00
|
|
|
{
|
2017-12-06 14:40:13 -05:00
|
|
|
"name": "aviat/hummingbird-anime-client",
|
|
|
|
"description": "A self-hosted anime/manga client for Kitsu.",
|
|
|
|
"license": "MIT",
|
|
|
|
"autoload": {
|
|
|
|
"files": [
|
2018-01-18 16:21:45 -05:00
|
|
|
"src/constants.php",
|
2017-12-06 14:40:13 -05:00
|
|
|
"src/AnimeClient.php"
|
|
|
|
],
|
|
|
|
"psr-4": {
|
|
|
|
"Aviat\\AnimeClient\\": "src/"
|
2015-05-22 12:36:26 -04:00
|
|
|
}
|
2017-12-06 14:40:13 -05:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"Aviat\\AnimeClient\\Tests\\": "tests/",
|
|
|
|
"CodeIgniter\\": "build/CodeIgniter/"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"require": {
|
2017-12-08 22:32:00 -05:00
|
|
|
"amphp/artax": "^3.0",
|
2017-12-06 14:40:13 -05:00
|
|
|
"aura/html": "^2.0",
|
|
|
|
"aura/router": "^3.0",
|
|
|
|
"aura/session": "^2.0",
|
|
|
|
"aviat/banker": "^1.0.0",
|
2018-01-18 16:21:45 -05:00
|
|
|
"aviat/ion": "^2.3.0",
|
2017-12-06 14:40:13 -05:00
|
|
|
"maximebf/consolekit": "^1.0",
|
|
|
|
"monolog/monolog": "^1.0",
|
|
|
|
"psr/http-message": "~1.0",
|
|
|
|
"psr/log": "~1.0",
|
|
|
|
"yosymfony/toml": "^1.0",
|
|
|
|
"zendframework/zend-diactoros": "^1.3"
|
|
|
|
},
|
|
|
|
"require-dev": {
|
|
|
|
"consolidation/robo": "~1.0",
|
|
|
|
"henrikbjorn/lurker": "^1.1.0",
|
|
|
|
"pdepend/pdepend": "^2.2",
|
|
|
|
"phploc/phploc": "^4.0",
|
|
|
|
"phpmd/phpmd": "^2.4",
|
|
|
|
"phpstan/phpstan": "^0.9.1",
|
|
|
|
"phpunit/phpunit": "^6.0",
|
2018-08-08 10:12:45 -04:00
|
|
|
"roave/security-advisories": "dev-master",
|
2017-12-06 14:40:13 -05:00
|
|
|
"robmorgan/phinx": "^0.9.1",
|
|
|
|
"sebastian/phpcpd": "^3.0",
|
|
|
|
"spatie/phpunit-snapshot-assertions": "^1.2.0",
|
2018-01-10 16:18:06 -05:00
|
|
|
"squizlabs/php_codesniffer": "^3.2.2",
|
2017-12-08 22:32:00 -05:00
|
|
|
"symfony/var-dumper": "^4.0.1",
|
2018-01-10 16:18:06 -05:00
|
|
|
"theseer/phpdox": "^0.11.0",
|
2017-12-08 22:32:00 -05:00
|
|
|
"filp/whoops": "^2.1"
|
2017-12-06 14:40:13 -05:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "vendor/bin/robo build",
|
|
|
|
"build:css": "cd public && npm run build && cd ..",
|
|
|
|
"clean": "vendor/bin/robo clean",
|
|
|
|
"coverage": "phpdbg -qrr -- vendor/bin/phpunit -c build",
|
2018-01-18 16:21:45 -05:00
|
|
|
"phpstan": "phpstan analyse -l 4 -c phpstan.neon src tests ./console index.php",
|
2017-12-06 14:40:13 -05:00
|
|
|
"watch:css": "cd public && npm run watch",
|
|
|
|
"test": "vendor/bin/phpunit"
|
2018-01-18 16:21:45 -05:00
|
|
|
},
|
|
|
|
"scripts-descriptions": {
|
|
|
|
"build": "Generate the api docs",
|
|
|
|
"build:css": "Generate browser css",
|
|
|
|
"clean": "Remove documentation generation files and folders",
|
|
|
|
"coverage": "Generate a test coverage report",
|
|
|
|
"phpstan": "Run PHP Static analysis",
|
|
|
|
"test": "Run the unit tests"
|
2017-12-06 14:40:13 -05:00
|
|
|
}
|
2017-02-17 08:25:19 -05:00
|
|
|
}
|