mirror of
https://github.com/ivuorinen/bbcodeparser.git
synced 2026-01-26 11:23:58 +00:00
GitHub actions, normalization and support for PHP8
This commit is contained in:
@@ -1,12 +1,20 @@
|
||||
{
|
||||
"name": "ivuorinen/bbcodeparser",
|
||||
"description": "Parse your BBCode easy with this library.",
|
||||
"keywords": ["bbcode", "parser", "laravel", "psr-1", "psr-2", "psr-4"],
|
||||
"homepage": "https://github.com/ivuorinen/bbcodeparser",
|
||||
"type": "library",
|
||||
"license": "MIT",
|
||||
"support": {
|
||||
"issues": "https://github.com/ivuorinen/bbcodeparser/issues"
|
||||
"type": "library",
|
||||
"keywords": [
|
||||
"bbcode",
|
||||
"parser",
|
||||
"laravel",
|
||||
"psr-1",
|
||||
"psr-2",
|
||||
"psr-4"
|
||||
],
|
||||
"scripts": {
|
||||
"test": "vendor/bin/phpunit",
|
||||
"lint": "vendor/bin/phpcs",
|
||||
"lint-fix": "vendor/bin/phpcbf"
|
||||
},
|
||||
"authors": [
|
||||
{
|
||||
@@ -20,37 +28,50 @@
|
||||
"homepage": "https://github.com/golonka/"
|
||||
}
|
||||
],
|
||||
"homepage": "https://github.com/ivuorinen/bbcodeparser",
|
||||
"support": {
|
||||
"issues": "https://github.com/ivuorinen/bbcodeparser/issues"
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7"
|
||||
"php": ">=7.3 || ^8.0 || ^8.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "~5",
|
||||
"squizlabs/php_codesniffer": "~2",
|
||||
"orchestra/testbench": "~3.0"
|
||||
"dms/phpunit-arraysubset-asserts": "^0.3.0",
|
||||
"ergebnis/composer-normalize": "^2.23",
|
||||
"orchestra/testbench": "^6.18",
|
||||
"phpunit/phpunit": "^9.5",
|
||||
"squizlabs/php_codesniffer": "^3.6"
|
||||
},
|
||||
"replace": {
|
||||
"golonka/bbcodeparser": "*"
|
||||
},
|
||||
"minimum-stability": "stable",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"ivuorinen\\BBCode\\": "src/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": { "ivuorinen\\BBCode\\Tests\\": "tests/" },
|
||||
"psr-4": {
|
||||
"ivuorinen\\BBCode\\Tests\\": "tests/"
|
||||
},
|
||||
"classmap": [
|
||||
"tests/"
|
||||
]
|
||||
},
|
||||
"minimum-stability": "stable",
|
||||
"replace": {
|
||||
"golonka/bbcodeparser": "*"
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"ergebnis/composer-normalize": true
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
"laravel": {
|
||||
"providers": [
|
||||
"ivuorinen\\BBCode\\BBCodeParserServiceProvider"
|
||||
],
|
||||
"aliases": {
|
||||
"BBCode": "ivuorinen\\BBCode\\Facades\\BBCodeParser"
|
||||
}
|
||||
},
|
||||
"providers": [
|
||||
"ivuorinen\\BBCode\\BBCodeParserServiceProvider"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user