-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 966 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
39
40
{
"name": "kudashevs/ohce-kata",
"description": "A solution of the Ohce Kata.",
"type": "project",
"keywords": [
"php",
"ohce",
"kata",
"ohce kata"
],
"license": "MIT",
"authors": [
{
"name": "Sergey Kudashev",
"email": "kudashevs@gmail.com"
}
],
"require": {
"php": "^7.4|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"OhceKata\\InsideOut\\": "InsideOut/src/",
"OhceKata\\OutsideIn\\": "OutsideIn/src/"
}
},
"autoload-dev": {
"psr-4": {
"OhceKata\\InsideOut\\Tests\\": "InsideOut/tests/",
"OhceKata\\OutsideIn\\Tests\\": "OutsideIn/tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-html build/coverage"
}
}