forked from yahongie2014/corcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.14 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
{
"name": "jgrossi/corcel",
"replace": { "juniorgrossi/corcel": "self.version" },
"description": "Use WordPress backend with Laravel or any PHP framework",
"homepage": "http://github.com/corcel/corcel",
"license": "MIT",
"authors": [
{
"name": "Junior Grossi",
"email": "[email protected]",
"homepage": "http://jgrossi.com"
}
],
"require": {
"php": ">=7.0.0",
"illuminate/database": "5.5.*",
"illuminate/filesystem": "5.5.*",
"illuminate/support": "5.5.*",
"fzaninotto/faker": "^1.6",
"hautelook/phpass": "0.3.4",
"thunderer/shortcode": "^0.6.2"
},
"require-dev": {
"orchestra/testbench": "3.5.*",
"orchestra/database": "3.5.*",
"phpunit/phpunit": "~6.0",
"codeclimate/php-test-reporter": "^0.4.4"
},
"autoload": {
"psr-4": {
"Corcel\\": "src/",
"Corcel\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Corcel\\Laravel\\CorcelServiceProvider"
]
}
}
}