-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.26 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-standard-iso/iso-639-1",
"type": "library",
"description": "Standard ISO 639 Part1 transposed to PHP.",
"license": "BSD-3-Clause",
"keywords": [
"iso",
"international standard organisation",
"standard",
"iso639-1",
"language"
],
"homepage": "https://github.com/php-standard-iso/iso-639-1",
"support": {
"email": "[email protected]"
},
"config": {
"process-timeout": 600,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"authors": [
{
"name": "gary gitton",
"homepage": "http://www.github.com/garygitton"
}
],
"autoload": {
"psr-4": {
"Iso639\\Part1\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Iso639Test\\Part1\\": "test/"
}
},
"require": {
"php": "^7.0 || ~8.0.0 || ~8.1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.23 || ^9.5.13 || dev-master"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"static-analysis": "psalm --shepherd --stats"
}
}