forked from drewjbartlett/wordpress-eloquent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
27 lines (27 loc) · 838 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
{
"name": "drewjbartlett/wordpress-eloquent",
"description": "A Laravel wrapper for wordpress which turns all Wordpress models into Laravel Eloquent Models.",
"keywords": ["wordpress", "eloquent", "laravel"],
"homepage": "https://github.com/drewjbartlett/wordpress-eloquent",
"support": {
"issues": "https://github.com/drewjbartlett/wordpress-eloquent/issues",
"source": "https://github.com/drewjbartlett/wordpress-eloquent"
},
"authors": [
{
"name": "Drew J Bartlett",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.6.4",
"illuminate/database": "5.4.*"
},
"autoload": {
"psr-4": {
"WPEloquent\\": "WPEloquent/"
}
},
"license": "MIT"
}