-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from macocci7/upgrade_dependencies
Upgrade dependencies
- Loading branch information
Showing
8 changed files
with
62 additions
and
61 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
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,3 +1,4 @@ | ||
/vendor/ | ||
composer.lock | ||
.php-version | ||
.php-version | ||
.tool-versions |
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,3 +1,4 @@ | ||
8.4 | ||
8.3 | ||
8.2 | ||
8.1 |
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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/usr/bin/bash | ||
|
||
# Script to Test and Lint | ||
# requirement: | ||
# - PHP versions defined in ../PHP_VERSIONS installed | ||
|
||
echo "-----------------------------------------------------------" | ||
echo "[PHP $1][php -v]" | ||
php -v | ||
echo "-----------------------------------------------------------" | ||
echo "[PHP $1][parallel-lint]" | ||
./vendor/bin/parallel-lint src tests examples | ||
#echo "-----------------------------------------------------------" | ||
#echo "[PHP $1][neon-lint]" | ||
#./vendor/nette/neon/bin/neon-lint conf | ||
echo "-----------------------------------------------------------" | ||
echo "[PHP $1][phpcs]" | ||
./vendor/bin/phpcs --ignore=vendor \ | ||
--standard=phpcs.xml \ | ||
-p \ | ||
-s \ | ||
. | ||
#echo "-----------------------------------------------------------" | ||
#echo "[PHP $1][phpmd]" | ||
#./vendor/bin/phpmd \ | ||
# ./src/ ./examples/ ./tests/ text \ | ||
# phpmd.xml | ||
echo "-----------------------------------------------------------" | ||
echo "[PHP $1][phpstan]" | ||
./vendor/bin/phpstan analyze -c phpstan.neon | ||
echo "-----------------------------------------------------------" | ||
echo "[PHP $1][phpunit]" | ||
./vendor/bin/phpunit ./tests/ | ||
echo "-----------------------------------------------------------" |
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