-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
composer.json
43 lines (43 loc) · 1.08 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
{
"name": "jolicode/jolinotif",
"description": "Send desktop notifications on Windows, Linux, MacOS.",
"keywords": ["notification", "windows", "linux", "mac", "growl"],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Loïck Piera",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Joli\\JoliNotif\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joli\\JoliNotif\\tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"jolicode/php-os-helper": "^0.1.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/process": "^5.4 || ^6.0 || ^7.0",
"symfony/deprecation-contracts": "^3"
},
"require-dev": {
"symfony/finder": "^5.4 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0"
},
"suggest": {
"ext-ffi": "Needed to send notifications via libnotify on Linux"
},
"bin": [
"jolinotif"
],
"config": {
"sort-packages": true
}
}