-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.54 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
{
"name": "kksoftwareag/session-popup",
"type": "typo3-cms-extension",
"description": "Configure a popup that appears once a session. based on \"webschmiede/session-popup adapted for TYPO3 10",
"license": "GPL-3.0-or-later",
"version": "3.0.0",
"authors": [
{
"name": "Bernhard Sirlinger",
"role": "Developer"
}
],
"require": {
"php": "^7.2 || ^7.3 || ^7.4 || ^8.0 || ^8.1",
"typo3/cms-core": "^10.4 || ^11.5"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.2",
"phpstan/phpstan": "^1.4.5",
"phpunit/phpunit": "^8.5.21",
"typo3/testing-framework": "^6.15.1"
},
"config": {
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"autoload": {
"psr-4": {
"KKSoftware\\SessionPopup\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"KKSoftware\\SessionPopup\\Tests\\": "Tests"
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"extra": {
"typo3/cms": {
"extension-key": "session_popup",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}