-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 994 Bytes
/
composer.json
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
{
"name": "ekandreas/bladerunner",
"type": "wordpress-plugin",
"description": "WordPress Blade L5/6/7/8 template engine",
"keywords": ["laravel", "blade", "wordpress"],
"license": "MIT",
"authors": [
{
"name": "Andreas Ek",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"illuminate/config": "^5 || ^6 || ^7 || ^8 || ^9 || ^10",
"illuminate/view": "^5 || ^6 || ^7 || ^8 || ^9 || ^10",
"symfony/yaml": "^3",
"brain/hierarchy": "^2"
},
"require-dev": {
"frozzare/wp-test-suite": "*"
},
"autoload": {
"psr-4": {
"Bladerunner\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bladerunner\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.8-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}