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
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/php73.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/php74.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/php80.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/php82.yml

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/php81.yml → .github/workflows/php83.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PHP 8.1
name: PHP 8.3

on:
push:
Expand All @@ -11,12 +11,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4.2.2

- name: Setup PHP Action
uses: shivammathur/setup-php@2.15.0
uses: shivammathur/setup-php@2.33.0
with:
php-version: '8.1'
php-version: '8.3'

- name: Validate composer.json and composer.lock
run: composer validate
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
"support": {
},
"require": {
"php": "^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2"
"php": "^8.3"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5 || ^10.0",
"squizlabs/php_codesniffer": "^3.7"
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.2",
"squizlabs/php_codesniffer": "^3.13"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 0 additions & 4 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,3 @@ parameters:
level: 9
paths:
- src
ignoreErrors:
- '#Call to an undefined static method Eightfold\\HTMLBuilder\\Element::(.*)#'
- '#Call to an undefined static method Eightfold\\XMLBuilder\\Element::(.*)#'
- '#Call to an undefined static method Eightfold\\XMLBuilder\\Document::(.*)#'
10 changes: 10 additions & 0 deletions src/Base.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

namespace Eightfold;

class Base
{
/**
* Created to satisfy PHPStan requirements
*/
}