-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.5 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
{
"name": "simonreitinger/contao-time-tracking-bundle",
"type": "contao-bundle",
"description": "Provides time tracking functionality for Contao backend users.",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Simon Reitinger",
"email": "reitinger.simon@gmail.com",
"homepage": "https://github.com/simonreitinger"
}
],
"require": {
"php": "^7.1",
"contao/core-bundle": "~4.4",
"symfony/framework-bundle": "^3.3"
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"doctrine/doctrine-cache-bundle": "^1.3",
"friendsofphp/php-cs-fixer": "^2.6",
"leofeyer/optimize-native-functions-fixer": "^1.1",
"php-http/guzzle6-adapter": "^1.1",
"php-http/message-factory": "^1.0.2",
"phpunit/phpunit": "^5.7.26",
"symfony/phpunit-bridge": "^3.2"
},
"extra": {
"contao-manager-plugin": "SimonReitinger\\TimeTrackingBundle\\ContaoManager\\Plugin"
},
"autoload": {
"classmap": [
"src/ContaoManager/Plugin.php"
],
"psr-4": {
"SimonReitinger\\TimeTrackingBundle\\": "src/"
},
"exclude-from-classmap": [
"src/Resources/contao/"
]
},
"autoload-dev": {
"psr-4": {
"SimonReitinger\\TimeTrackingBundle\\Tests\\": "tests/"
}
}
}