-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 1.5 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "ivuorinen/bbcodeparser",
"description": "Parse your BBCode easy with this library.",
"license": "MIT",
"type": "library",
"keywords": [
"bbcode",
"parser",
"laravel"
],
"authors": [
{
"name": "Ismo Vuorinen",
"homepage": "https://github.com/ivuorinen"
},
{
"name": "Joseph Landberg",
"email": "joseph.landberg@gmail.com",
"homepage": "https://github.com/golonka/"
}
],
"homepage": "https://github.com/ivuorinen/bbcodeparser",
"support": {
"issues": "https://github.com/ivuorinen/bbcodeparser/issues"
},
"require": {
"php": "^8.3"
},
"require-dev": {
"ergebnis/composer-normalize": "^2",
"orchestra/testbench": "^9",
"squizlabs/php_codesniffer": "^3"
},
"replace": {
"golonka/bbcodeparser": "*"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"ivuorinen\\BBCode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ivuorinen\\BBCode\\Tests\\": "tests/"
},
"classmap": [
"tests/"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"kylekatarnls/update-helper": true
}
},
"extra": {
"laravel": {
"aliases": {
"BBCode": "ivuorinen\\BBCode\\Facades\\BBCodeParser"
},
"providers": [
"ivuorinen\\BBCode\\BBCodeParserServiceProvider"
]
}
},
"scripts": {
"lint": "vendor/bin/phpcs",
"lint-fix": "vendor/bin/phpcbf",
"test": "vendor/bin/phpunit"
}
}