Skip to content

Commit

Permalink
Bumped the minimum PHP version requirement to 7.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
rotexdegba committed Jan 14, 2020
1 parent 6b4597f commit 321def5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ desktop.ini
*.tmproj
build
.idea
.phpunit.result.cache

ignore/
/ignore/
Expand Down
1 change: 1 addition & 0 deletions .gitignore-dist
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ desktop.ini
*.tmproj
build
.idea
.phpunit.result.cache

nbproject/
/nbproject/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ of this template application framework.

## Requirements

* PHP 5.5+ (for version 1.X) or PHP 5.6+ (for version 2.X)
* PHP 5.5+ (for version 1.X) or PHP 5.6+ (for version 2.X) or PHP 7.2+ (for version 3.X)
* Pdo sqlite (3) extension for Authentication in non-production environments
* Composer (https://getcomposer.org)

Expand Down
4 changes: 2 additions & 2 deletions composer-dist.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.6.0",
"rotexsoft/slim3-skeleton-mvc-tools": "2.1.*"
"php": ">=7.2.0",
"rotexsoft/slim3-skeleton-mvc-tools": "3.0.*"
},
"require-dev": {

Expand Down
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.6.0",
"rotexsoft/slim3-skeleton-mvc-tools": "2.1.*"
"php": ">=7.2.0",
"rotexsoft/slim3-skeleton-mvc-tools": "3.0.*"
},
"require-dev": {
"php": ">=5.6.0",
"phpunit/phpunit": "^7.5 || ^6.5 || ^5.7"
"phpunit/phpunit": "^8.0"
},
"autoload": {
"classmap": [ "src/", "tests/", "vendor/slim/" ]
Expand Down

0 comments on commit 321def5

Please sign in to comment.