Skip to content

Commit

Permalink
46-fix-progress-bar-not-showing-php-file-parsing-progress (#47)
Browse files Browse the repository at this point in the history
* #46 fix command hanging a few seconds without showing progress

* #46 add dependencies updates

* #46 add ignoring strval parameter issues

* #46 fix remove deprecated rules
  • Loading branch information
khalyomede authored Sep 19, 2023
1 parent 70f674a commit 2dcba64
Show file tree
Hide file tree
Showing 6 changed files with 1,274 additions and 798 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- The command will not hang a few seconds without showing progress anymore ([#46](https://github.com/khalyomede/laravel-translate/issues/46)).

## [0.1.0] - 2023-03-25

### Added
Expand Down
21 changes: 10 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,24 @@
"minimum-stability": "stable",
"require": {
"php": ">=8.2.0",
"stillat/blade-parser": "1.*",
"laravel/framework": "10.*"
"stillat/blade-parser": "1.*"
},
"require-dev": {
"orchestra/testbench": "8.0.11",
"nunomaduro/collision": "7.3.3",
"rector/rector": "0.15.23",
"driftingly/rector-laravel": "0.17.0",
"phpstan/phpstan": "1.10.8",
"nunomaduro/larastan": "2.5.1",
"friendsofphp/php-cs-fixer": "3.15.1"
"orchestra/testbench": "8.11.0",
"nunomaduro/collision": "7.9.0",
"rector/rector": "0.18.3",
"driftingly/rector-laravel": "0.25.0",
"phpstan/phpstan": "1.10.35",
"nunomaduro/larastan": "2.6.4",
"friendsofphp/php-cs-fixer": "3.27.0"
},
"scripts": {
"test": "testbench package:test",
"analyse": "phpstan analyse",
"lint": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --diff --using-cache=no --allow-risky=yes --dry-run",
"format": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer --using-cache=no --allow-risky=yes fix",
"security": "composer audit --locked --no-dev",
"updates": "composer outdated --strict --direct",
"updates": "composer outdated --strict --direct --ignore laravel/framework",
"scan": "rector process --dry-run",
"modernize": "rector process",
"all": [
Expand All @@ -62,4 +61,4 @@
]
}
}
}
}
Loading

0 comments on commit 2dcba64

Please sign in to comment.