-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 855 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
{
"name": "florianwolters/code-kata",
"description": "A code kata is an exercise in programming which helps a programmer hone their skills through practice and repetition.",
"type": "library",
"keywords": ["code kata", "educational"],
"homepage": "http://github.com/FlorianWolters/PHP-CodeKata",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Florian Wolters",
"email": "[email protected]",
"homepage": "http://blog.florianwolters.de",
"role": "Developer"
}
],
"require": {
"php": ">=5.4"
},
"require-dev": {
"phpunit/phpunit": "3.*",
"behat/behat": "2.*"
},
"autoload": {
"psr-0": {
"FlorianWolters": [
"src/php"
]
}
},
"config": {
"bin-dir": "bin/"
}
}