You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.2 KiB
84 lines
2.2 KiB
{ |
|
"name": "aviat/hummingbird-anime-client", |
|
"description": "A self-hosted anime/manga client for Kitsu.", |
|
"license": "MIT", |
|
"authors": [ |
|
{ |
|
"name": "Timothy J. Warren", |
|
"email": "tim@timshomepage.net", |
|
"homepage": "https://timshomepage.net", |
|
"role": "Developer" |
|
} |
|
], |
|
"autoload": { |
|
"files": [ |
|
"src/Ion/functions.php", |
|
"src/AnimeClient/constants.php", |
|
"src/AnimeClient/AnimeClient.php" |
|
], |
|
"psr-4": { |
|
"Aviat\\": "src/" |
|
} |
|
}, |
|
"autoload-dev": { |
|
"psr-4": { |
|
"Aviat\\AnimeClient\\Tests\\": "tests/AnimeClient", |
|
"Aviat\\Ion\\Tests\\": "tests/Ion" |
|
} |
|
}, |
|
"config": { |
|
"lock": false, |
|
"platform": { |
|
"php": "8" |
|
} |
|
}, |
|
"require": { |
|
"amphp/amp": "^2.5.0", |
|
"amphp/http-client": "^4.5.0", |
|
"aura/html": "^2.5.0", |
|
"aura/router": "^3.1.0", |
|
"aura/session": "^2.1.0", |
|
"aviat/banker": "^3.0.0 || ^4.0.0", |
|
"aviat/query": "^3.0.0", |
|
"danielstjules/stringy": "^3.1.0", |
|
"ext-dom": "*", |
|
"ext-intl": "*", |
|
"ext-json": "*", |
|
"ext-gd": "*", |
|
"ext-pdo": "*", |
|
"laminas/laminas-diactoros": "^2.5.0", |
|
"laminas/laminas-httphandlerrunner": "^2.1.0", |
|
"maximebf/consolekit": "^1.0.3", |
|
"monolog/monolog": "^2.0.2", |
|
"php": ">= 8.0.0", |
|
"psr/http-message": "^1.0.1", |
|
"psr/log": "*", |
|
"robmorgan/phinx": "^0.12.4", |
|
"symfony/polyfill-mbstring": "^1.0.0", |
|
"symfony/polyfill-util": "^1.0.0", |
|
"tracy/tracy": "^2.8.0", |
|
"yosymfony/toml": "^1.0.4" |
|
}, |
|
"require-dev": { |
|
"phpstan/phpstan": "^1.2.0", |
|
"phpunit/phpunit": "^9.5.0", |
|
"roave/security-advisories": "dev-master", |
|
"spatie/phpunit-snapshot-assertions": "^4.1.0" |
|
}, |
|
"scripts": { |
|
"build:css": "cd public && npm run build:css && cd ..", |
|
"build:js": "cd public && npm run build:js && cd ..", |
|
"coverage": "phpdbg -qrr -- vendor/bin/phpunit -c build", |
|
"phpstan": "phpstan analyse -c phpstan.neon", |
|
"watch:css": "cd public && npm run watch:css", |
|
"watch:js": "cd public && npm run watch:js", |
|
"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" |
|
} |
|
}
|
|
|