Files
branch-usage-checker/composer.json
Ismo Vuorinen d050ac3b52 chore(deps): upgrade packages
# Conflicts:
#	composer.lock
2025-12-04 00:29:25 +02:00

79 lines
1.9 KiB
JSON

{
"name": "ivuorinen/branch-usage-checker",
"description": "GitHub Project branch usage checker.",
"license": "MIT",
"type": "project",
"keywords": [
"branch",
"usage",
"github",
"console",
"cli"
],
"authors": [
{
"name": "Ismo Vuorinen",
"homepage": "https://github.com/ivuorinen"
}
],
"homepage": "https://github.com/ivuorinen/branch-usage-checker",
"support": {
"issues": "https://github.com/ivuorinen/branch-usage-checker/issues",
"source": "https://github.com/ivuorinen/branch-usage-checker"
},
"require": {
"php": "^8.4",
"guzzlehttp/guzzle": "^7",
"illuminate/http": "^11",
"laravel-zero/phar-updater": "^1.2",
"nunomaduro/termwind": "^2",
"spatie/data-transfer-object": "^3.7"
},
"require-dev": {
"ergebnis/composer-normalize": "^2",
"laravel-zero/framework": "^11",
"mockery/mockery": "^1",
"pestphp/pest": "^3",
"roave/security-advisories": "dev-latest"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"bin": [
"builds/branch-usage-checker"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"post-autoload-dump": [
"composer normalize"
],
"build": [
"cp application application.phar",
"@php application app:build branch-usage-checker",
"rm -f application.phar || true"
],
"test": "vendor/bin/pest",
"x": "@php builds/branch-usage-checker"
}
}