-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
executable file
·47 lines (47 loc) · 1.84 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "php-tmdb/symfony",
"license": "MIT",
"type": "symfony-bundle",
"description": "Symfony Bundle for TMDB (The Movie Database) API. Provides easy access to the php-tmdb/api library.",
"homepage": "https://github.com/php-tmdb/symfony",
"keywords": ["tmdb", "api", "php","wrapper", "movie", "cinema", "tv", "tv show", "tvdb", "symfony", "symfony4", "symfony5"],
"authors": [
{
"name": "Michael Roterman",
"homepage": "http://wtfz.net",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^7.4 || ^8.0",
"php-tmdb/api": "^4",
"symfony/config": "^4.4 || <6",
"symfony/dependency-injection": "^4.4 || <6",
"symfony/event-dispatcher": "^4.4 || <6",
"symfony/http-kernel": "^4.4.13 || >=5.1.5",
"symfony/phpunit-bridge": "^4.4",
"symfony/yaml": "^4.4 || ^5.0",
"twig/twig": "^2.0 || ^3.0"
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml coverage",
"test-coverage": "php -d xdebug.mode=coverage vendor/bin/phpunit --coverage-html build/coverage",
"test-cs": "vendor/bin/phpcs",
"test-phpstan": "vendor/bin/phpstan analyse -c phpstan.neon . --level 7 --no-progress",
"test-psalm": "vendor/bin/psalm --show-info=true ."
},
"require-dev": {
"slevomat/coding-standard": "^6.4.1",
"squizlabs/php_codesniffer": "^3.5.8",
"php-http/guzzle7-adapter": "^0.1",
"phpstan/phpstan": "^0.12.18",
"phpunit/phpunit": "^7.5 || ^8.0 || ^9.3",
"symfony/framework-bundle": "^4.4 || ^5.0",
"vimeo/psalm": "^4",
"php-http/cache-plugin": "^1.7"
},
"autoload": {
"psr-4": { "Tmdb\\SymfonyBundle\\": "" }
}
}