-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.51 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.51 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
{
"name": "spryker/decimal-object",
"description": "PHP decimal handling as value object",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Spryker Systems GmbH",
"homepage": "https://spryker.com"
}
],
"require": {
"php": ">=8.3",
"ext-bcmath": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^12.1.0",
"spryker/code-sniffer": "@stable",
"phpstan/phpstan": "^2.1.0"
},
"autoload": {
"psr-4": {
"Spryker\\DecimalObject\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spryker\\DecimalObject\\Test\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --log-junit tmp/coverage/unitreport.xml --coverage-html tmp/coverage --coverage-clover tmp/coverage/coverage.xml",
"stan": "vendor/bin/phpstan.phar analyse -c tests/phpstan.neon -l 8 src/",
"cs-check": "vendor/bin/phpcs --colors --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml -s -p src/ tests/",
"cs-fix": "vendor/bin/phpcbf --colors --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml -p src/ tests/"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}