-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 963 Bytes
/
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
{
"name": "axel-kummer/aku-logbook",
"description": "TYPO3 Extension to send logs to the logbook server",
"type": "typo3-cms-extension",
"require": {
"typo3/cms": ">=6.2.30|<=8.7.99",
"axel-kummer/logbook-php": "~0.2",
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Axel Seemann",
"email": "[email protected]"
}
],
"replace": {
"typo3-ter/aku-logbook": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "aku_logbook"
},
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
"AxelKummer\\AkuLogbook\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"AxelKummer\\AkuLogbook\\Tests\\": "Tests"
}
}
}