forked from lamoda/gs1-barcode-parser
-
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) · 776 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 776 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": "lamoda/gs1-barcode-parser",
"description": "GS1 Barcode parser and validator compatible with official GS1 documentation",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lamoda developers",
"homepage": "https://tech.lamoda.ru/"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.1"
},
"autoload": {
"psr-4": {
"Lamoda\\GS1Parser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lamoda\\GS1Parser\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"phpunit/phpunit": "^7.5 | ^8.2"
}
}