-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 1.07 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
{
"name": "wsw/money",
"description": "Value Object Money",
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Ronaldo M. Rodrigues",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"ext-bcmath": "*"
},
"require-dev": {
"rdehnhardt/var-dumper": "^1.1",
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0",
"sebastian/phpcpd": "^3.0",
"fzaninotto/faker": "^1.6"
},
"autoload": {
"psr-4": {
"WSW\\Money\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WSW\\Money\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"check-style": "vendor/bin/phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"fix-style": "vendor/bin/phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src"
}
}