-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 925 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
{
"name": "parsingphase/enigma-simulator",
"description": "Enigma Simulator, as built in the project described at http://tdd-deciphered.com/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Richard George",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"Phase\\Enigma\\": "src/"
}
},
"minimum-stability": "stable",
"require": {
"php": "~5.4|~7.0"
},
"require-dev": {
"pdepend/pdepend": "~2.0",
"phpmd/phpmd": "~2.1",
"phpunit/phpunit": "~5.7",
"phploc/phploc": "~2.0",
"squizlabs/php_codesniffer": "~1.5",
"sebastian/phpcpd": "~2.0",
"theseer/phpdox": "^0.9.0"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}