-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
80 lines (80 loc) · 1.77 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
{
"name": "reliforp/reli-prof",
"description": "A sampling profiler or a memory profiler for PHP written in PHP, which reads information about running PHP VM from outside of the process.",
"type": "project",
"license": "MIT",
"keywords": [
"php",
"profiler",
"ffi"
],
"authors": [
{
"name": "sji",
"homepage": "https://twitter.com/sji_ch"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"ext-ffi": "*",
"ext-filter": "*",
"ext-json": "*",
"ext-pcntl": "*",
"symfony/console": "6.3.8",
"php-di/php-di": "7.0.6",
"amphp/parallel": "2.2.9",
"amphp/amp": "3.0.2",
"hassankhan/config": "3.1.0",
"sj-i/php-cast": "1.0.0",
"monolog/monolog": "3.6.0",
"webmozart/assert": "1.11.0"
},
"require-dev": {
"ext-posix": "*",
"phpunit/phpunit": "10.5.20",
"squizlabs/php_codesniffer": "3.10.1",
"mockery/mockery": "1.6.12",
"jetbrains/phpstorm-stubs": "2024.1",
"php-coveralls/php-coveralls": "2.7.0",
"psalm/phar": "^5.11"
},
"autoload": {
"files": ["src/Lib/Defer/defer.php"],
"psr-4": {
"Reli\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Reli\\": "tests",
"Reli\\Command\\": "tests/Command/CommandEnumeratorTestData"
}
},
"bin": [
"reli"
],
"scripts": {
"test": [
"docker-compose run reli-test"
],
"test-with-coverage": [
"docker-compose run reli-test-with-coverage"
],
"test-for-ci": [
"docker-compose run reli-test-for-ci"
],
"psalm": [
"psalm.phar"
],
"phpcs": [
"phpcs --standard=./phpcs.xml ./src ./tests"
]
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}