-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 806 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 806 Bytes
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
{
"name" : "rockiger/reactpress",
"description" : "Easily create, build and deploy React apps into your existing WordPress sites.",
"type" : "project",
"license" : "GPL",
"autoload" : {
"psr-4" : {
"ReactPress\\Admin\\" : "admin/",
"ReactPress\\Includes\\" : "includes/",
"ReactPress\\User\\" : "public/"
}
},
"authors" : [{
"name" : "Marco Laspe",
"email" : "marco@rockiger.com"
}
],
"minimum-stability" : "stable",
"require" : {
"php" : ">=7.4"
},
"require-dev" : {
"phpstan/phpstan" : "~2.1",
"phpstan/extension-installer" : "~1.4",
"phpstan/phpstan-beberlei-assert" : "~2.0",
"szepeviktor/phpstan-wordpress" : "~2.0",
"phpunit/phpunit" : "^9",
"brain/monkey" : "2.*"
},
"config" : {
"allow-plugins" : {
"phpstan/extension-installer" : true
}
}
}