-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (33 loc) · 983 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
{
"name": "arsenederniere/lightncandy-l4",
"type": "library",
"description": "A lightncandy (\"A PHP library to support almost all features of handlebars\" by zordius) wrapper for Laravel 4.",
"keywords": ["laravel", "laravel 4", "lightncandy", "handlebars", "php"],
"homepage": "https://github.com/arsenederniere/lightncandy-l4",
"license": "MIT",
"authors": [
{
"name": "Arsène Dernière",
"email": "dieuonline@hotmail.com"
}
],
"require": {
"php": ">=5.3.0",
"illuminate/support": "~4",
"zordius/lightncandy": "dev-master"
},
"autoload": {
"classmap": [
],
"psr-0": {
"Arsenederniere\\LightncandyL4\\": "src/"
}
},
"scripts": {
"post-install-cmd": [
"php artisan config:publish arsenederniere/lightncandy-l4"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}