-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.79 KB
/
Copy pathcomposer.json
File metadata and controls
65 lines (65 loc) · 1.79 KB
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
{
"name": "bnf/slim-typo3",
"type": "typo3-cms-extension",
"description": "Slim Framework integration for TYPO3",
"keywords": [
"TYPO3",
"extension"
],
"authors": [
{
"name": "Benjamin Franzke",
"email": "benjaminfranzke@gmail.com",
"role": "Developer",
"homepage": "https://bnfr.net"
}
],
"license": "GPL-2.0+",
"require": {
"typo3/cms-core": "^9.5 || ^10.4.2",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"slim/slim": "^3.0",
"bnf/slim3-psr15": "^1.0",
"pimple/pimple": "^3.2",
"bnf/typo3-http-factory": "^0.1.0"
},
"autoload": {
"psr-4": {
"Bnf\\SlimTypo3\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Bnf\\SlimTypo3\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/slim_typo3": "self.version"
},
"require-dev": {
"typo3/testing-framework": "^2.0 || ^4.9 || ^5.0",
"phpspec/prophecy": "^1.7",
"php-coveralls/php-coveralls": "^2.0",
"bnf/typo3-middleware": "~0.3.0",
"phpstan/phpstan": "^0.11.15",
"phpstan/phpstan-strict-rules": "^0.11.1",
"bnf/phpstan-psr-container": "^0.11.0",
"saschaegerer/phpstan-typo3": "dev-feature/phpstan-0-11-compatibility"
},
"config": {
"vendor-dir": ".build/vendor"
},
"extra": {
"typo3/cms": {
"app-dir": ".build",
"web-dir": ".build/web"
},
"branch-alias": {
"dev-master": "0.3.x-dev"
}
},
"scripts": {
"post-autoload-dump": "mkdir -p .build/web/typo3conf/ext/ && ln -snf ../../../.. .build/web/typo3conf/ext/slim_typo3"
}
}