-
Notifications
You must be signed in to change notification settings - Fork 84
/
composer.json
36 lines (36 loc) · 1.13 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
{
"name": "imdbphp/imdbphp",
"description": "Library for retrieving film and tv information from IMDb",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"Imdb\\": "src/Imdb"
}
},
"require": {
"php": ">=5.6",
"psr/log": "^1.0 || ^2.0",
"ext-curl": "*",
"ext-dom": "*",
"ext-json": "*",
"psr/simple-cache": "^1.0",
"ext-libxml": "*",
"ext-simplexml": "*"
},
"require-dev": {
"cache/array-adapter": "^1.2",
"mockery/mockery": "1.5.1",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.13"
},
"scripts": {
"test": "phpunit -c tests/phpunit.xml tests",
"test:clean": "php tests/clearCache.php && composer test",
"phpstan": "phpstan analyse --memory-limit 256M",
"cs": "php-cs-fixer fix --ansi --verbose --dry-run --diff",
"cs:no-cache": "php-cs-fixer fix --ansi --verbose --dry-run --diff --using-cache=no",
"cs-fix": "php-cs-fixer fix --ansi --verbose --diff",
"style": "@cs-fix"
}
}