Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/php-sniffer-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '5.6'
php-version: '7.2'
coverage: none
tools: composer, cs2pr

Expand All @@ -41,4 +41,4 @@ jobs:
run: composer install --prefer-dist --no-suggest --no-progress --no-interaction

- name: Detect coding standard violations (PHPCS)
run: vendor/bin/phpcs -q --report=checkstyle --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 | cs2pr --graceful-warnings
run: vendor/bin/phpcs -q --report=checkstyle --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 | cs2pr --graceful-warnings
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ matrix:
env: WP_VERSION=latest WP_MULTISITE=1
- php: 7.2
env: WP_VERSION=latest WP_MULTISITE=1
- php: 5.6
- php: 8.0
env: WP_VERSION=latest WP_MULTISITE=1 PHPLINT=1
dist: precise
- php: 7.2
env: WP_VERSION=4.9 WP_MULTISITE=1
- php: 5.6
- php: 8.0
env: WP_VERSION=4.9 WP_MULTISITE=1
dist: precise
- php: nightly
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"source": "https://github.com/stuttter/wp-multi-network"
},
"require": {
"php": ">=5.2",
"php": ">=7.2",
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion phpcs.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</properties>
</rule>

<config name="testVersion" value="5.6-" />
<config name="testVersion" value="7.2-" />

<file>.</file>

Expand Down
2 changes: 1 addition & 1 deletion wpmn-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Text Domain: wp-multi-network
* Network: true
* Requires at least: 4.9
* Requires PHP: 5.2
* Requires PHP: 7.2
* Tested up to: 6.1
* Version: 2.5.2
*/
Expand Down
Loading