Files
plexphp/composer.json

46 lines
1.1 KiB
JSON

{
"name": "lukehagar/plex-api",
"type": "library",
"autoload": {
"psr-4": {
"LukeHagar\\Plex_API\\": "src/"
}
},
"license": "MIT",
"require": {
"php": ">=8.2",
"galbar/jsonpath": ">=3.0",
"guzzlehttp/guzzle": "^7.0",
"speakeasy/serializer": "^4.0.3",
"brick/date-time": ">=0.7.0",
"phpdocumentor/type-resolver": ">=1.8",
"brick/math": ">=0.12.1"
},
"require-dev": {
"laravel/pint": ">=1.21.2",
"phpstan/phpstan": ">=2.1.0",
"phpunit/phpunit": ">=10",
"roave/security-advisories": "dev-latest"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"sort-packages": true,
"process-timeout": 60
},
"scripts": {
"test": [
"./vendor/bin/phpunit --testdox --display-warnings --colors=always"
],
"stan": [
"./vendor/bin/phpstan analyse --memory-limit=2g --error-format=table"
]
},
"script-descriptions": {
"test": "Run PhpUnit test scripts.",
"stan": "Run PhpStan static analysis."
}
}