-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (35 loc) · 934 Bytes
/
composer.json
File metadata and controls
36 lines (35 loc) · 934 Bytes
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
{
"name": "dime/server",
"description": "API provider for Dime Timetracker written in php.",
"licence": "MIT",
"authors": [
{
"name": "Danilo Kühn",
"email": "dk@nogo-software.de"
}
],
"autoload": {
"psr-0": {
"": "src/"
},
"files": [
"src/Dime/Server/Functional.php"
]
},
"repositories": [
{ "type": "vcs", "url": "git@github.com:dime-timetracker/frontend.git"},
{ "type": "vcs", "url": "git@github.com:dime-timetracker/invoice-renderer.git"}
],
"require": {
"php": "^5.6|^7.0",
"slim/slim": "^3.3",
"league/container": "^2.2",
"doctrine/dbal": "^2.5",
"doctrine/migrations": "^1.4",
"dime/frontend": "^1.0",
"dime-timetracker/invoice-renderer": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.6"
}
}