-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.12 KB
/
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
35
36
37
38
39
40
41
42
43
44
{
"name": "bebat/polytree",
"type": "library",
"description": "Effecient implementation of a polytree datastructure in Laravel Eloquent",
"license": "MIT",
"authors": [
{
"name": "Ben Batschelet",
"email": "ben.batschelet@gmail.com",
"homepage": "http://github.com/bbatsche"
}
],
"require": {
"php" : ">=5.5.9|>=7.0.0",
"illuminate/config": "~5.1",
"illuminate/console": "~5.1",
"illuminate/database": "~5.1"
},
"require-dev": {
"bebat/verify": "~1.1",
"doctrine/dbal": "~2.5",
"friendsofphp/php-cs-fixer": "~2.0",
"illuminate/events": "~5.1",
"mockery/mockery": "~0.9",
"phpunit/dbunit": "~2.0",
"phpunit/phpunit": "~4.8|~5.2",
"psy/psysh": "~0.7"
},
"autoload": {
"psr-4": {
"BeBat\\PolyTree\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BeBat\\PolyTree\\Test\\": [ "tests", "tests/lib" ]
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}