Skip to content
Closed
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
12 changes: 0 additions & 12 deletions .eslintrc.json

This file was deleted.

15 changes: 8 additions & 7 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
.editorconfig export-ignore
.eslintrc.json export-ignore
.gitattributes export-ignore
.github/ export-ignore
.gitignore export-ignore
Doxyfile export-ignore
composer.json export-ignore
.phpcs.xml export-ignore
phpunit.xml export-ignore
tests/ export-ignore
.github/ export-ignore
.eslintrc.json export-ignore
composer.json export-ignore
composer.lock export-ignore
docs/ export-ignore
package-lock.json export-ignore
package.json export-ignore
docs/ export-ignore
phpunit.xml export-ignore
tests/ export-ignore
yaml-sort-checker.yml export-ignore
2 changes: 1 addition & 1 deletion .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-v: [16.x, 18.x, 20.x]
node-v: [20.x, 22.x, 24.x]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.0, 8.1, 8.2]
php: [8.0, 8.1, 8.2, 8.3, 8.4, 8.5]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
26 changes: 26 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Read the Docs configuration file for Sphinx projects
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2

# Set the OS, Python version and other tools you might need
build:
os: ubuntu-24.04
tools:
python: "3.12"

# Build documentation in the "docs/" directory with Sphinx
sphinx:
configuration: docs/conf.py

# Optionally build your docs in additional formats such as PDF and ePub
# formats:
# - pdf
# - epub

# Optional but recommended, declare the Python requirements required
# to build your documentation
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
install:
- requirements: docs/requirements.txt
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
}
],
"require": {
"php": ">=8.0",
"mustangostang/spyc": "0.6.3"
"php": ">=8.0"
},
"require-dev": {
"ext-curl": "*",
"phpunit/phpunit": "9.6.20",
"mediawiki/mediawiki-codesniffer": "47.0.0"
"mediawiki/mediawiki-codesniffer": "47.0.0",
"mustangostang/spyc": "0.6.3"
},

"support": {
Expand Down
Loading