mirror of
https://github.com/ivuorinen/bbcodeparser.git
synced 2026-01-26 11:23:58 +00:00
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"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",
|
|
"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/"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~5",
|
|
"squizlabs/php_codesniffer": "~2",
|
|
"orchestra/testbench": "~3.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"ivuorinen\\BBCode\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": { "ivuorinen\\BBCode\\Tests\\": "tests/" },
|
|
"classmap": [
|
|
"tests/"
|
|
]
|
|
},
|
|
"minimum-stability": "stable",
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"ivuorinen\\BBCode\\BBCodeParserServiceProvider"
|
|
],
|
|
"aliases": {
|
|
"BBCode": "ivuorinen\\BBCode\\Facades\\BBCodeParser"
|
|
}
|
|
}
|
|
}
|
|
}
|