-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 977 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "bruno-barros/w.eloquent-framework",
"description": "w.eloquent core",
"keywords": [
"Laravel",
"framework",
"WordPress"
],
"license": "GPL-2.0+",
"authors": [
{
"name": "Bruno Barros",
"email": "brunodanca@gmail.com"
}
],
"type": "project",
"autoload": {
"files": [
"src/weloquent/Support/helpers.php"
],
"psr-4": {
"Weloquent\\": "src/weloquent"
}
},
"autoload-dev": {
"psr-4": {
"Weloquent\\Tests\\": "src/tests"
}
},
"require": {
"php": ">=5.4",
"composer/installers": "~1.0",
"laravel/framework": "4.2.*",
"symfony/routing": "2.*",
"symfony/var-dumper": "2.6.*"
},
"require-dev": {
"phpunit/phpunit": "4.5.*",
"mockery/mockery": "*",
"10up/wp_mock": "dev-master"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true
},
"extra": {
},
"minimum-stability": "dev",
"prefer-stable": true
}