-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
54 lines (54 loc) · 1.15 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
{
"name": "lochmueller/perfectlightbox",
"type": "typo3-cms-extension",
"description": "",
"autoload": {
"psr-4": {
"BENIEDIEK\\Perfectlightbox\\": "Classes/"
}
},
"keywords": [
"TYPO3 CMS",
"Perfect Lightbox"
],
"authors": [
{
"name": "Ben & Tim",
"role": "Developer",
"homepage": "https://github.com/beniediek"
}
],
"require": {
"php": "^7.0||^7.1||^7.2||^7.3",
"typo3/cms-core": "^8.7||~9.5.17"
},
"replace": {
"typo3-ter/perfectlightbox": "self.version"
},
"homepage": "https://github.com/lochmueller/perfectlightbox",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/lochmueller/perfectlightbox/issues"
},
"require-dev": {
"namelesscoder/typo3-repository-client": "^2.0",
"typo3/testing-framework": "^2.0",
"squizlabs/php_codesniffer": "^2.6",
"phpmd/phpmd": "^2.4",
"scrutinizer/ocular": "^1.3",
"friendsofphp/php-cs-fixer": "^2.14"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"Package": {
"partOfMinimalUsableSystem": true
}
}
}
}