forked from TerrePorter/StringBladeCompiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 736 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 736 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
{
"name": "wpb/string-blade-compiler",
"description": "Laravel Blade String Compiler, render string as blade templates",
"keywords": ["laravel", "blade", "compiler"],
"license": "MIT",
"authors": [
{
"name": "Terre Porter",
"email": "tporter@webpage-builders.com"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/filesystem": "5.1.*",
"illuminate/support": "5.1.*",
"illuminate/view": "5.1.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "^0.9.4"
},
"autoload": {
"psr-4": {
"Wpb\\String_Blade_Compiler\\": "src/"
}
},
"minimum-stability": "dev"
}