mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
34 lines
884 B
JSON
34 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"
|
|
}
|
|
}
|