-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 915 Bytes
/
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
{
"name": "amphp/dbus",
"homepage": "https://github.com/amphp/dbus",
"description": "Async DBus connector and message serializer and deserializer for Amp",
"keywords": [
"async",
"message",
"dbus",
"client"
],
"license": "MIT",
"authors": [
{
"name": "Bob Weinand",
"email": "bobwei9@hotmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=8.1",
"amphp/socket": "^2"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master"
},
"autoload": {
"psr-4": {
"Amp\\Dbus\\": "src"
},
"files": [
"src/functions.php"
]
},
"scripts": {
"check": [
"@cs"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff"
}
}