-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 1.19 KB
/
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
{
"name": "jimmyoak/utilities",
"authors": [
{
"name": "Adrián Robles",
"email": "[email protected]",
"homepage": "http://github.com/jimmyoak"
}
],
"license": "MIT",
"keywords": ["utilities", "collection", "jimmy", "jimmyoak"],
"require": {
"php": ">=5.5.0",
"ramsey/uuid": "^3.5"
},
"require-dev": {
"phpunit/phpunit": ">=3.7.0",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"JimmyOak\\Collection\\": "src/Collection/",
"JimmyOak\\DataType\\": "src/DataType/",
"JimmyOak\\Event\\": "src/Event/",
"JimmyOak\\Exception\\": "src/Exception/",
"JimmyOak\\Utility\\": "src/Utility/"
}
},
"autoload-dev": {
"psr-4": {
"JimmyOak\\Test\\Collection\\": "test/Collection/",
"JimmyOak\\Test\\DataType\\": "test/DataType/",
"JimmyOak\\Test\\Event\\": "test/Event/",
"JimmyOak\\Test\\Utility\\": "test/Utility/",
"JimmyOak\\Test\\Value\\": "test/Value/"
}
},
"config": {
"bin-dir": "bin/"
}
}