forked from CodelyTV/php-finder_refactoring-kata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 881 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": "codelytv/incomprehensible-finder-refactoring",
"description": "Incomprehensible Finder Refactoring Kata created by K. Scott Allen. PHP translation by CodelyTV.",
"type": "project",
"require": {
"php": "^7.0"
},
"require-dev": {
"symfony/var-dumper": "^3.1",
"phpunit/phpunit": "^5.5",
"jakub-onderka/php-parallel-lint": "^0.9"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"CodelyTV\\FinderKata\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodelyTV\\FinderKataTest\\": "tests/"
}
},
"config": {
"optimize-autoloader": true
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"phpunit --configuration phpunit.xml"
]
}
}