-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.93 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
{
"name": "jerome/matrix",
"description": "An unparalleled PHP asynchronous experience, offering genuine concurrency and fiber-based task management.",
"version": "3.1.0",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jerome Thayananthajothy",
"email": "tjthavarshan@gmail.com"
}
],
"homepage": "https://thavarshan.com",
"support": {
"issues": "https://github.com/Thavarshan/matrix/issues",
"source": "https://github.com/Thavarshan/matrix"
},
"require": {
"php": "^8.2",
"ext-pcntl": "*",
"ext-posix": "*",
"react/event-loop": "^1.5",
"react/promise": "^3.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.65",
"guzzlehttp/guzzle": "^7.0",
"laravel/pint": "^1.18",
"mockery/mockery": "^1.6",
"pestphp/pest": "^3.0",
"php-mock/php-mock": "^2.5",
"php-mock/php-mock-mockery": "^1.4",
"phpstan/phpstan": "^1.11.5",
"squizlabs/php_codesniffer": "^3.11",
"symfony/var-dumper": "^7.2"
},
"autoload": {
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"analyse": "chmod +x bin/analysis.sh && ./bin/analysis.sh",
"lint": "chmod +x bin/lint.sh && ./bin/lint.sh",
"fix": "chmod +x bin/fix.sh && ./bin/fix.sh",
"test": "vendor/bin/pest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
},
"optimize-autoloader": true,
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}