Skip to content

Commit

Permalink
Support Symfony 4.4 and 5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Damien Carcel committed Feb 11, 2020
1 parent c0ff14b commit 7fc15b1
Show file tree
Hide file tree
Showing 16 changed files with 77 additions and 2,630 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
vendor
bin/phpspec
bin/php-cs-fixer
composer.lock
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ language: php
#sudo: false

php:
- '7.1'
- '7.2'
- '7.3'
- '7.4'

cache:
directories:
- vendor
directories:
- $HOME/.composer/cache

before_script:
- composer self-update
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ At the moment, 3 types of rules are supported:

## Requirements

PHP needs to be a minimum version of PHP 7.1
PHP needs to be a minimum version of PHP 7.2

## Installation

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
}
],
"require": {
"php": "^7.1",
"php": "^7.2",
"friendsofphp/php-cs-fixer": "^2.1",
"symfony/event-dispatcher": "^3.0||^4.0",
"symfony/finder": "^3.0||^4.0",
"symfony/console": "^3.0||^4.0",
"symfony/filesystem": "^3.0||^4.0"
"symfony/event-dispatcher": "^4.4||^5.0",
"symfony/finder": "^4.4||^5.0",
"symfony/console": "^4.4||^5.0",
"symfony/filesystem": "^4.4||^5.0"
},
"require-dev": {
"phpspec/phpspec": "^3.0||^4.0",
"phpstan/phpstan": "^0.10.2"
"phpspec/phpspec": "^6.0",
"phpstan/phpstan": "^0.12.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 7fc15b1

Please sign in to comment.