Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/public/.htaccess
config.php
vendor
.phpunit.result.cache
2 changes: 1 addition & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ tools:
php_pdepend:
enabled: true
excluded_dirs: ["test", "vendor"]
php_analyzer: true
php_analyzer:
enabled: true
filter:
paths: ["src/*", "test/*"]
sensiolabs_security_checker: true
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: php

php:
- "7.0"
- "7.1"
- "8.0"
- "8.1"
- "nightly"

before_script:
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
}
],
"require": {
"php": "^7"
"php": "^8"
},
"require-dev": {
"phpunit/phpunit": "^6"
"phpunit/phpunit": "^9"
}
}
Loading