-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
40 lines (40 loc) · 978 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
{
"name": "genert/bbcode",
"description": "BBCode parser from or to HTML.",
"keywords": ["bbcode", "parser", "laravel", "psr-1", "psr-2", "psr-4"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Genert Org",
"email": "hi@genert.org",
"homepage": "http://genert.org"
}
],
"autoload": {
"psr-4": {
"Genert\\BBCode\\": "src/"
}
},
"support": {
"issues": "https://github.com/Genert/bbcode/issues"
},
"minimum-stability": "stable",
"require": {},
"require-dev": {
"phpunit/phpunit": "9.5.25"
},
"scripts": {
"test": "phpunit --coverage-text"
},
"extra": {
"laravel": {
"providers": [
"Genert\\BBCode\\BBCodeServiceProvider"
],
"aliases": {
"Invoice": "Genert\\BBCode\\Facades\\BBCode"
}
}
}
}