forked from real-digital/gtin-validator
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
50 lines (47 loc) · 1.03 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
{
"name": "metro-markets/gtin-validator",
"description": "Fork of Real GTIN Validator",
"keywords": [
"GTIN",
"EAN",
"UPC",
"Validator",
"Normalizer",
"Specification"
],
"authors": [
{
"name": "Ilian Ranguelov"
}
],
"support": {
"issues": "https://github.com/METRO-Markets/gtin-validator/issues",
"source": "https://github.com/METRO-Markets/gtin-validator"
},
"license": "Apache-2.0",
"type": "library",
"minimum-stability": "stable",
"config": {
"sort-packages": true
},
"require": {
"php": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.3 || ^8.0",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": {
"Real\\Validator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Real\\Validator\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}