Files
plexphp/composer.json

50 lines
1.1 KiB
JSON

{
"name": "lukehagar/plex-api",
"type": "library",
"autoload": {
"psr-4": {
"LukeHagar\\Plex_API\\": "src/"
}
},
"license": "MIT",
"repositories": [
{
"type": "git",
"url": "https://github.com/idbentley/serializer"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.0",
"jms/serializer": "dev-deserialize-unions",
"brick/date-time": "^0.7.0",
"phpdocumentor/type-resolver": "^1.8"
},
"require-dev": {
"laravel/pint": "^1.15",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^10",
"rector/rector": "^0.18.13",
"roave/security-advisories": "dev-latest"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"sort-packages": true
},
"scripts": {
"test": [
"./vendor/bin/phpunit --testdox --display-warnings --colors=always"
],
"stan": [
"./vendor/bin/phpstan analyse --memory-limit=2g"
]
},
"script-descriptions": {
"test": "Run PhpUnit test scripts.",
"stan": "Run PhpStan static analysis."
}
}