-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1023 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
40
41
42
43
44
{
"name": "chillerlan/php-bbcode",
"description": "A powerful, extensive recursive regexp BBCode parser. PHP 7.2+",
"homepage": "https://github.com/chillerlan/php-bbcode",
"license": "MIT",
"type": "library",
"minimum-stability": "dev",
"keywords": [
"bbcode", "parser", "html5", "markdown"
],
"authors": [
{
"name": "Smiley",
"email": "[email protected]",
"homepage": "https://github.com/codemasher"
}
],
"support": {
"issues": "https://github.com/chillerlan/php-bbcode/issues",
"source": "https://github.com/chillerlan/php-bbcode"
},
"require": {
"php": "^7.2",
"psr/log": "^1.0",
"psr/simple-cache": "^1.0",
"chillerlan/php-settings-container": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"chillerlan/php-database": "^3.0",
"ezyang/htmlpurifier": "^4.10"
},
"autoload": {
"psr-4": {
"chillerlan\\BBCode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\BBCodeTest\\": "tests/",
"chillerlan\\bbcodeExamples\\": "examples/"
}
}
}