This repository was archived by the owner on Aug 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.36 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.36 KB
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
{
"name": "eliasis-framework/wordpress-plugin",
"version": "1.0.3",
"description": "Skeleton for create WordPress plugins with Eliasis Framework",
"type": "wordpress-plugin",
"keywords": [
"Wordpress",
"Plugin",
"Eliasis",
"Eliasis Framework",
"PHP"
],
"license": "GPL-2.0+",
"authors": [
{
"name": "Josantonius",
"email": "hello@josantonius.com",
"homepage": "https://josantonius.com",
"role": "Developer"
}
],
"config": {
"vendor-dir": "lib/vendor",
"preferred-install": "dist"
},
"minimum-stability": "dev",
"support": {
"issues": "https://github.com/eliasis-framework/wordpress-plugin/issues",
"forum": "http://stackoverflow.com/tags/eliasis-framework",
"source": "https://github.com/eliasis-framework/wordpress-plugin"
},
"require": {
"php": "^5.3 || ^7.0",
"eliasis-framework/eliasis" : "^1.1.0",
"Josantonius/Json" : "^1.1.2",
"Josantonius/Hook" : "^1.0.5",
"Josantonius/WP_Register" : "^1.0.2",
"Josantonius/WP_Menu" : "^1.0.3",
"composer/installers" : "master"
},
"autoload": {
"psr-4": {
"EliasisWordPress\\" : "src/"
}
}
}