-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (27 loc) · 747 Bytes
/
composer.json
File metadata and controls
28 lines (27 loc) · 747 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
{
"name": "jdgrimes/wp-deprecated-code-scanner",
"description": "Scans a WordPress codebase to find all deprecated elements",
"keywords": ["WordPress"],
"homepage": "https://github.com/JDGrimes/wp-deprecated-code-scanner",
"type": "library",
"license": "MIT",
"authors":[
{
"name": "J.D. Grimes",
"email": "jdg@codesymphony.co",
"homepage": "https://codesymphony.co"
}
],
"minimum-stability": "stable",
"require": {
"nikic/php-parser": "^2.1",
"symfony/console": "^3.1",
"psr/log": "^1.0"
},
"autoload": {
"psr-4": {
"WP_Deprecated_Code_Scanner\\": "src/"
}
},
"bin": [ "bin/wpdcs" ]
}