Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add composer normalize plugin #73

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 39 additions & 25 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
{
"name": "buggregator/trap",
"type": "library",
"license": "BSD-3-Clause",
"description": "A simple and powerful tool for debugging PHP applications.",
"homepage": "https://buggregator.dev/",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"debug", "cli", "console", "sentry", "smtp", "dump", "binary dump", "websockets", "server", "helper", "dev"
"debug",
"cli",
"console",
"sentry",
"smtp",
"dump",
"binary dump",
"websockets",
"server",
"helper",
"dev"
],
"authors": [
{
Expand All @@ -17,22 +26,7 @@
"homepage": "https://github.com/butschster"
}
],
"autoload": {
"psr-4": {
"Buggregator\\Trap\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Buggregator\\Trap\\Tests\\": "tests/"
}
},
"bin": [
"bin/trap"
],
"homepage": "https://buggregator.dev/",
"funding": [
{
"type": "github",
Expand All @@ -47,11 +41,6 @@
"url": "https://patreon.com/butschster"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-sockets": "*",
Expand All @@ -67,6 +56,7 @@
},
"require-dev": {
"dereuromark/composer-prefer-lowest": "^0.1.10",
"ergebnis/composer-normalize": "^2.42",
"friendsofphp/php-cs-fixer": "^3.54",
"google/protobuf": "^3.23",
"phpunit/phpunit": "^10.4",
Expand All @@ -77,6 +67,30 @@
"ext-simplexml": "To load trap.xml",
"roxblnfk/unpoly": "If you want to remove unnecessary PHP polyfills depend on PHP version."
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Buggregator\\Trap\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Buggregator\\Trap\\Tests\\": "tests/"
}
},
"bin": [
"bin/trap"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"scripts": {
"cs-check": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --dry-run",
"cs-fix": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php -vvv --using-cache=no"
Expand Down
Loading