-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 841 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
{
"name" : "cerealean/unit-testing-calculator",
"description" : "A unit testing example using a calculator",
"license" : "MIT",
"minimum-stability" : "dev",
"authors" : [
{
"name" : "Michael Crawford",
"homepage" : "https://github.com/cerealean",
"email" : "[email protected]",
"role" : "Developer"
}
],
"require" : {
"php" : ">=5.6"
},
"require-dev" : {
"phpunit/phpunit" : "4.2.6",
"phake/phake" : "1.0.5"
},
"autoload" : {
"psr-4" : {
"Calculator\\" : "./src/Calculator"
}
},
"autoload-dev" : {
"psr-4" : {
"Calculator\\Test\\" : "./test/Calculator"
}
}
}