-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
43 lines (43 loc) · 1.21 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
{
"name": "prinsfrank/standards",
"type": "library",
"description": "A collection of standards as PHP Enums: ISO3166, ISO4217, ISO639...",
"license": "MIT",
"autoload": {
"psr-4": {
"PrinsFrank\\Standards\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PrinsFrank\\Standards\\Tests\\": "tests/",
"PrinsFrank\\Standards\\Dev\\": "dev/"
}
},
"require": {
"php": "^8.1 || ^8.2"
},
"require-dev": {
"ext-mbstring": "*",
"ext-intl": "*",
"ext-dom": "*",
"friendsofphp/php-cs-fixer": "^3.8",
"phpunit/phpunit": "^9.5",
"symfony/panther": "^2.0",
"dbrekelmans/bdi": "^1.0",
"phpstan/phpstan": "^1.8",
"composer/composer": "^2.3"
},
"scripts": {
"cs": "php-cs-fixer fix --allow-risky=yes --dry-run",
"cs:fix": "php-cs-fixer fix --allow-risky=yes",
"stan": "phpstan analyse",
"unit": "phpunit --testsuite=Unit",
"test": [
"@unit",
"@cs"
],
"update-spec": "PrinsFrank\\Standards\\Dev\\SpecUpdater::update",
"detect-drivers": "vendor/bin/bdi detect drivers"
}
}