forked from PrinsFrank/standards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 804 Bytes
/
Copy pathcomposer.json
File metadata and controls
33 lines (33 loc) · 804 Bytes
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
{
"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/"
}
},
"require": {
"php": "^8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"fix:csfixer": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"fix": [
"@fix:csfixer"
],
"test:unit": "vendor/bin/phpunit --testsuite=unit",
"test": [
"@test:unit"
]
}
}