-
-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.18 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.18 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
{
"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": "pyrech@gmail.com"
}
],
"autoload": {
"psr-4": {
"Joli\\JoliNotif\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joli\\JoliNotif\\tests\\": "tests/"
}
},
"require": {
"php": ">=8.3",
"jolicode/php-os-helper": "^0.3",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/process": "^6.4 || ^7.3 || ^8.0",
"symfony/deprecation-contracts": "^3"
},
"require-dev": {
"monolog/monolog": "^3.9",
"symfony/finder": "^6.4 || ^7.3 || ^8.0",
"phpunit/phpunit": "^12.4.5"
},
"suggest": {
"ext-ffi": "Needed to send notifications via libnotify on Linux"
},
"bin": [
"jolinotif"
],
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
}
}
}