forked from sumpygump/wp-plugin-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 924 Bytes
/
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
{
"name": "nerdery/wp-plugin-framework",
"description": "A modern object oriented WordPress plugin platform.",
"homepage": "http://www.nerdery.com",
"keywords": ["wordpress", "plugin", "framework", "oo"],
"version": "0.1.0",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Douglas Linsmeyer",
"email": "[email protected]",
"homepage": "http://www.nerdery.com",
"role": "Developer"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/thenerdery/wp-plugin-framework.git"
}
],
"require": {
"php": ">=5.3.2",
"twig/twig": "~1.0",
"symfony/http-foundation": "~2.3",
"pimple/pimple": "2.0.*@dev"
},
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"Nerdery": "src/"
}
}
}