Skip to content

Commit

Permalink
PHP 8.3 support
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Dec 4, 2023
1 parent d4a71b5 commit c9f5904
Show file tree
Hide file tree
Showing 6 changed files with 314 additions and 221 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:

strategy:
matrix:
php: ['7.4', '8.0', '8.1', '8.2']
php: ['7.4', '8.0', '8.1', '8.2', '8.3']

steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ phpunit:
@docker run -it -w /data -v ${PWD}:/data:delegated --entrypoint vendor/bin/phpunit --rm registry.gitlab.com/grahamcampbell/php:7.4-base

box-compile:
@docker run -it -w /data -v ${PWD}:/data:delegated --rm registry.gitlab.com/grahamcampbell/box:4.3 compile
@docker run -it -w /data -v ${PWD}:/data:delegated --rm registry.gitlab.com/grahamcampbell/box:4.5 compile
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ Packagist Stats was created by, and is maintained by [Graham Campbell](https://g

## Usage

This project is relatively small, and it's usage is pretty simple. [PHP](https://www.php.net/) 7.4-8.2 is required.
This project is relatively small, and it's usage is pretty simple. [PHP](https://www.php.net/) 7.4-8.3 is required.

To get the latest version, simply require the project using [Composer](https://getcomposer.org/) or download the phar from the [releases](https://github.com/GrahamCampbell/Packagist-Stats/releases) page:

```bash
$ composer global require "graham-campbell/packagist-stats:^6.0"
$ composer global require "graham-campbell/packagist-stats:^6.1"
```

Show the stats for all packages under the `graham-campbell` vendor:
Expand Down
2 changes: 1 addition & 1 deletion app/Console/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ final class Application extends SymfonyApplication
*
* @var string
*/
const APP_VERSION = '6.0.0';
const APP_VERSION = '6.1.0';

/**
* Create a new StyleCI CLI application.
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@
"php": "^7.4.15 || ^8.0.2",
"ext-json": "*",
"composer/xdebug-handler": "^1.4 || ^2.0 || ^3.0",
"guzzlehttp/guzzle": "^7.4",
"guzzlehttp/psr7": "^2.4",
"symfony/console": "^4.4 || ^5.0 || ^6.0",
"symfony/error-handler": "^4.4 || ^5.0 || ^6.0",
"guzzlehttp/guzzle": "^7.8",
"guzzlehttp/psr7": "^2.6",
"symfony/console": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"knplabs/packagist-api": "^2.0"
},
"require-dev": {
"graham-campbell/analyzer": "^4.0",
"phpunit/phpunit": "^9.6"
"graham-campbell/analyzer": "^4.1",
"phpunit/phpunit": "^9.6.15"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit c9f5904

Please sign in to comment.