moved to its own repo

This commit is contained in:
Brandon Shipley
2024-03-31 01:45:24 -07:00
parent 10b9a78d31
commit 15f02e6f0a
45 changed files with 2497 additions and 27 deletions

34
composer.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "hi-powered-dev/cheese-cake",
"description": "A CakePHP plugin with misc. goodies ",
"type": "cakephp-plugin",
"license": "AGPL-3.0-or-later",
"keywords": [
"cakephp"
],
"authors": [
{
"name": "HiPoweredDev",
"homepage": "https://hipowered.dev",
"role": "Author"
}
],
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0.0"
},
"require-dev": {
"phpunit/phpunit": "^10.1"
},
"autoload": {
"psr-4": {
"CheeseCake\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CheeseCake\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
}
}