-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.27 KB
/
Copy pathcomposer.json
File metadata and controls
64 lines (64 loc) · 1.27 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
{
"name": "offsetwp/framework",
"type": "library",
"description": "The WordPress framework",
"license": "MIT",
"authors": [
{
"name": "Jérôme Wohlschlegel",
"email": "jerome.wohlschlegel@gmail.com"
}
],
"homepage": "https://offsetwp.github.io",
"support": {
"issues": "https://github.com/offsetwp/framework/issues",
"source": "https://github.com/offsetwp/framework"
},
"keywords": [
"offsetwp",
"wordpress",
"framework",
"kernel",
"core",
"plugins",
"theme",
"mu-plugin"
],
"autoload": {
"psr-4": {
"OffsetWP\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"OffsetWP\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.5",
"ext-ctype": "*",
"symfony/config": "^8.1",
"symfony/dependency-injection": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^13.0",
"wp-coding-standards/wpcs": "^3.3"
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"lint": "@php vendor/bin/phpcs",
"test": "@php vendor/bin/phpunit --exclude-group known-bug",
"test:all": "@php vendor/bin/phpunit",
"test:bugs": "@php vendor/bin/phpunit --group known-bug"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
}
}