-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (56 loc) · 1.37 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
{
"name": "swoolefony/swoole-bundle",
"type": "symfony-bundle",
"description": "A Swoole bundle for Symfony.",
"keywords": [
"Swoole",
"async",
"coroutine"
],
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Chad Sikorra",
"email": "Chad.Sikorra@gmail.com",
"homepage": "https://www.chadsikorra.com/"
}
],
"require": {
"php": ">=8.2",
"symfony/console": "^6.3",
"symfony/dependency-injection": "^6.3",
"symfony/framework-bundle": "^6.3",
"symfony/http-foundation": "^6.3",
"symfony/http-kernel": "^6.3",
"symfony/runtime": "^6.3"
},
"require-dev": {
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.2",
"swoole/ide-helper": "~5.0.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/runtime": true
}
},
"autoload": {
"psr-4": {
"Swoolefony\\SwooleBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swoolefony\\SwooleBundle\\Tests\\": "tests/"
}
},
"scripts": {
"tests": "phpunit",
"analyze": "phpstan"
}
}