HummingBirdAnimeClient/composer.json

85 lines
2.2 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": {
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",
2021-12-02 16:28:57 -05:00
"aviat/banker": "^3.0.0 || ^4.0.0",
2020-04-23 18:53:51 -04:00
"aviat/query": "^3.0.0",
"danielstjules/stringy": "^3.1.0",
"ext-dom": "*",
"ext-intl": "*",
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 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",
"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/http-message": "^1.0.1",
2021-12-02 16:28:57 -05:00
"psr/log": "*",
2020-12-11 10:14:59 -05:00
"robmorgan/phinx": "^0.12.4",
"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 ..",
2017-12-06 14:40:13 -05:00
"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: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
}