-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
52 lines (52 loc) · 1.21 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
48
49
50
51
52
{
"name": "ama-team/projection-framework",
"license": "MIT",
"authors": [
{
"name": "AMA Team",
"email": "dev@amagroup.ru"
}
],
"autoload": {
"psr-4": {
"AmaTeam\\Image\\Projection\\": "src/"
}
},
"autoload-dev" :{
"psr-4": {
"AmaTeam\\Image\\Projection\\Test\\": "tests/"
}
},
"require": {
"php": ">= 5.6",
"league/flysystem": "^1.0",
"psr/log": "^1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.1",
"codeception/codeception": "^2.3",
"phpmd/phpmd": "^2.6",
"imagine/imagine": "^0.7.1",
"phpunit/phpcov": ">= 3.1.0 < 5.0",
"consolidation/robo": "^1.1",
"allure-framework/allure-codeception": "^1.2",
"league/flysystem-vfs": "^1.0",
"symfony/serializer": "^3.3",
"php-coveralls/php-coveralls": "^1.0",
"symfony/property-access": "^3.3",
"monolog/monolog": "^1.23"
},
"suggest": {
"ext/gd": "Preferred image processing backend",
"ext/imagick": "Slower but still applicable processing backend"
},
"scripts": {
"test:setup": "robo test:setup",
"test": "robo test",
"test:report": "robo test:report",
"lint": "robo lint"
},
"config": {
"bin-dir": "bin"
}
}