forked from etrepat/baum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 715 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 715 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
{
"name": "baum/baum",
"type": "library",
"description": "Baum is an implementation of the Nested Set pattern for Eloquent models.",
"keywords": ["nested set", "laravel", "laravel 4", "eloquent", "database"],
"license": "MIT",
"authors": [
{
"name": "Estanislau Trepat",
"email": "estanis@etrepat.com",
"homepage": "http://etrepat.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "4.0.x",
"illuminate/console": "4.0.x",
"illuminate/filesystem": "4.0.x",
"illuminate/database": "4.0.x"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-0": {
"Baum": "src/"
}
},
"minimum-stability": "dev"
}