-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
34 lines (34 loc) · 866 Bytes
/
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
{
"name": "sokil/php-merchant-product-feed",
"description": "Builder of Facebook and Google product feeds",
"type": "library",
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": ">=7.5.20",
"php-coveralls/php-coveralls": "^2.1"
},
"license": "MIT",
"authors": [
{
"name": "Dmytro Sokil",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Sokil\\Merchant\\ProductFeed\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sokil\\Merchant\\ProductFeed\\": "src/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"cover": "./vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml",
"coveralls": "./vendor/bin/php-coveralls -v"
}
}