-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
41 lines (41 loc) · 1.2 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
{
"name": "win32service/service-library",
"type": "library",
"description": "Library for ease to use Win32Service PHP extension",
"homepage": "https://win32service.mactronique.fr/service_library.html",
"keywords": ["win32service", "service", "windows", "service manager"],
"license": "MIT",
"authors": [
{
"name": "MacintoshPlus",
"email": "[email protected]",
"homepage": "https://win32service.github.io",
"role": "Lead Dev"
}
],
"autoload": {
"psr-4": {
"Win32Service\\": "lib/"
},
"files": [
"lib/pollyfill-7.php",
"lib/pollyfill-8.php"
]
},
"autoload-dev": {
"psr-4": {
"Win32Service\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0"
},
"require-dev": {
"atoum/atoum": "^3.3||4.x-dev",
"psalm/phar": "^3.14||^4.0",
"rector/rector": "^0.14.2"
},
"suggest": {
"ext-win32service": "This extension is needed on Win32 platform. Download from https://pecl.php.net/package/win32service or https://github.com/win32service/win32service/releases"
}
}