forked from queoGmbH/cookie-registry-typo3-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.22 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
{
"name": "queo/cookie-registry-typo3-connector",
"description": "Connector for queo cookie-registry, to handle cookie-preferences.",
"type": "typo3-cms-extension",
"license": "GPL-2.0+",
"authors": [
{ "name": "Maik Starke", "email": "m.starke@queo-group.com" }
],
"config": {
"bin-dir": "bin"
},
"repositories": [
{
"name": "queo/cookie-registry",
"type": "git",
"url": "https://github.com/queoGmbH/cookie-registry"
}
],
"autoload": {
"psr-4": { "Queo\\CookieRegistryConnector\\": "Classes/" }
},
"autoload-dev": {
"psr-4": { "Queo\\CookieRegistryConnector\\Tests\\": "tests/" }
},
"require": {
"queo/cookie-registry": "^1.2"
},
"require-dev": {
"phpmetrics/phpmetrics": "~2",
"phpunit/phpunit": "5.7.*",
"phpstan/phpstan": "^0.12"
},
"scripts": {
"test-phpstan": [
"phpstan analyse -c config\\tests\\phpstan.neon src\\"
],
"test-phpunit": [
"phpunit -c config\\tests\\phpunit.xml"
]
},
"extra": {
"typo3/cms": {
"extension-key": "cookie_registry_connector"
}
}
}