-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.62 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.62 KB
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
{
"name": "andreamk/jsonserialize",
"description": "Library that improves object serialization and deserialization via JSON",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Amk\\JsonSerialize\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Amk\\JsonSerialize\\Tests\\": "tests/"
}
},
"config": {
"platform-check": false,
"ignore-platform-req": "php",
"allow-plugins": {
"phpstan/extension-installer": true,
"mcaskill/composer-exclude-files": true
}
},
"extra": {
"exclude-from-files": [
"phpstan/phpstan/bootstrap.php"
]
},
"authors": [{
"name": "Andrea Leoni",
"email": "a.leoni@amkdeveloper.com"
}],
"minimum-stability": "stable",
"require": {
"php": ">=5.4"
},
"require-dev": {
"phpstan/phpstan": "*",
"phpstan/phpstan-phpunit": "*",
"phpstan/extension-installer": "*",
"composer/composer": ">=1.5.6 <1.7.0 || ^1.7.1 || ^2.0.0",
"phpunit/phpunit": "^4 || ^6 || ^9",
"squizlabs/php_codesniffer": "^3",
"mcaskill/composer-exclude-files": "^2.1"
},
"scripts": {
"phpstan": "./vendor/bin/phpstan analyse -c tests/phpstan.neon",
"phpcs": "./vendor/bin/phpcs --standard=./tests/phpsniff_ruleset.xml -v .",
"phpcbf": "./vendor/bin/phpcbf --standard=./tests/phpsniff_ruleset.xml --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 -w -v .",
"phpunit": "./vendor/bin/phpunit tests"
}
}