-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.73 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "personal-galaxy/x",
"type": "project",
"description": "",
"keywords": [],
"homepage": "http://github.com/PersonalGalaxy/X",
"license": "MIT",
"authors": [
{
"name": "Baptiste Langlade",
"email": "[email protected]"
}
],
"support": {
"issues": "http://github.com/PersonalGalaxy/X/issues"
},
"require": {
"php": "~7.2",
"personal-galaxy/identity": "^1.2",
"innmind/neo4j-onm": "^4.3",
"innmind/reflection": "^2.0",
"innmind/compose": "^1.4",
"innmind/cli": "^1.2",
"innmind/command-bus": "^2.1",
"innmind/http-transport": "^3.2",
"symfony/yaml": "^4.0",
"symfony/dotenv": "^4.1",
"personal-galaxy/calendar": "^1.0",
"personal-galaxy/files": "^1.0",
"personal-galaxy/rss": "^1.0",
"innmind/http": "^3.7",
"innmind/http-server": "^1.1",
"innmind/http-framework": "^1.0",
"innmind/templating": "^1.0",
"innmind/http-session": "^1.0",
"paragonie/constant_time_encoding": "^2.2"
},
"autoload": {
"psr-4": {
"PersonalGalaxy\\X\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\PersonalGalaxy\\X\\": "tests/",
"Fixture\\PersonalGalaxy\\X\\": "fixtures/"
}
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"giorgiosironi/eris": "^0.10.0",
"mnapoli/silly": "^1.7",
"innmind/server-control": "^2.4",
"innmind/graphviz": "^1.0",
"symfony/var-dumper": "^4.1",
"filp/whoops": "^2.2"
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always"
}
}