-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
38 lines (38 loc) · 1017 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
35
36
37
38
{
"name": "snowio/akeneo-bundle",
"license": "MIT",
"authors": [
{
"name": "Cristian Quiroz",
"email": "[email protected]"
}, {
"name": "Nei Santos",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/akeneo/pim-community-dev.git",
"branch": "master"
}
],
"require": {
"akeneo/pim-community-dev": "1.7.*",
"guzzlehttp/guzzle": "^6.1",
"symfony/config": "^2.7.2",
"symfony/dependency-injection": "^2.7.2",
"symfony/http-kernel": "^2.7.2",
"phpspec/phpspec": "^3.2"
},
"scripts": {
"test": "php vendor/bin/phpspec run --format=dot -c phpspec.yml",
"cs": "phpcs --standard=PSR2 -n ./ --ignore=vendor --report=summary"
},
"autoload": {
"psr-4": {
"Snowio\\Bundle\\CsvConnectorBundle\\": ""
}
},
"minimum-stability": "dev"
}