-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
39 lines (39 loc) · 1.1 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
{
"name": "as247/wp-eloquent",
"description": "Eloquent ORM for wordpress.",
"license": "MIT",
"homepage": "https://github.com/as247/wp-eloquent",
"support": {
"issues": "https://github.com/as247/wp-eloquent/issues",
"source": "https://github.com/as247/wp-eloquent"
},
"keywords": ["laravel", "database", "sql", "orm", "as247","wp-eloquent"],
"authors": [
{
"name": "As247",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"ext-pdo": "*"
},
"autoload": {
"psr-4": {
"As247\\WpEloquent\\": "src"
},
"files":[
"src/Support/helpers.php"
]
},
"suggest": {
"doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
"fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
"symfony/finder": "Required to use Eloquent model factories (^5.1)."
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}