forked from kimai/kimai1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.01 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
{
"name": "kimai/kimai",
"type": "project",
"description": "Time Tracking with PHP",
"keywords": ["timetracking", "projectmanagement", "invoicing"],
"homepage": "https://github.com/kimai/kimai",
"license": "GPL-3.0",
"version": "1.1.0",
"authors": [
{ "name": "Severin Leonhardt", "homepage": "https://github.com/ServiusHack" },
{ "name": "Kevin Papst", "homepage": "https://github.com/kevinpapst" }
],
"config": {
"vendor-dir": "libraries"
},
"require": {
"php": ">=5.4.0",
"tecnickcom/tcpdf": "6.2.12",
"zendframework/zendframework1": "^1.12",
"phpoffice/phpexcel": "1.8.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"malsup/form": "3.51"
},
"autoload": {
"classmap" : [
"libraries/TinyButStrong"
],
"psr-0": {
"Kimai_": "libraries/"
},
"files": [
"libraries/phpclasses/ultimatemysql/mysql.class.php"
]
}
}