-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #202 from pluginkollektiv/develop
Release 1.8.2
- Loading branch information
Showing
19 changed files
with
7,499 additions
and
1,446 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
{ | ||
"name": "pluginkollektiv/statify", | ||
"description": "Compact, easy-to-use and privacy-compliant stats plugin for WordPress.", | ||
"license": "GPL-3.0-or-later", | ||
"type": "wordpress-plugin", | ||
"keywords": [ | ||
"wordpress", | ||
"plugin", | ||
"statistics" | ||
], | ||
"config": { | ||
"platform": { | ||
"php": "5.6" | ||
} | ||
}, | ||
"require": { | ||
"php": "^5.2|^7|^8", | ||
"npm-asset/chartist": "^0.11.4", | ||
"npm-asset/chartist-plugin-tooltips-updated": "^0.1.3" | ||
}, | ||
"require-dev": { | ||
"dealerdirect/phpcodesniffer-composer-installer": "^0.7", | ||
"matthiasmullie/minify": "^1.3", | ||
"slowprog/composer-copy-file": "^0.3", | ||
"squizlabs/php_codesniffer": "^3.5", | ||
"phpcompatibility/phpcompatibility-wp": "^2.1", | ||
"wp-coding-standards/wpcs": "^2.3", | ||
"phpunit/phpunit": "^5" | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://asset-packagist.org" | ||
} | ||
], | ||
"scripts": { | ||
"post-install-cmd": [ | ||
"@build" | ||
], | ||
"post-update-cmd": [ | ||
"@build" | ||
], | ||
"build": [ | ||
"@copy-assets", | ||
"@minify" | ||
], | ||
"copy-assets": [ | ||
"SlowProg\\CopyFile\\ScriptHandler::copy" | ||
], | ||
"cs": [ | ||
"@lint-php" | ||
], | ||
"csfix": [ | ||
"phpcbf --standard=phpcs.xml" | ||
], | ||
"lint-all": [ | ||
"@lint-php", | ||
"@lint-js", | ||
"@lint-css" | ||
], | ||
"lint-css": [ | ||
"npx stylelint css/dashboard.css" | ||
], | ||
"lint-js": [ | ||
"npx eslint js/dashboard.js", | ||
"npx eslint js/snippet.js" | ||
], | ||
"lint-php": [ | ||
"phpcs --standard=phpcs.xml -s" | ||
], | ||
"lint-tests": [ | ||
"phpcs --standard=tests/phpcs.xml tests" | ||
], | ||
"minify": [ | ||
"minifycss css/dashboard.css > css/dashboard.min.css", | ||
"minifyjs js/dashboard.js > js/dashboard.min.js", | ||
"minifyjs js/snippet.js > js/snippet.min.js", | ||
"minifycss vendor/npm-asset/chartist-plugin-tooltips-updated/dist/chartist-plugin-tooltip.css > css/chartist-plugin-tooltip.min.css" | ||
], | ||
"test": [ | ||
"phpunit" | ||
] | ||
}, | ||
"extra": { | ||
"copy-file": { | ||
"vendor/npm-asset/chartist/dist/chartist.min.css": "css/", | ||
"vendor/npm-asset/chartist/dist/chartist.min.js": "js/", | ||
"vendor/npm-asset/chartist/dist/chartist.min.js.map": "js/", | ||
"vendor/npm-asset/chartist-plugin-tooltips-updated/dist/chartist-plugin-tooltip.min.js": "js/", | ||
"vendor/npm-asset/chartist-plugin-tooltips-updated/dist/chartist-plugin-tooltip.min.js.map": "js/" | ||
} | ||
} | ||
} |
This file contains 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
Oops, something went wrong.