Skip to content

Commit

Permalink
Define plugin Composer meta
Browse files Browse the repository at this point in the history
  • Loading branch information
kasparsd authored and pereirinha committed Oct 6, 2020
1 parent 490e08e commit e5fadfd
Show file tree
Hide file tree
Showing 3 changed files with 307 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,10 @@ wp-content/plugins/hello.php
/node_modules/
npm-debug.log

# Composer
composer.lock
/vendor/

# Dev
/vendor/
/dev-lib/
phpcs.xml

# Tests
tests/data/
Expand Down
25 changes: 25 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "cloudinary/cloudinary-image-management-and-manipulation-in-the-cloud-cdn",
"homepage": "https://wordpress.org/plugins/cloudinary-image-management-and-manipulation-in-the-cloud-cdn/",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {},
"require-dev": {
"wp-coding-standards/wpcs": "^2.3",
"automattic/vipwpcs": "^2.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.6.2"
},
"config": {
"platform": {
"php": "5.6.20"
}
},
"scripts": {
"lint": [
"phpcs"
],
"lint-fix": [
"phpcbf"
]
}
}
280 changes: 280 additions & 0 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e5fadfd

Please sign in to comment.