-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
92 lines (92 loc) · 2.52 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "bkwld/decoy",
"description": "A Laravel model-based CMS by Bukwild",
"license": "MIT",
"authors": [
{
"name": "Robert Reinhard",
"email": "[email protected]"
},
{
"name": "Aaron Nunley",
"email": "[email protected]"
},
{
"name": "Matt Aebersold",
"email": "[email protected]"
},
{
"name": "Eric Howard",
"email": "[email protected]"
},
{
"name": "Michael Starks",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"weotch/former": "^4.1.0",
"anahkiasen/html-object": "~1.3",
"bkwld/cloner": "^3.2.2",
"bkwld/croppa": "~4.0",
"bkwld/laravel-haml": "~2.0",
"bkwld/library": "^4.0.2",
"bkwld/upchuck": "^2.4.1",
"cviebrock/eloquent-sluggable": "4.5.1.1",
"illuminate/support": "^5.0",
"illuminate/console": "^5.0",
"symfony/yaml": "~2.5 || ^3.0 || ^4.0",
"zencoder/zencoder-php": "~2.2",
"jenssegers/agent": "~2.1",
"league/csv": "^9.1",
"doctrine/dbal": "^2.5"
},
"require-dev": {
"laravel/framework": "5.4.* || 5.5.* || 5.6.*",
"filp/whoops": "~2.0",
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~6.0 || ~7.0",
"symfony/css-selector": "3.1.* || ^4.0",
"symfony/dom-crawler": "3.1.* || ^4.0",
"php-coveralls/php-coveralls": "^1.0 || ^2.0",
"adlawson/vfs": "^0.12.1",
"league/flysystem": "^1.0",
"league/flysystem-vfs": "^1.0",
"laravel/tinker": "^1.0",
"fideloper/proxy": "~3.3 || ^4.0"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:weotch/eloquent-sluggable.git"
}
],
"conflict": {
"anahkiasen/html-object": "1.4.1",
"laravel/framework": "<5.4.0"
},
"autoload": {
"psr-4": {
"Bkwld\\Decoy\\": "classes/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "example/app/",
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Bkwld\\Decoy\\ServiceProvider"
],
"aliases": {
"Decoy": "Bkwld\\Decoy\\Facades\\Decoy",
"DecoyURL": "Bkwld\\Decoy\\Facades\\DecoyURL"
}
}
}
}