forked from themosis/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 882 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 882 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
{
"name": "themosis/framework",
"description": "The Themosis framework.",
"keywords": ["themosis", "framework", "WordPress", "plugin"],
"license": "GPL-2.0+",
"authors":[
{
"name": "Julien Lambé",
"email": "julien@themosis.com",
"homepage": "http://www.themosis.com/"
}
],
"autoload": {
"psr-4": {
"Themosis\\": "src/Themosis/"
},
"files": ["src/Themosis/helpers.php"]
},
"type": "wordpress-plugin",
"require": {
"php": ">=5.6.4",
"composer/installers": "^1.0",
"filp/whoops": "^2.1",
"twig/twig": "~1.0",
"illuminate/routing": "^5.4",
"illuminate/container": "^5.4",
"illuminate/http": "^5.4",
"illuminate/events": "^5.4",
"illuminate/view": "^5.4",
"illuminate/filesystem": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "5.3.*",
"mockery/mockery": "^0.9.4"
}
}