-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
39 lines (39 loc) · 994 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"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"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}