Skip to content

Commit

Permalink
Remove dev packagist
Browse files Browse the repository at this point in the history
  • Loading branch information
guanguans committed Feb 16, 2023
1 parent 952900c commit 619fb1d
Showing 1 changed file with 12 additions and 21 deletions.
33 changes: 12 additions & 21 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,23 +48,16 @@
"ext-json": "*"
},
"require-dev": {
"brainmaestro/composer-git-hooks": "^2.8 || ^3.0",
"friendsofphp/php-cs-fixer": "^3.4",
"guzzlehttp/guzzle": "^6.5 || ^7.0",
"illuminate/http": "^7.0 || ^8.0 || ^9.0",
"illuminate/translation": "^7.0 || ^8.0 || ^9.0",
"illuminate/validation": "^7.0 || ^8.0 || ^9.0",
"guzzlehttp/guzzle": "^7.5",
"illuminate/http": "^7.30 || ^8.0 || ^9.0",
"illuminate/translation": "^7.30 || ^8.0 || ^9.0",
"illuminate/validation": "^7.30 || ^8.0 || ^9.0",
"laminas/laminas-text": "^2.7",
"laravel-zero/framework": "^7.2 || ^8.0 || ^9.0",
"marcocesarato/php-conventional-changelog": "^1.16",
"mockery/mockery": "^1.3",
"padraic/phar-updater": "^1.0",
"php-mock/php-mock-phpunit": "^2.6",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^8.5 || ^9.5 || ^10.0",
"rector/rector": "^0.15.10",
"vimeo/psalm": "^4.30 || ^5.4"
"phpunit/phpunit": "^8.5 || ^9.5 || ^10.0"
},
"replace": {},
"conflict": {},
Expand Down Expand Up @@ -96,9 +89,7 @@
],
"archive": {},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"allow-plugins": {},
"apcu-autoloader": true,
"classmap-authoritative": false,
"optimize-autoloader": true,
Expand Down Expand Up @@ -131,7 +122,7 @@
],
"post-autoload-dump": [],
"ai-commit": "@php ./builds/ai-commit commit",
"cghooks": "@php ./vendor/bin/cghooks",
"cghooks": "@php cghooks",
"cghooks-install": [
"@cghooks add --ignore-lock",
"@cghooks update"
Expand All @@ -140,7 +131,7 @@
"@php -r \"file_exists('.git/hooks/pre-commit') and rename('.git/hooks/pre-commit', '.git/hooks/pre-commit.sample');\"",
"@php -r \"file_exists('.git/hooks/post-merge') and rename('.git/hooks/post-merge', '.git/hooks/post-merge.sample');\""
],
"changelog": "@php ./vendor/bin/conventional-changelog",
"changelog": "conventional-changelog",
"changelog-major": "@changelog --major",
"changelog-minor": "@changelog --minor",
"changelog-patch": "@changelog --patch",
Expand Down Expand Up @@ -173,16 +164,16 @@
"md-lint": "lint-md --config .lintmdrc ./*.md ./.github/ ./docs/",
"pest": "@php ./vendor/bin/pest --cache-result-file=./build//phpunit/.phpunit.result.cache",
"pest-coverage": "@pest --coverage-html=./build/phpunit/ --coverage-clover=clover.xml --coverage",
"phpstan": "@php ./vendor/bin/phpstan analyse -vv",
"phpstan": "phpstan analyse -vv",
"phpstan-baseline": "@phpstan --generate-baseline --allow-empty-baseline",
"post-merge": [
"@composer install"
],
"psalm": "@php ./vendor/bin/psalm",
"psalm": "psalm",
"psalm-baseline": "@psalm --update-baseline",
"rector": "@php ./vendor/bin/rector --clear-cache --ansi -v",
"rector": "rector --clear-cache --ansi -v",
"rector-dry-run": "@rector --dry-run",
"style-fix": "@php ./vendor/bin/php-cs-fixer fix --using-cache=no --config=.php-cs-fixer.php --ansi",
"style-fix": "php-cs-fixer fix --using-cache=no --config=.php-cs-fixer.php --ansi",
"style-lint": "@style-fix --diff --dry-run",
"test": "@php ./vendor/bin/phpunit --cache-result-file=./build/phpunit/.phpunit.result.cache --coverage-text",
"test-coverage": "@test --coverage-html=./build/phpunit/ --coverage-clover=clover.xml",
Expand Down

0 comments on commit 619fb1d

Please sign in to comment.