-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
33 lines (33 loc) · 968 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
{
"name": "jdgrimes/wp-plugin-uninstall-tester",
"description": "Utilities for testing WordPress plugin install/uninstall with PHPUnit",
"homepage": "https://github.com/JDGrimes/wp-plugin-uninstall-tester",
"license": "MIT",
"authors": [
{
"name": "J.D. Grimes",
"email": "[email protected]",
"homepage": "http://codesymphony.co",
"role": "Developer"
}
],
"require": {
"php": ">=5.2.0",
"xrstf/composer-php52": "1.*"
},
"scripts": {
"post-install-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-update-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-autoload-dump": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
]
},
"autoload": {
"classmap": ["includes"],
"files": ["includes/functions.php"]
}
}