This repository was archived by the owner on Jun 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.46 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.46 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
{
"name": "wordplate/framework",
"description": "The WordPlate framework",
"keywords": [
"boilerplate",
"framework",
"wordplate",
"wordpress"
],
"license": "MIT",
"authors": [
{
"name": "Vincent Klaiber",
"email": "hello@doubledip.se"
},
{
"name": "Chris Andersson",
"email": "hello@puredazzle.se"
}
],
"require": {
"php": "^8.0",
"composer/installers": "^2.1",
"johnpbloch/wordpress-core-installer": "^2.0",
"johnpbloch/wordpress-core": "^6.0",
"roots/bedrock-autoloader": "^1.0",
"roots/wp-password-bcrypt": "^1.1",
"symfony/var-dumper": "^6.0",
"vlucas/phpdotenv": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6"
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true,
"johnpbloch/wordpress-core-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "11.1-dev"
}
},
"autoload": {
"psr-4": {
"WordPlate\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"WordPlate\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}