-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·44 lines (44 loc) · 1.14 KB
/
composer.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.14 KB
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
{
"name": "ethereal/infinitytable",
"type": "project",
"description": "App for managing table-top RPG games",
"license": "proprietary",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/mathus13/SimpleTable.git"
},
{
"type": "vcs",
"url": "https://github.com/mathus13/SimpleHooks.git"
},
{
"type": "vcs",
"url": "https://github.com/mathus13/SimpleConfig.git"
},
{
"type": "vcs",
"url": "https://github.com/mathus13/SimpleCache.git"
}
],
"require": {
"php": ">=5.3.9",
"monolog/monolog": "1.*",
"slim/slim": "^3.0@RC",
"twig/twig": "^2.0@dev",
"guzzlehttp/guzzle": "^6.1@dev",
"ethereal/SimpleHooks": "0.1.x-dev",
"ethereal/SimpleTable": "0.1.x-dev",
"bshaffer/oauth2-server-php": "^1.8",
"ramsey/uuid": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "~4.8"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Infinity\\": "lib"
}
}
}