-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
86 lines (86 loc) · 2.64 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ssch/typo3-psr-cache-adapter",
"description": "Provide Adapters for TYPO3 to be compatible with PSR-6",
"type": "typo3-cms-extension",
"keywords": ["caching", "psr6"],
"license": "MIT",
"authors": [
{
"name": "Sebastian Schreiber",
"email": "breakpoint@schreibersebastian.de"
}
],
"require": {
"php": "^7.4 || ^8.0",
"typo3/cms-core": "^10.4 || ^11.4 || ^12.4",
"psr/cache": "^1.0 || ^2.0",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"symplify/easy-coding-standard": "^12.0",
"typo3/testing-framework": "^6.16 || ^7.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.8",
"saschaegerer/phpstan-typo3": "^1.8",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-phpunit": "^1.2",
"phpstan/phpstan-strict-rules": "^1.4"
},
"provide": {
"psr/cache-implementation": "2.0 || 3.0",
"psr/simple-cache-implementation": "1.0"
},
"autoload": {
"psr-4": {
"Ssch\\Cache\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Ssch\\Cache\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"preferred-install": {
"typo3/cms": "source",
"typo3/cms-core": "source",
"*": "dist"
},
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/typo3_psr_cache_adapter ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/typo3_psr_cache_adapter"
],
"analyze": "phpstan analyse --ansi --memory-limit=-1",
"test-php-lint": [
".Build/bin/parallel-lint ./Classes/",
".Build/bin/parallel-lint ./Tests/",
".Build/bin/parallel-lint ./Configuration/"
],
"lint-php": "parallel-lint Tests Classes",
"check-style": "ecs check --ansi",
"fix-style": [
"ecs check --fix --ansi"
],
"test-functional": [
".Build/bin/phpunit --configuration Tests/Build/FunctionalTests.xml"
]
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
},
"typo3/cms": {
"extension-key": "typo3_psr_cache_adapter",
"web-dir": ".Build/Web"
}
}
}