-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
39 lines (39 loc) · 1.08 KB
/
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
{
"name": "te-cho/compile-blades",
"description": "A Laravel package for compiling blades nested in 1 file into 1 flattened file.",
"keywords": ["views", "compile", "blades", "flatten", "performance", "laravel"],
"authors": [
{
"name": "Abidul Wahab Ramadan",
"email": "abidul.rdmdn@gmail.com"
}
],
"license": "MIT",
"require": {
"php": ">=5.5.9",
"illuminate/contracts": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*",
"illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*",
"illuminate/console": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*",
"illuminate/view": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*",
"symfony/process": "^2.6|^3.1.0|4.1.*"
},
"require-dev": {
"phpunit/phpunit": "~4.8|~5.0",
"mockery/mockery": "0.9.*"
},
"autoload": {
"psr-4": {
"Techo\\CompileBlades\\": "./src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "stable",
"prefer-stable": true
}