wiki-grav/plugins/shortcode-core/vendor/thunderer/shortcode/composer.json
2023-06-02 08:07:58 +02:00

35 lines
884 B
JSON

{
"name": "thunderer/shortcode",
"description": "Advanced shortcode (BBCode) parser and engine for PHP",
"keywords": ["shortcode", "bbcode", "parser", "engine", "library"],
"license": "MIT",
"authors": [
{
"name": "Tomasz Kowalczyk",
"email": "tomasz@kowalczyk.cc"
}
],
"require": {
"php": ">=5.3"
},
"require-dev": {
"phpunit/phpunit": ">=4.1",
"symfony/yaml": ">=2.0"
},
"autoload": {
"psr-4": {
"Thunder\\Shortcode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Thunder\\Shortcode\\Tests\\": "tests/"
}
},
"suggest": {
"symfony/yaml": "if you want to use YAML serializer",
"ext-dom": "if you want to use XML serializer",
"ext-json": "if you want to use JSON serializer"
}
}