-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
28 lines (28 loc) · 934 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
{
"name": "aheissenberger/foundation",
"description": "This package does not include the framework. It requires and automatical installs the official framework composer package from zurb and provides command line tools to setup foundation for development with laravel 4 and compass.",
"type": "library",
"keywords": ["laravel","css","framework"],
"homepage": "https://github.com/aheissenberger/foundation",
"license": "MIT",
"authors": [
{
"name": "Andreas Heissenberger",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"zurb/foundation": "dev-master"
},
"autoload": {
"classmap": [
"src/migrations",
"src/console"
],
"psr-0": {
"Aheissenberger\\Foundation": "src/"
}
},
"minimum-stability": "dev"
}