-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new plugin version for cakePHP 2.0 with PHP 8.x
- Loading branch information
Martin Mitterhauser
committed
Mar 5, 2024
1 parent
db25f69
commit 3ddaf67
Showing
8 changed files
with
97 additions
and
1,869 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
/vendor/ | ||
/composer.lock |
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,37 +1,43 @@ | ||
{ | ||
"name": "kba-team/cakephp-graylog", | ||
"description": "Graylog engine for CakePHP", | ||
"type": "cakephp-plugin", | ||
"license": "MIT", | ||
"minimum-stability": "stable", | ||
"require": { | ||
"php": ">7.2, <8.4", | ||
"ext-json": "*", | ||
"cakephp/cakephp": "^2.4", | ||
"graylog2/gelf-php": "^1.6", | ||
"composer/installers": "^1.9", | ||
"kba-team/php-backtrace": "^1.0", | ||
"kba-team/graylog-utilities": "^1.0" | ||
}, | ||
"extra": { | ||
"installer-name": "Graylog" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^4.8" | ||
}, | ||
"autoload-dev": { | ||
"classmap": [ | ||
"vendor/cakephp/cakephp/lib/Cake/Core/App.php", | ||
"vendor/cakephp/cakephp/lib/Cake/Log/CakeLogInterface.php", | ||
"vendor/cakephp/cakephp/lib/Cake/Log/Engine/BaseLog.php", | ||
"vendor/cakephp/cakephp/lib/Cake/Utility/Hash.php", | ||
"Lib/Log/Engine/GraylogLog.php", | ||
"tests/PublicGraylogLog.php" | ||
] | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"composer/installers": true | ||
} | ||
"name": "kba-team/cakephp-graylog", | ||
"description": "Graylog engine for CakePHP", | ||
"type": "cakephp-plugin", | ||
"license": "MIT", | ||
"minimum-stability": "stable", | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/kamilwylegala/cakephp2-php8" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.0", | ||
"ext-json": "*", | ||
"cakephp/cakephp": "dev-master", | ||
"graylog2/gelf-php": "^1.6", | ||
"composer/installers": "^1.9", | ||
"kba-team/php-backtrace": "^1.0", | ||
"kba-team/graylog-utilities": "^2.0" | ||
}, | ||
"extra": { | ||
"installer-name": "Graylog" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.5" | ||
}, | ||
"autoload-dev": { | ||
"classmap": [ | ||
"vendor/cakephp/cakephp/lib/Cake/Core/App.php", | ||
"vendor/cakephp/cakephp/lib/Cake/Log/CakeLogInterface.php", | ||
"vendor/cakephp/cakephp/lib/Cake/Log/Engine/BaseLog.php", | ||
"vendor/cakephp/cakephp/lib/Cake/Utility/Hash.php", | ||
"Lib/Log/Engine/GraylogLog.php", | ||
"tests/PublicGraylogLog.php" | ||
] | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"composer/installers": true | ||
} | ||
} | ||
} |
Oops, something went wrong.