-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
41 lines (41 loc) · 1.09 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
{
"name": "t3monitor/t3monitoring_client",
"type": "typo3-cms-extension",
"description": "Client extension for the t3monitoring service",
"license": [
"GPL-2.0-or-later"
],
"require": {
"typo3/cms-core": "^11 || ^12 || ^13",
"typo3/cms-reports": "^11 || ^12 || ^13"
},
"require-dev": {
"typo3/testing-framework": "^7.0.1",
"typo3/coding-standards": "^0.5.3",
"friendsofphp/php-cs-fixer": "^3.13.0"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"autoload": {
"psr-4": {
"T3Monitor\\T3monitoringClient\\": "Classes"
}
},
"scripts": {
"cs": "php ./.Build/bin/php-cs-fixer fix --dry-run -v --config ./Build/php-cs-fixer/php-cs-fixer.php ./",
"csfix": "php ./.Build/bin/php-cs-fixer fix -v --config ./Build/php-cs-fixer/php-cs-fixer.php ./"
},
"extra": {
"typo3/cms": {
"extension-key": "t3monitoring_client",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
}
}