-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (43 loc) · 1.27 KB
/
composer.json
File metadata and controls
44 lines (43 loc) · 1.27 KB
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
{
"name": "sil-project/manufacturing-bundle",
"type": "symfony-bundle",
"description": "",
"license": "LGPL-3.0",
"keywords": [],
"homepage": "https://github.com/sil-project/ManufacturingBundle",
"authors": [
{
"name": "Glenn Cavarlé",
"email": "glenn.cavarle@libre-informatique.fr"
},
{
"name": "Libre Informatique",
"homepage": "http://www.libre-informatique.fr/"
}
],
"autoload": {
"psr-4": {
"Sil\\Bundle\\ManufacturingBundle\\": "src/",
"Sil\\Bundle\\ManufacturingBundle\\Test\\": "tests/"
}
},
"require": {
"php": ">=7.1",
"symfony/symfony": ">=3.2",
"blast-project/core-bundle": "self.version",
"blast-project/base-entities-bundle": "self.version",
"blast-project/resource-bundle": "self.version",
"sil-project/stock-bundle": "self.version"
},
"require-dev": {
"symfony/phpunit-bridge": ">=3.2",
"phpunit/phpunit": "^6.4"
},
"scripts": {
"phpunit-install": [
"wget https://phar.phpunit.de/phpunit-5.7.phar --output-document=bin/phpunit",
"chmod u+x bin/phpunit"
]
},
"suggest": {}
}