Bumped PHP to >=7.2 as it not supported anymore (no security fixes)

This commit is contained in:
Igor Scheller 2019-11-30 01:52:27 +01:00
parent 577c052aff
commit e80fb54522
2 changed files with 6 additions and 6 deletions

View File

@ -11,7 +11,7 @@ To report bugs use [engelsystem/issues](https://github.com/engelsystem/engelsyst
## Installation ## Installation
### Requirements ### Requirements
* PHP >= 7.1 * PHP >= 7.2
* Required modules: * Required modules:
* dom * dom
* json * json
@ -150,7 +150,7 @@ docker-compose up
Run these commands once initially and then as required after changes Run these commands once initially and then as required after changes
``` ```bash
# Install composer dependencies # Install composer dependencies
docker exec -it engelsystem_dev_es_workspace_1 composer i docker exec -it engelsystem_dev_es_workspace_1 composer i
@ -169,7 +169,7 @@ docker exec -it engelsystem_dev_es_workspace_1 bin/migrate
While developing you may use the watch mode to rebuild the system on changes While developing you may use the watch mode to rebuild the system on changes
``` ```bash
# Run a front-end build # Run a front-end build
docker exec -it engelsystem_dev_es_workspace_1 yarn build:watch docker exec -it engelsystem_dev_es_workspace_1 yarn build:watch
``` ```
@ -199,10 +199,10 @@ We use gettext. You may use POEdit to extract new texts from the sourcecode. Ple
### Code style ### Code style
Please ensure that your pull requests follow the [PSR-12](https://www.php-fig.org/psr/psr-12/) coding style guide. Please ensure that your pull requests follow the [PSR-12](https://www.php-fig.org/psr/psr-12/) coding style guide.
You can check that by running You can check that by running
```php ```bash
composer run phpcs composer run phpcs
``` ```
You may auto fix reported issues by running You may auto fix reported issues by running
```php ```bash
composer run phpcbf composer run phpcbf
``` ```

View File

@ -18,7 +18,7 @@
"phpcbf": "phpcbf -p" "phpcbf": "phpcbf -p"
}, },
"require": { "require": {
"php": ">=7.1.0", "php": ">=7.2.0",
"ext-json": "*", "ext-json": "*",
"ext-libxml": "*", "ext-libxml": "*",
"ext-mbstring": "*", "ext-mbstring": "*",