-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 825 Bytes
/
Copy pathcomposer.json
File metadata and controls
32 lines (32 loc) · 825 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
{
"name": "evertt/slade",
"description": "A templating for Laravel inspired by Ruby Slim and Laravel Blade",
"keywords": ["slade", "templating engine", "laravel", "slim", "blade", "templating"],
"license": "MIT",
"support": {
"issues": "https://github.com/Evertt/Slade/issues",
"source": "https://github.com/Evertt/Slade"
},
"authors": [
{
"name": "Evert van Brussel",
"email": "ecvanbrussel@gmail.com"
}
],
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Slade\\": "src/"
}
},
"require": {
"php": ">=5.5.0",
"doctrine/inflector": "~1.0",
"illuminate/view": "^5.1"
},
"require-dev": {
"phpspec/phpspec": "~2.1"
}
}