Skip to content

Commit

Permalink
Added composer.json file.
Browse files Browse the repository at this point in the history
  • Loading branch information
navidabdi committed Mar 18, 2024
1 parent dedc205 commit 56fd38c
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"name": "webkima/webkima-elements",
"description": "With this plugin you can block bad users without deleting their accounts.",
"license": "GPL-2.0+",
"type": "wordpress-plugin",
"support": {
"src": "https://github.com/navidabdi/webkima-elements",
"issues": "https://github.com/navidabdi/webkima-elements/issues"
},
"require": {
"php": ">=7.4",
"php-di/php-di": "^6.4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.9",
"brain/monkey": "^2",
"inpsyde/php-coding-standards": "^1.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"WebkimaElements\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WebkimaElements\\Tests\\Unit\\": "tests/Unit/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcs:check": "vendor/bin/phpcs",
"phpcs:fix": "vendor/bin/phpcbf",
"test:unit": "phpunit --config=phpunit.xml"
}
}

0 comments on commit 56fd38c

Please sign in to comment.