-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 2.06 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
{
"name": "jeckel/ipc-shared-memory-demo",
"description": "A demo project on how to use the IPC-Shared-Memory package",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Julien Mercier-Rojas",
"email": "julien@jeckel-lab.fr"
}
],
"require": {
"php": "~8.2",
"ext-sysvmsg": "*",
"ext-sysvshm": "*",
"ext-sysvsem": "*",
"ext-pcntl": "*",
"ext-posix": "*",
"evenement/evenement": "^3.0",
"php-amqplib/php-amqplib": "^3.6",
"php-di/php-di": "^7.0",
"symfony/console": "^6.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.34",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"symfony/var-dumper": "^6.3",
"phpro/grumphp": "^2.1",
"phpmd/phpmd": "^2.14",
"maglnet/composer-require-checker": "^4.7",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"JeckelLab\\IpcSharedMemoryDemo\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"JeckelLab\\IpcSharedMemoryDemo\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"infection/extension-installer": true,
"phpro/grumphp": true
},
"sort-packages": true
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"analyze": "@analyse",
"cs-fix": "vendor/bin/php-cs-fixer fix --diff --verbose",
"phpmd": "vendor/bin/phpmd src,tests text ruleset.xml",
"test": "vendor/bin/phpunit --testdox",
"test-coverage": [
"Composer\\Config::disableProcessTimeout",
"XDEBUG_MODE=coverage vendor/bin/phpunit --testdox --coverage-html=.build/coverage"
],
"grumphp": "vendor/bin/grumphp run"
}
}