-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathcomposer.json
40 lines (40 loc) · 1.06 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
{
"name": "laravel-notification-channels/:package_name",
"description": ":package_description",
"homepage": "https://github.com/laravel-notification-channels/:package_name",
"license": "MIT",
"authors": [
{
"name": ":author_name",
"email": ":author_email",
"homepage": ":author_website",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"illuminate/notifications": "~10.0 || ~11.0",
"illuminate/support": "~10.0 || ~11.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"NotificationChannels\\:channel_namespace\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NotificationChannels\\:channel_namespace\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-text --coverage-clover=coverage.clover"
},
"config": {
"sort-packages": true
}
}