-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
executable file
·54 lines (54 loc) · 2.03 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
48
49
50
51
52
53
54
{
"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.4 || ^8.0",
"php-tmdb/api": "^4.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/event-dispatcher": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/yaml": "^5.4 || ^6.0",
"twig/twig": "^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": {
"nyholm/psr7": "^1.2",
"slevomat/coding-standard": "^6.4.1",
"squizlabs/php_codesniffer": "^3.5.8",
"php-http/guzzle7-adapter": "^0.1",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^7.5 || ^8.0 || ^9.3",
"symfony/framework-bundle": "^5.4 || ^6.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0",
"vimeo/psalm": "^4.0",
"php-http/cache-plugin": "^1.7"
},
"autoload": {
"psr-4": { "Tmdb\\SymfonyBundle\\": "" }
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
}
}