mirror of
https://github.com/ivuorinen/bbcodeparser.git
synced 2026-01-26 03:13:57 +00:00
78 lines
1.9 KiB
JSON
78 lines
1.9 KiB
JSON
{
|
|
"name": "ivuorinen/bbcodeparser",
|
|
"description": "Parse your BBCode easy with this library.",
|
|
"license": "MIT",
|
|
"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": [
|
|
{
|
|
"name": "Ismo Vuorinen",
|
|
"email": "ismo@ivuorinen.net",
|
|
"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": ">=7.4 || ^8.0 || ^8.1"
|
|
},
|
|
"require-dev": {
|
|
"dms/phpunit-arraysubset-asserts": "0.4.0",
|
|
"ergebnis/composer-normalize": "2.28.0",
|
|
"orchestra/testbench": "v6.24.1",
|
|
"phpunit/phpunit": "9.5.20",
|
|
"squizlabs/php_codesniffer": "3.7.1"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|
|
}
|