-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.06 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
42
{
"name": "personal-galaxy/files",
"type": "library",
"description": "Model to store files",
"keywords": [],
"homepage": "http://github.com/PersonalGalaxy/Files",
"license": "MIT",
"authors": [
{
"name": "Baptiste Langlade",
"email": "[email protected]"
}
],
"support": {
"issues": "http://github.com/PersonalGalaxy/Files/issues"
},
"require": {
"php": "~7.2",
"innmind/event-bus": "^2.1",
"innmind/filesystem": "^3.1",
"innmind/immutable": "^2.8",
"innmind/specification": "^1.0"
},
"autoload": {
"psr-4": {
"PersonalGalaxy\\Files\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\PersonalGalaxy\\Files\\": "tests/",
"Fixture\\PersonalGalaxy\\Files\\": "fixtures/"
}
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"giorgiosironi/eris": "^0.9.0"
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always"
}
}