-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·61 lines (61 loc) · 2.06 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
{
"name": "tgeorgel/objectpress",
"description": "It's time to treat wordpress like an object.",
"type": "library",
"license": "WTFPL",
"authors": [
{
"name": "Thomas GEORGEL",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"OP\\": "src/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/tgeorgel/wp-eloquent.git"
}
],
"require": {
"php": "^7.4 || ^8.0",
"illuminate/config": "^7.0 || ^8.0 || ^9.0",
"illuminate/contracts": "^7.0 || ^8.0 || ^9.0",
"illuminate/support": "^7.0 || ^8.0 || ^9.0",
"illuminate/translation": "^7.0 || ^8.0 || ^9.0",
"illuminate/filesystem": "^7.0 || ^8.0 || ^9.0",
"illuminate/validation": "^7.0 || ^8.0 || ^9.0",
"illuminate/http": "^7.0 || ^8.0 || ^9.0",
"illuminate/database": "^7.0 || ^8.0 || ^9.0",
"illuminate/container": "^7.0 || ^8.0 || ^9.0",
"illuminate/view": "^7.0 || ^8.0 || ^9.0",
"illuminate/routing": "^7.0 || ^8.0 || ^9.0",
"illuminate/events": "^7.0 || ^8.0 || ^9.0",
"illuminate/pagination": "^7.0 || ^8.0 || ^9.0",
"as247/wp-eloquent": "dev-master",
"phpfastcache/phpfastcache": "^7.0",
"jenssegers/blade": "^1.4",
"amphibee/wordpress-eloquent-models": "v1.2.x-dev",
"amphibee/hookable": "^1.0",
"symfony/finder": " ^5.1",
"nesbot/carbon": "^2.45",
"doctrine/inflector": " ^2.0",
"thunderer/shortcode": " ^0.7.3",
"laravel/helpers": " ^1.0",
"guzzlehttp/guzzle": "^7.3",
"league/flysystem": "^1.1"
},
"require-dev": {
"symfony/var-dumper": "^5.2"
},
"suggest": {
"wp-grogu/acf-manager": "A powerful Object-Oriented library helping you create ACF field groups & gutemberg blocks while adding type-cast in returned values from database."
}
}