-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
81 lines (81 loc) · 2.53 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "darkwood/flow",
"description": "Flow",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mathieu Ledru",
"email": "[email protected]"
}
],
"keywords": [
"amphp",
"async",
"fiber",
"monad",
"reactphp",
"spatie",
"swoole",
"symfony",
"php"
],
"require": {
"php": ">=8.3",
"symfony/event-dispatcher": "^7.0",
"symfony/messenger": "^7.0"
},
"require-dev": {
"amphp/amp": "^3.0",
"openswoole/ide-helper": "^22.1.5",
"react/async": "^4.3",
"spatie/async": "^1.6",
"symfony/doctrine-messenger": "^7.0",
"symfony/orm-pack": "^2.4"
},
"suggest": {
"amphp/amp": "Provide asynchronous with AMP",
"ext-openswoole": "Provide asynchronous with OpenSwoole",
"react/async": "Provide asynchronous with ReactPHP",
"symfony/messenger": "Provide Symfony Messenger support",
"spatie/async": "Provide asynchronous with Spatie"
},
"autoload": {
"psr-4": {
"Flow\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Flow\\Examples\\": "examples",
"Flow\\Test\\": "tests"
}
},
"scripts": {
"dev": "cd tools && castor flow:tools:dev",
"docs-serve": "cd tools && castor flow:tools:docs-serve",
"infection": "cd tools && castor flow:tools:infection",
"phan": "cd tools && castor flow:tools:phan",
"php-cs-fixer": "cd tools && castor flow:tools:php-cs-fixer",
"phpcbf": "cd tools && castor flow:tools:phpcbf",
"phpcs": "cd tools && castor flow:tools:phpcs",
"phpmd": "cd tools && castor flow:tools:phpmd",
"phpstan": "cd tools && castor flow:tools:phpstan",
"phpunit": "cd tools && castor flow:tools:phpunit",
"psalm": "cd tools && castor flow:tools:psalm"
},
"scripts-descriptions": {
"dev": "Start dev server",
"docs-serve": "Start documentation server locally",
"infection": "Run Infection",
"phan": "Run Phan",
"php-cs-fixer": "Check and fix coding styles using PHP CS Fixer",
"phpcbf": "Clean code with PHP Code Beautifier and Fixer",
"phpcs": "Run PHP Code Sniffer",
"phpmd": "Run PHP Mess Detector",
"phpstan": "Execute PHPStan analysis",
"phpunit": "Launch PHPUnit test suite",
"psalm": "Run Psalm"
},
"minimum-stability": "stable"
}