generated from alleyinteractive/create-wordpress-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
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 #11 from alleyinteractive/feature
Main plugin features
- Loading branch information
Showing
11 changed files
with
1,269 additions
and
79 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Changelog | ||
|
||
All notable changes to `create-wordpress-plugin` will be documented in this file. | ||
All notable changes to Cache Collector will be documented in this file. | ||
|
||
## 0.1.0 - 202X-XX-XX | ||
## 0.1.0 - 2022-12-02 | ||
|
||
- Initial release | ||
- Initial release of the plugin. |
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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
{ | ||
"name": "alleyinteractive/cache-collector", | ||
"description": "Dynamic cache key collector for easy purging.", | ||
"description": "Dynamic cache key collector for easy purging", | ||
"license": "GPL-2.0-or-later", | ||
"type": "wordpress-plugin", | ||
"keywords": [ | ||
"alleyinteractive", | ||
"cache-collector" | ||
], | ||
"homepage": "https://github.com/alleyinteractive/cache-collector", | ||
"license": "GPL-2.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "Sean Fisher", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"homepage": "https://github.com/alleyinteractive/cache-collector", | ||
"require": { | ||
"php": "^8.0" | ||
}, | ||
|
@@ -23,6 +23,11 @@ | |
"mantle-framework/testkit": "^0.9", | ||
"nunomaduro/collision": "^5.0" | ||
}, | ||
"suggest": { | ||
"psr/log": "For logging messages to when purging the cache" | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"config": { | ||
"allow-plugins": { | ||
"alleyinteractive/composer-wordpress-autoloader": true, | ||
|
@@ -38,8 +43,6 @@ | |
} | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"scripts": { | ||
"phpcbf": "phpcbf .", | ||
"phpcs": "phpcs .", | ||
|
Oops, something went wrong.