diff --git a/.github/workflows/branch-validations.yaml b/.github/workflows/branch-validations.yaml index 0406cbb..9ea0469 100644 --- a/.github/workflows/branch-validations.yaml +++ b/.github/workflows/branch-validations.yaml @@ -15,13 +15,13 @@ jobs: security: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: symfonycorp/security-checker-action@v3 + - uses: actions/checkout@v4 + - uses: symfonycorp/security-checker-action@v5 composer: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: @@ -29,19 +29,19 @@ jobs: tools: composer:v2 - name: Composer cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: key: composer-${{ hashFiles('**/composer.lock') }} path: ${{ github.workspace }}/.cache - name: Vendor cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: key: vendor-${{ hashFiles('**/composer.lock') }} path: ${{ github.workspace }}/vendor - name: Tools cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: key: tools path: ${{ github.workspace }}/.cache @@ -65,7 +65,7 @@ jobs: phpstan: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: @@ -73,19 +73,19 @@ jobs: tools: composer:v2 - name: Composer cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: key: composer-${{ hashFiles('**/composer.lock') }} path: ${{ github.workspace }}/.cache - name: Vendor cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: key: vendor-${{ hashFiles('**/composer.lock') }} path: ${{ github.workspace }}/vendor - name: Tools cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: key: tools path: ${{ github.workspace }}/.cache @@ -102,24 +102,24 @@ jobs: phpcs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '8.1' tools: composer:v2 - name: Composer cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: key: composer-${{ hashFiles('**/composer.lock') }} path: ${{ github.workspace }}/.cache - name: Vendor cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: key: vendor-${{ hashFiles('**/composer.lock') }} path: ${{ github.workspace }}/vendor - name: Tools cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: key: tools path: ${{ github.workspace }}/.cache diff --git a/composer.lock b/composer.lock index ec737fb..69f4718 100644 --- a/composer.lock +++ b/composer.lock @@ -840,16 +840,16 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "3.7.1", + "version": "3.13.6", "source": { "type": "git", - "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619" + "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", + "reference": "4c378e1a528ea066890fc2397cbdd2f94eb2fc91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/1359e176e9307e906dc3d890bcc9603ff6d90619", - "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/4c378e1a528ea066890fc2397cbdd2f94eb2fc91", + "reference": "4c378e1a528ea066890fc2397cbdd2f94eb2fc91", "shasum": "" }, "require": { @@ -859,18 +859,13 @@ "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4" }, "bin": [ - "bin/phpcs", - "bin/phpcbf" + "bin/phpcbf", + "bin/phpcs" ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.x-dev" - } - }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" @@ -878,32 +873,60 @@ "authors": [ { "name": "Greg Sherwood", - "role": "lead" + "role": "Former lead" + }, + { + "name": "Juliette Reinders Folmer", + "role": "Current lead" + }, + { + "name": "Contributors", + "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors" } ], "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", - "homepage": "https://github.com/squizlabs/PHP_CodeSniffer", + "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer", "keywords": [ "phpcs", - "standards" + "standards", + "static analysis" ], "support": { - "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues", - "source": "https://github.com/squizlabs/PHP_CodeSniffer", - "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" + "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues", + "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy", + "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer", + "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki" }, - "time": "2022-06-18T07:21:10+00:00" + "funding": [ + { + "url": "https://github.com/PHPCSStandards", + "type": "github" + }, + { + "url": "https://github.com/jrfnl", + "type": "github" + }, + { + "url": "https://opencollective.com/php_codesniffer", + "type": "open_collective" + }, + { + "url": "https://thanks.dev/u/gh/phpcsstandards", + "type": "thanks_dev" + } + ], + "time": "2026-08-06T00:17:32+00:00" } ], "aliases": [], "minimum-stability": "dev", - "stability-flags": [], + "stability-flags": {}, "prefer-stable": true, "prefer-lowest": false, "platform": { "php": "^8.0", "ext-mbstring": "^8.0" }, - "platform-dev": [], - "plugin-api-version": "2.3.0" + "platform-dev": {}, + "plugin-api-version": "2.9.0" }