-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
55 lines (55 loc) · 1.43 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
{
"name": "xetaio/xetaravel-mentions",
"description": "A package to parse a @mention from a text and mention the user with a notification.",
"keywords": [
"laravel",
"laravel-5-package",
"mentions",
"users",
"notifications"
],
"homepage": "https://github.com/XetaIO/Xetaravel-Mentions",
"support": {
"source": "https://github.com/XetaIO/Xetaravel-Mentions",
"issues": "https://github.com/XetaIO/Xetaravel-Mentions/issues"
},
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Xety",
"email": "[email protected]",
"homepage": "https://github.com/Xety"
}
],
"require": {
"php": ">=8.1",
"illuminate/support": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"xety/configurator": "^1.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^9.5|^10.5",
"squizlabs/php_codesniffer": "^3.2"
},
"autoload": {
"psr-4": {
"Xetaio\\Mentions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Xetaio\\Mentions\\Providers\\MentionServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}