mirror of
https://github.com/ivuorinen/bbcodeparser.git
synced 2026-01-26 11:23:58 +00:00
feat: upgrade php to 8.3, upgrade deps
This commit is contained in:
10
.github/workflows/php.yml
vendored
10
.github/workflows/php.yml
vendored
@@ -2,9 +2,9 @@ name: PHP Composer
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ master ]
|
branches: [master]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master ]
|
branches: [master]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@@ -13,9 +13,9 @@ jobs:
|
|||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
operating-system: ['ubuntu-latest']
|
operating-system: ["ubuntu-latest"]
|
||||||
php-versions: ['8.1']
|
php-versions: ["8.3"]
|
||||||
phpunit-versions: ['latest']
|
phpunit-versions: ["latest"]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Setup PHP
|
- name: Setup PHP
|
||||||
|
|||||||
136
composer.json
136
composer.json
@@ -1,72 +1,72 @@
|
|||||||
{
|
{
|
||||||
"name": "ivuorinen/bbcodeparser",
|
"name": "ivuorinen/bbcodeparser",
|
||||||
"description": "Parse your BBCode easy with this library.",
|
"description": "Parse your BBCode easy with this library.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"bbcode",
|
"bbcode",
|
||||||
"parser",
|
"parser",
|
||||||
"laravel"
|
"laravel"
|
||||||
],
|
],
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Ismo Vuorinen",
|
"name": "Ismo Vuorinen",
|
||||||
"homepage": "https://github.com/ivuorinen"
|
"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"
|
|
||||||
},
|
},
|
||||||
"require": {
|
{
|
||||||
"php": "^8.1"
|
"name": "Joseph Landberg",
|
||||||
},
|
"email": "joseph.landberg@gmail.com",
|
||||||
"require-dev": {
|
"homepage": "https://github.com/golonka/"
|
||||||
"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"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"lint": "vendor/bin/phpcs",
|
|
||||||
"lint-fix": "vendor/bin/phpcbf",
|
|
||||||
"test": "vendor/bin/phpunit"
|
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
"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/"
|
||||||
|
},
|
||||||
|
"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"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user