HummingBirdAnimeClient/composer.json

80 lines
2.1 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",
2021-12-02 16:28:57 -05:00
"Aviat\\Ion\\Tests\\": "tests/Ion"
2017-12-06 14:40:13 -05:00
}
},
"config": {
2023-03-16 13:02:17 -04:00
"lock": false
},
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",
2023-03-16 22:19:56 -04:00
"aviat/banker": "^4.1.2",
2023-03-16 13:02:17 -04:00
"aviat/query": "^4.0.0",
"ext-dom": "*",
2023-03-16 13:02:17 -04:00
"ext-gd": "*",
"ext-intl": "*",
2018-09-27 16:45:12 -04:00
"ext-json": "*",
2023-03-16 13:02:17 -04:00
"ext-mbstring": "*",
2018-09-26 22:31:04 -04:00
"ext-pdo": "*",
2020-12-11 14:26:54 -05:00
"laminas/laminas-diactoros": "^2.5.0",
2021-12-02 16:28:57 -05:00
"laminas/laminas-httphandlerrunner": "^2.1.0",
2020-04-28 12:24:34 -04:00
"maximebf/consolekit": "^1.0.3",
2023-03-16 22:19:56 -04:00
"monolog/monolog": "^3.0.0",
2023-03-16 13:02:17 -04:00
"php": ">= 8.1.0",
2020-04-28 12:24:34 -04:00
"psr/http-message": "^1.0.1",
"symfony/polyfill-mbstring": "^1.0.0",
"symfony/polyfill-util": "^1.0.0",
2021-02-23 17:08:36 -05:00
"tracy/tracy": "^2.8.0",
2020-04-28 12:24:34 -04:00
"yosymfony/toml": "^1.0.4"
2017-12-06 14:40:13 -05:00
},
"require-dev": {
2021-12-02 16:28:57 -05:00
"phpstan/phpstan": "^1.2.0",
2020-12-11 10:14:59 -05:00
"phpunit/phpunit": "^9.5.0",
"roave/security-advisories": "dev-master",
2021-12-02 16:28:57 -05:00
"spatie/phpunit-snapshot-assertions": "^4.1.0"
2017-12-06 14:40:13 -05:00
},
"scripts": {
"build:css": "cd public && npm run build:css && cd ..",
"build:js": "cd public && npm run build:js && cd ..",
2023-03-16 22:19:56 -04:00
"coverage": "php -dpcov.enabled=1 -dpcov.directory=. -dpcov.exclude=\"~vendor~\" ./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:css": "Generate browser css",
"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
}