-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 946 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": "test-task/meals",
"description": "Business logic library for Application `Order meals by employees`",
"type": "library",
"require": {
"php": "~7.3",
"beberlei/assert": "dev-master",
"myclabs/php-enum": "dev-master",
"codeception/verify": "^2.1"
},
"require-dev": {
"phpspec/prophecy-phpunit": "^2.0@dev",
"phpunit/phpunit": "9.5.x-dev",
"symfony/dependency-injection": "^5.2",
"symfony/config": "^5.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-text",
"test-nc": "phpunit -v --stop-on-error --colors=always"
},
"autoload": {
"psr-4": {
"Meals\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"tests\\Meals\\": "tests"
}
}
}