-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.16 KB
/
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": "youthweb/bbcode-parser",
"type": "library",
"description": "BBCode-to-HTML parser",
"homepage": "https://github.com/youthweb/bbcode-parser",
"keywords": ["bbcode", "parser", "html", "youthweb"],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Artur Weigandt",
"email": "art4@youthweb.net",
"homepage": "https://wlabs.de"
}
],
"require": {
"php": "^7.4 || ^8.0",
"cache/void-adapter": "^1.1",
"jakeasmith/http_build_url": "^1",
"jbbcode/jbbcode": "^1.4",
"youthweb/urllinker": "^1.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Youthweb\\BBCodeParser\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Youthweb\\BBCodeParser\\Tests\\": "tests"
}
},
"scripts": {
"php-cs-fixer": "vendor/bin/php-cs-fixer fix",
"phpstan": "vendor/bin/phpstan --level=1 analyze src"
},
"config": {
"sort-packages": true
}
}