-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
90 lines (90 loc) · 2.6 KB
/
Copy pathcomposer.json
File metadata and controls
90 lines (90 loc) · 2.6 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
{
"name": "sympress/kernel",
"description": "WordPress kernel and shared service container built on Symfony DependencyInjection.",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Brian Schäffner",
"email": "brian.schaeffner@sympress.de",
"role": "Developer"
}
],
"require": {
"php": ">=8.4.1",
"ext-dom": "*",
"ext-json": "*",
"psr/clock": "^1.0",
"psr/event-dispatcher": "^1.0",
"psr/log": "^3.0",
"symfony/config": "^8.0",
"symfony/console": "^8.0",
"symfony/clock": "^8.0",
"symfony/dependency-injection": "^8.1",
"symfony/event-dispatcher": "^8.0",
"symfony/expression-language": "^8.0",
"symfony/filesystem": "^8.0",
"symfony/http-foundation": "^8.1",
"symfony/http-kernel": "^8.1",
"symfony/routing": "^8.0",
"symfony/service-contracts": "^3.6",
"symfony/yaml": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"sympress/coding-standards": "dev-main"
},
"autoload": {
"psr-4": {
"SymPress\\Kernel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SymPress\\Kernel\\Tests\\": "tests/",
"SymPress\\Kernel\\Tests\\Fixtures\\AttributeBundle\\Src\\": "tests/Fixtures/AttributeBundle/src/",
"SymPress\\Kernel\\Tests\\Fixtures\\HookBundle\\Src\\": "tests/Fixtures/HookBundle/src/",
"SymPress\\Kernel\\Tests\\Fixtures\\RouteBundle\\Src\\": "tests/Fixtures/RouteBundle/src/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
},
"scripts": {
"cs": [
"Composer\\Config::disableProcessTimeout",
"phpcs --standard=phpcs.xml.dist"
],
"cs:fix": [
"Composer\\Config::disableProcessTimeout",
"phpcbf --standard=phpcs.xml.dist"
],
"tests": [
"Composer\\Config::disableProcessTimeout",
"phpunit --configuration phpunit.xml.dist --no-coverage"
],
"qa": [
"@cs",
"@tests"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"repositories": [
{
"type": "path",
"url": "./../*",
"options": {
"symlink": true
}
}
],
"minimum-stability": "dev",
"prefer-stable": true
}