HummingBirdAnimeClient/composer.json

96 lines
2.5 KiB
JSON
Raw Normal View History

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",
2020-04-07 21:53:53 -04:00
"authors": [
{
"name": "Timothy J. Warren",
"email": "tim@timshomepage.net",
"homepage": "https://timshomepage.net",
"role": "Developer"
}
],
2017-12-06 14:40:13 -05:00
"autoload": {
"files": [
"src/Ion/functions.php",
"src/AnimeClient/constants.php",
"src/AnimeClient/AnimeClient.php"
2017-12-06 14:40:13 -05:00
],
"psr-4": {
"Aviat\\": "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/AnimeClient",
"Aviat\\Ion\\Tests\\": "tests/Ion",
2017-12-06 14:40:13 -05:00
"CodeIgniter\\": "build/CodeIgniter/"
}
},
"config": {
2020-04-07 21:53:53 -04:00
"lock": false,
"platform": {
2021-02-03 09:46:36 -05:00
"php": "8"
}
},
2017-12-06 14:40:13 -05:00
"require": {
"amphp/amp": "^2.5.0",
"amphp/http-client": "^4.5.0",
2020-04-28 12:24:34 -04:00
"aura/html": "^2.5.0",
"aura/router": "^3.1.0",
"aura/session": "^2.1.0",
2020-05-08 19:15:21 -04:00
"aviat/banker": "^3.1.1",
2020-04-23 18:53:51 -04:00
"aviat/query": "^3.0.0",
"danielstjules/stringy": "^3.1.0",
"ext-dom": "*",
"ext-iconv": "*",
2018-09-27 16:45:12 -04:00
"ext-json": "*",
"ext-gd": "*",
2018-09-26 22:31:04 -04:00
"ext-pdo": "*",
2020-12-11 10:14:59 -05:00
"filp/whoops": "^2.1",
2020-12-11 14:26:54 -05:00
"laminas/laminas-diactoros": "^2.5.0",
2020-04-28 12:24:34 -04:00
"laminas/laminas-httphandlerrunner": "^1.1.0",
"maximebf/consolekit": "^1.0.3",
"monolog/monolog": "^2.0.2",
2021-02-23 13:10:26 -05:00
"php": ">= 8.0.0",
2020-04-28 12:24:34 -04:00
"psr/container": "^1.0.0",
"psr/http-message": "^1.0.1",
"psr/log": "^1.1.3",
2020-12-11 10:14:59 -05:00
"robmorgan/phinx": "^0.12.4",
2021-02-23 13:10:26 -05:00
"symfony/polyfill-intl-idn": "^1.0.0",
2020-12-11 10:14:59 -05:00
"symfony/var-dumper": "^5.0.7",
2020-04-28 12:24:34 -04:00
"yosymfony/toml": "^1.0.4"
2017-12-06 14:40:13 -05:00
},
"require-dev": {
2020-04-28 12:24:34 -04:00
"pdepend/pdepend": "^2.",
2020-12-11 10:14:59 -05:00
"phploc/phploc": "^7.0.0",
2020-04-28 12:24:34 -04:00
"phpmd/phpmd": "^2.8.2",
"phpstan/phpstan": "^0.12.19",
2020-12-11 10:14:59 -05:00
"phpunit/phpunit": "^9.5.0",
"roave/security-advisories": "dev-master",
2020-12-11 10:14:59 -05:00
"sebastian/phpcpd": "^6.0.0",
2020-04-10 15:38:32 -04:00
"spatie/phpunit-snapshot-assertions": "^4.1.0",
2020-12-11 10:14:59 -05:00
"squizlabs/php_codesniffer": "^3.5.4"
2017-12-06 14:40:13 -05:00
},
"scripts": {
"build": "vendor/bin/robo build",
"build:css": "cd public && npm run build:css && cd ..",
"build:js": "cd public && npm run build:js && cd ..",
2017-12-06 14:40:13 -05:00
"clean": "vendor/bin/robo clean",
"coverage": "phpdbg -qrr -- vendor/bin/phpunit -c build",
2019-12-06 15:46:56 -05:00
"phpstan": "phpstan analyse -c phpstan.neon",
"watch:css": "cd public && npm run watch:css",
"watch:js": "cd public && npm run watch:js",
2019-12-06 15:46:56 -05:00
"test": "vendor/bin/phpunit -c build --no-coverage",
"test-update": "vendor/bin/phpunit -c build --no-coverage -d --update-snapshots"
},
"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
}