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