-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
57 lines (57 loc) · 1.72 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
55
56
57
{
"name": "php-collective/decimal-object",
"description": "PHP decimal handling as value object",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "The PHP Collective",
"homepage": "https://github.com/php-collective"
},
{
"name": "Spryker Systems GmbH",
"homepage": "https://spryker.com"
}
],
"require": {
"php": ">=8.1",
"ext-bcmath": "*",
"ext-json": "*"
},
"require-dev": {
"php-collective/code-sniffer": "^0.2.1",
"phpstan/phpstan": "^1.0.0",
"phpunit/phpunit": "^10.3.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"PhpCollective\\DecimalObject\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpCollective\\DecimalObject\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"lowest": "validate-prefer-lowest",
"lowest-setup": "composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction && cp composer.json composer.backup && composer require --dev dereuromark/composer-prefer-lowest && mv composer.backup composer.json",
"stan": "phpstan analyse",
"test": "phpunit",
"test-coverage": "phpunit --log-junit tmp/coverage/unitreport.xml --coverage-html tmp/coverage --coverage-clover tmp/coverage/coverage.xml"
}
}