-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
68 lines (68 loc) · 1.92 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "win32service/win32servicebundle",
"type": "symfony-bundle",
"description": "Bundle for integrate the win32service/service-library into a Symfony Project",
"keywords": ["win32service", "service", "windows", "service manager", "symfony", "bundle"],
"homepage": "https://win32service.mactronique.fr/bundle.html",
"license": "MIT",
"authors": [
{
"name": "MacintoshPlus",
"email": "[email protected]",
"homepage": "https://win32service.github.io",
"role": "Lead Dev"
}
],
"autoload": {
"psr-4": {
"Win32ServiceBundle\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Win32ServiceBundle\\Tests\\Application\\": "tests/Application/src/",
"Win32ServiceBundle\\Tests\\": "tests/"
}
},
"minimum-stability": "beta",
"require": {
"php": "^8.0",
"win32service/service-library": "^1.0||1.x-dev",
"symfony/http-kernel": "^5.4|^6.0",
"symfony/console": "^5.4|^6.0",
"symfony/config": "^5.4|^6.0",
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/event-dispatcher": "^5.4|^6.0",
"symfony/yaml": "^5.4|^6.0",
"symfony/framework-bundle": "^5.4|^6.0"
},
"require-dev": {
"rector/rector": "^0.14.2",
"symfony/dotenv": "^5.4|^6.0",
"symfony/runtime": "^5.4|^6.0",
"symfony/messenger": "^5.4|^6.0",
"symfony/doctrine-messenger": "^5.4|^6.0",
"symfony/monolog-bundle": "^3.10",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^2.19",
"phpunit/phpunit": "^9.6"
},
"conflict": {
"win32service/service-library": "<1.0.2"
},
"suggest": {
"ext-win32service": "On Windows only, install this extension to run PHP Service on Windows Service Manager"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^5.4"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}