Skip to content

Commit

Permalink
feat: upgrade php to 8.3, upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ivuorinen committed Feb 13, 2024
1 parent f0fdf6f commit 6896fe3
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 72 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: PHP Composer

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

jobs:
build:
Expand All @@ -13,9 +13,9 @@ jobs:

strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['8.1']
phpunit-versions: ['latest']
operating-system: ["ubuntu-latest"]
php-versions: ["8.3"]
phpunit-versions: ["latest"]

steps:
- name: Setup PHP
Expand Down
134 changes: 67 additions & 67 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,72 +1,72 @@
{
"name": "ivuorinen/bbcodeparser",
"description": "Parse your BBCode easy with this library.",
"license": "MIT",
"type": "library",
"keywords": [
"bbcode",
"parser",
"laravel"
],
"authors": [
{
"name": "Ismo Vuorinen",
"homepage": "https://github.com/ivuorinen"
},
{
"name": "Joseph Landberg",
"email": "joseph.landberg@gmail.com",
"homepage": "https://github.com/golonka/"
}
],
"homepage": "https://github.com/ivuorinen/bbcodeparser",
"support": {
"issues": "https://github.com/ivuorinen/bbcodeparser/issues"
"name": "ivuorinen/bbcodeparser",
"description": "Parse your BBCode easy with this library.",
"license": "MIT",
"type": "library",
"keywords": [
"bbcode",
"parser",
"laravel"
],
"authors": [
{
"name": "Ismo Vuorinen",
"homepage": "https://github.com/ivuorinen"
},
"require": {
"php": "^8.1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.30",
"orchestra/testbench": "^8",
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "^3"
},
"replace": {
"golonka/bbcodeparser": "*"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"ivuorinen\\BBCode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ivuorinen\\BBCode\\Tests\\": "tests/"
},
"classmap": [
"tests/"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"extra": {
"laravel": {
"aliases": {
"BBCode": "ivuorinen\\BBCode\\Facades\\BBCodeParser"
},
"providers": [
"ivuorinen\\BBCode\\BBCodeParserServiceProvider"
]
}
{
"name": "Joseph Landberg",
"email": "joseph.landberg@gmail.com",
"homepage": "https://github.com/golonka/"
}
],
"homepage": "https://github.com/ivuorinen/bbcodeparser",
"support": {
"issues": "https://github.com/ivuorinen/bbcodeparser/issues"
},
"require": {
"php": "^8.3"
},
"require-dev": {
"ergebnis/composer-normalize": "^2",
"orchestra/testbench": "^8",
"squizlabs/php_codesniffer": "^3"
},
"replace": {
"golonka/bbcodeparser": "*"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"ivuorinen\\BBCode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ivuorinen\\BBCode\\Tests\\": "tests/"
},
"scripts": {
"lint": "vendor/bin/phpcs",
"lint-fix": "vendor/bin/phpcbf",
"test": "vendor/bin/phpunit"
"classmap": [
"tests/"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"kylekatarnls/update-helper": true
}
},
"extra": {
"laravel": {
"aliases": {
"BBCode": "ivuorinen\\BBCode\\Facades\\BBCodeParser"
},
"providers": [
"ivuorinen\\BBCode\\BBCodeParserServiceProvider"
]
}
},
"scripts": {
"lint": "vendor/bin/phpcs",
"lint-fix": "vendor/bin/phpcbf",
"test": "vendor/bin/phpunit"
}
}

0 comments on commit 6896fe3

Please sign in to comment.