-
-
Save tommcfarlin/60ac0e1fba9fa152fc57622e3866d6dc to your computer and use it in GitHub Desktop.
[WordPress] Using Composer For Better WordPress Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "pressware/demo-wordpress-plugin", | |
"description": "This file is used to show how to configure a WordPress plugin using Composer.", | |
"autoload": { | |
"psr-4": { | |
"Pressware\\": "src/" | |
} | |
}, | |
"require-dev": { | |
"phpro/grumphp": "^0.11.6", | |
"phpmd/phpmd": "^2.6", | |
"phpunit/phpunit": "5.7.21", | |
"nikic/php-parser": "^3.0", | |
"sebastian/phpcpd": "^3.0", | |
"povils/phpmnd": "^1.1", | |
"squizlabs/php_codesniffer": "^3.0", | |
"jakub-onderka/php-parallel-lint": "^0.9.2", | |
"sensiolabs/security-checker": "^4.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment