Skip to content

Commit

Permalink
Merge pull request #3 from alleyinteractive/feature/maintenance
Browse files Browse the repository at this point in the history
Drop PHP 7.4 support; update Alley domain; mark version 2.0.0
  • Loading branch information
dlh01 authored Dec 29, 2022
2 parents ba3199f + d3f1c7a commit ea525cc
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [ 7.4 ]
php: [ 8.0 ]
steps:
- name: Cancel previous runs of this workflow (pull requests only)
if: ${{ github.event_name == 'pull_request' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [ 8.1, 8.0, 7.4 ]
php: [ 8.2, 8.1, 8.0 ]
wp_version: [ "latest" ]
can_fail: [ false ]
multisite: [ 0,1 ]
Expand Down
2 changes: 1 addition & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* PHP-CS-Fixer configuration
*
* (c) Alley <info@alley.co>
* (c) Alley <info@alley.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ This library adheres to [Semantic Versioning](https://semver.org/) and [Keep a C

Nothing yet.

## 2.0.0

### Removed

- PHP 7.4 support.

## 1.0.0

Initial release.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"authors": [
{
"name": "Alley",
"email": "info@alley.co"
"email": "info@alley.com"
}
],
"autoload": {
Expand All @@ -23,12 +23,12 @@
"lock": false
},
"require": {
"php": "^7.4 || ^8.0"
"php": "^8.0"
},
"require-dev": {
"alleyinteractive/alley-coding-standards": "^0.3",
"alleyinteractive/alley-coding-standards": "^1.0.0",
"friendsofphp/php-cs-fixer": "^3.8",
"mantle-framework/testkit": "^0.5"
"mantle-framework/testkit": "^0.9"
},
"scripts": {
"fixer": "php-cs-fixer -v fix --allow-risky=yes",
Expand Down
2 changes: 1 addition & 1 deletion src/alley/wp/find-one.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* `find_one()` functions
*
* (c) Alley <info@alley.co>
* (c) Alley <info@alley.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/alley/wp/find-result.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* `find_result()` function
*
* (c) Alley <info@alley.co>
* (c) Alley <info@alley.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/alley/wp/fixtures/class-noop.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Class file for Noop
*
* (c) Alley <info@alley.co>
* (c) Alley <info@alley.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/alley/wp/test-find-one.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Class file for Test_Find_One
*
* (c) Alley <info@alley.co>
* (c) Alley <info@alley.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/alley/wp/test-find-result.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Class file for Test_Find_Result
*
* (c) Alley <info@alley.co>
* (c) Alley <info@alley.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* PHPUnit bootstrap
*
* (c) Alley <info@alley.co>
* (c) Alley <info@alley.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down

0 comments on commit ea525cc

Please sign in to comment.