-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.41 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
{
"name": "trekky12/life-tracking",
"description": "record android location with tasker, record finances, fuel consumption",
"homepage": "http://www.haegi.org/",
"license": "MIT",
"authors": [
{
"name": "Tobias Haegenlaeuer",
"homepage": "http://www.haegi.org/"
}
],
"require": {
"php": ">=7.1",
"slim/slim": "4.*",
"slim/psr7": "^1.1.0",
"slim/http": "^1.0",
"slim/twig-view": "^3.0.0",
"slim/csrf": "^1.3",
"slim/flash": "^0.4.0",
"php-di/php-di": "^6.0",
"dflydev/fig-cookies": "^3.0",
"twig/twig": "^3.0",
"monolog/monolog": "^2.1",
"phpmailer/phpmailer": "^6.1",
"intervention/image": "^2.5",
"michelf/php-markdown": "^2.0",
"hashids/hashids": "^4.0",
"phpoffice/phpspreadsheet": "^1.9",
"symfony/console": "^5.1",
"robthree/twofactorauth": "^1.7",
"endroid/qr-code": "^4.1",
"minishlink/web-push": "^7.0",
"phpoffice/phpword": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9",
"guzzlehttp/guzzle": "^7.2"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "php vendor/bin/phpunit tests --colors --verbose"
}
}