-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 1.97 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "remind/contacts",
"description": "REMIND - Contacts",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3",
"CMS",
"REMIND",
"contacts"
],
"license": [
"GPL-3.0-or-later"
],
"authors": [
{
"name": "REMIND GmbH",
"email": "[email protected]"
},
{
"name": "David Mellen",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Remind\\Contacts\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Remind\\Contacts\\Tests\\": "Tests/"
}
},
"config": {
"optimize-autoloader": true,
"apcu-autoloader": true,
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"remind/extbase": "^1.1 | dev-develop",
"remind/headless": "^3.2 | dev-develop",
"php": "^8.2",
"sabre/vobject": "^4.5",
"typo3/cms-core": "^12.4"
},
"require-dev": {
"slevomat/coding-standard": "^8.14",
"squizlabs/php_codesniffer": "^3.7"
},
"repositories": [
{
"type": "composer",
"url": "https://composer.remind.de/"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".build/web",
"extension-key": "rmnd_contacts"
}
},
"scripts": {
"phpcs": "@php ./.build/bin/phpcs --standard=.build/phpcs.xml --extensions=php --ignore=.build --report=full -n .",
"phpcbf": "@php ./.build/bin/phpcbf --standard=.build/phpcs.xml --extensions=php --ignore=.build ."
}
}