Skip to content

Commit

Permalink
Preparing 1.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsizemore committed Dec 21, 2023
1 parent 3fa197a commit cfb93aa
Show file tree
Hide file tree
Showing 17 changed files with 312 additions and 225 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,3 @@ jobs:

- name: Run PHPStan
run: composer run-script phpstan

#- name: Analysis
# uses: php-actions/phpstan@v3
# with:
# path: src/ dist/ bin/
20 changes: 0 additions & 20 deletions .github/workflows/notify.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '8.1', '8.2', '8.3' ]
php: [ '8.1', '8.2', '8.3', '8.4' ]
steps:
- uses: actions/checkout@v4
with:
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
### 1.1.1 (2023-12-14)
### 1.1.1 (2023-12-20)

* Added Scrutinizer to workflow
* Updating codebase based on PHPStan level 9, strict w/bleeding edge. A work in progress
* Updated docs throughout
* First pass and attempt at adhering to PSR-12, PSR-5, and PSR-19
* Updated tests to use the PHPUnit CoversClass and DataProvider attributes.
* Update composer.json and github workflows to allow PHP 8.4 into the mix.
* Updated unit tests to use `self::` instead of `$this->` when calling PHPUnit methods
* Pass through to add function, exception, and constant imports

### 1.1.0 (2023-11-27)

Expand Down
2 changes: 1 addition & 1 deletion bin/update.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
declare(strict_types=1);

$updateUrl = 'https://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types';
$destinationFile = dirname(__DIR__) . "/data/mime.types";
$destinationFile = dirname(__DIR__) . '/data/mime.types';

file_put_contents($destinationFile, file_get_contents($updateUrl));

Expand Down
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@
}
],
"require": {
"php": "^8.1",
"php": "^8.1 <8.5",
"jetbrains/phpstorm-attributes": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.4",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.2"
"phpstan/phpstan-strict-rules": "^1.5"
},
"suggest": {
"ext-mbstring": "For non-English (user) input parsing"
Expand Down

0 comments on commit cfb93aa

Please sign in to comment.