-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (38 loc) · 1016 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
41
42
43
44
{
"name": "samburns/codekata-romannumerals",
"license": "MIT",
"require": {
"php": "^8.1",
"symfony/console": "^6.3",
"php-di/php-di": "^7.0",
"psr/container": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpspec/phpspec": "^7.4",
"behat/behat": "^3.13",
"friendsofphp/php-cs-fixer": "^3.25"
},
"autoload": {
"psr-4": {
"RomanNumeralsKata\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BehatContexts\\": "tests/behat/features/bootstrap",
"PhpUnitTests\\": "tests/phpunit"
}
},
"scripts": {
"test": [
"./vendor/bin/behat",
"./vendor/bin/phpspec run",
"./vendor/bin/phpunit"
],
"coding-standards": [
"./vendor/bin/php-cs-fixer fix src --rules=@PSR12",
"./vendor/bin/php-cs-fixer fix tests --rules=@PSR12"
]
}
}