-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
126 lines (126 loc) · 4.34 KB
/
Copy pathcomposer.json
File metadata and controls
126 lines (126 loc) · 4.34 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "sympress/framework-bundle",
"description": "SymPress FrameworkBundle bridge with Symfony Cache integration and WordPress object-cache support.",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Brian Schaffner",
"email": "brian.schaeffner@sympress.de",
"role": "Developer"
}
],
"require": {
"php": "^8.5",
"psr/cache": "^3.0",
"psr/simple-cache": "^3.0",
"symfony/cache": "^8.1",
"symfony/cache-contracts": "^3.6",
"symfony/config": "^8.1",
"symfony/console": "^8.1",
"symfony/dependency-injection": "^8.1",
"symfony/error-handler": "^8.1",
"symfony/expression-language": "^8.0",
"symfony/filesystem": "^8.0",
"symfony/framework-bundle": "^8.1",
"symfony/http-kernel": "^8.1",
"symfony/routing": "^8.0",
"symfony/service-contracts": "^3.6",
"symfony/yaml": "^8.0",
"sympress/kernel": "^1.0@dev"
},
"require-dev": {
"brain/monkey": "^2.6",
"sympress/qa": "dev-main"
},
"suggest": {
"symfony/asset": "Enables FrameworkBundle asset package integration.",
"symfony/asset-mapper": "Enables asset mapper configuration.",
"symfony/form": "Enables FrameworkBundle form integration.",
"symfony/html-sanitizer": "Enables HTML sanitizer configuration.",
"symfony/http-client": "Enables HTTP client configuration.",
"symfony/lock": "Enables lock store configuration.",
"symfony/mailer": "Enables mailer configuration.",
"symfony/messenger": "Enables messenger buses, transports and cache early-expiration dispatch.",
"symfony/notifier": "Enables notifier, chatter and texter configuration.",
"symfony/process": "Enables process messenger integration.",
"symfony/property-access": "Enables property access cache integration.",
"symfony/property-info": "Enables property info extractors.",
"symfony/rate-limiter": "Enables rate limiter configuration.",
"symfony/scheduler": "Enables scheduler configuration.",
"symfony/security-csrf": "Enables CSRF token services.",
"symfony/semaphore": "Enables semaphore store configuration.",
"symfony/serializer": "Enables serializer configuration.",
"symfony/translation": "Enables translator configuration.",
"symfony/uid": "Enables UID and UUID services.",
"symfony/validator": "Enables validator configuration.",
"symfony/web-link": "Enables web link support.",
"symfony/webhook": "Enables webhook and remote-event configuration.",
"symfony/workflow": "Enables workflow configuration."
},
"autoload": {
"psr-4": {
"SymPress\\Framework\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SymPress\\Framework\\Tests\\": "tests/"
}
},
"extra": {
"kernel": {
"bundle": "SymPress\\Framework\\SymPressFrameworkBundle",
"entry": "framework-bundle"
}
},
"scripts": {
"cs": [
"Composer\\Config::disableProcessTimeout",
"qa cs"
],
"cs:fix": [
"Composer\\Config::disableProcessTimeout",
"qa cs:fix"
],
"static-analysis": [
"Composer\\Config::disableProcessTimeout",
"qa static-analysis"
],
"tests": [
"Composer\\Config::disableProcessTimeout",
"qa tests"
],
"tests:backends": [
"Composer\\Config::disableProcessTimeout",
"phpunit --configuration phpunit.xml.dist --group live-cache --no-coverage"
],
"test": [
"@tests"
],
"qa": [
"@cs",
"@static-analysis",
"@tests"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"repositories": [
{
"type": "path",
"url": "./../*",
"options": {
"symlink": true
}
}
],
"minimum-stability": "dev",
"prefer-stable": true
}