-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
57 lines (57 loc) · 1.37 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": "real-digital/gtin-validator",
"description": "Real GTIN Validator",
"keywords": [
"GTIN",
"EAN",
"UPC",
"Validator",
"Normalizer",
"Specification"
],
"authors": [
{
"name": "Ilian Ranguelov"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/real-digital/gtin-validator/issues",
"source": "https://github.com/real-digital/gtin-validator"
},
"license": "Apache-2.0",
"type": "library",
"minimum-stability": "stable",
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^7.3 || ^8.0 || ^9.0",
"psalm/plugin-phpunit": "^0.16.1",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.15"
},
"autoload": {
"psr-4": {
"Real\\Validator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Real\\Validator\\Tests\\": "tests"
}
},
"scripts": {
"tests": [
"vendor/bin/phpcs",
"vendor/bin/phpstan analyse --ansi",
"vendor/bin/psalm",
"vendor/bin/phpunit --coverage-text"
]
}
}