-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 847 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 847 Bytes
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": "catsplugins/the-core",
"license": "MIT",
"type": "project",
"description": "The Plugin Core Framework for Wordpress",
"require": {
"php": ">=7.1",
"tracy/tracy": "^2.5",
"latte/latte": "^2.4",
"nette/neon": "^2.4",
"nette/utils": "^2.5",
"nette/caching": "^2.5",
"nette/robot-loader": "^3.0",
"guzzlehttp/guzzle": "^5.3"
},
"require-dev": {
"tracy/tracy": "@stable",
"latte/latte": "@stable",
"nette/neon": "@stable",
"nette/utils": "@stable",
"nette/caching": "@stable",
"nette/robot-loader": "@stable",
"guzzlehttp/guzzle": "@stable"
},
"config": {
"platform": {
"php": "7.1"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-0" : {
"CatsPlugins\\TheCore" : "src"
}
}
}