Skip to content

Commit

Permalink
fresh php versions in travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Smetannikov committed Nov 24, 2019
1 parent da5fe37 commit 19c2bab
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
phpunit.xml
phpunit-*.xml
composer.lock
.phpunit.result.cache
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ build: update

test-all:
@echo "\033[0;33m>>> >>> >>> >>> >>> >>> >>> >>> \033[0;30;46m Run all tests \033[0m"
@make validate test phpmd phpcs phpcpd phploc
@make validate test phpmd phpcpd phploc

update:
@echo "\033[0;33m>>> >>> >>> >>> >>> >>> >>> >>> \033[0;30;46m Update project \033[0m"
Expand Down Expand Up @@ -52,9 +52,9 @@ phpmd:

phpcs:
@echo "\033[0;33m>>> >>> >>> >>> >>> >>> >>> >>> \033[0;30;46m Check Code Style \033[0m"
@php ./vendor/squizlabs/php_codesniffer/scripts/phpcs ./src \
--extensions=php \
--standard=./vendor/jbzoo/misc/phpcs/JBZoo/ruleset.xml \
@php ./vendor/bin/phpcs ./src \
--extensions=php \
--standard=./vendor/jbzoo/misc/phpcs/JBZoo/ruleset.xml \
--report=full
@echo ""

Expand Down
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@

"require" : {
"php" : ">=7.1"

},

"require-dev" : {
"jbzoo/phpunit" : "^3.0",
"jbzoo/profiler" : "^1.0.5"
"jbzoo/profiler" : "^1.0.5",
"jbzoo/misc" : "^1.2.0"
},

"autoload" : {
Expand Down
1 change: 0 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
syntaxCheck="true"
stopOnError="true"
stopOnFailure="true"
stopOnIncomplete="true"
Expand Down

0 comments on commit 19c2bab

Please sign in to comment.