-
Notifications
You must be signed in to change notification settings - Fork 143
/
composer.json
47 lines (47 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
40
41
42
43
44
45
46
47
{
"name": "themehybrid/hybrid-core",
"description": "Hybrid Core: A framework for developing modern WordPress plugins and themes.",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress"
],
"authors": [
{
"name": "Theme Hybrid",
"email": "[email protected]",
"homepage": "https://themehybrid.com",
"role": "Developer"
}
],
"homepage": "https://github.com/themehybrid/hybrid-core",
"support": {
"issues": "https://github.com/themehybrid/hybrid-core/issues",
"forum": "https://themehybrid.com/board/forums/hybrid-core"
},
"require": {
"php": ">=8.0",
"psr/container": "1.0.0",
"symfony/console": "^5.0 || ^6.0 || ^7.0",
"symfony/polyfill-php80": "^1.25.0",
"themehybrid/hybrid-contracts": "^2.0",
"themehybrid/hybrid-events": "^1.0",
"themehybrid/hybrid-filesystem": "^1.0",
"themehybrid/hybrid-tools": "^2.0"
},
"provide": {
"psr/container-implementation": "1.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Hybrid\\": "src/"
},
"files": [
"src/functions-helpers.php"
]
},
"config": {
"sort-packages": true
}
}