generated from spiral-packages/package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.5 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.5 KB
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
{
"name": "spiral-packages/notifications",
"description": "Sending notifications from Spiral framework across a variety of delivery channels",
"keywords": [
"spiral-packages",
"spiral",
"notifications"
],
"homepage": "https://github.com/spiral-packages/notifications",
"license": "MIT",
"authors": [
{
"name": "butschster",
"email": "butschster@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"doctrine/inflector": "^2.0",
"spiral/boot": "^3.0",
"spiral/config": "^3.0",
"spiral/core": "^3.0",
"spiral/queue": "^3.0",
"spiral/sendit": "^3.0",
"spiral/snapshots": "^3.0",
"symfony/messenger": "^6.0",
"symfony/notifier": "^6.0"
},
"require-dev": {
"spiral/testing": "^2.0",
"symfony/firebase-notifier": "^6.0",
"vimeo/psalm": "^4.9"
},
"autoload": {
"psr-4": {
"Spiral\\Notifications\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\Notifications\\Tests\\App\\": "tests/app",
"Spiral\\Notifications\\Tests\\": "tests/src"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm --config=psalm.xml ./src"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"spiral/composer-publish-plugin": false
}
},
"extra": {
"spiral": {
"bootloaders": [
"Spiral\\Notifications\\Bootloader\\NotificationsBootloader"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}