-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.87 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.87 KB
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
{
"name": "jeckel-lab/ipc-shared-memory",
"description": "A library to use shared memory for Inter-Process Communication without collision",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Julien Mercier-Rojas",
"email": "julien@jeckel-lab.fr"
}
],
"require": {
"php": "~8.2"
},
"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",
"phpunit/phpunit": "^10.4",
"symfony/var-dumper": "^6.3",
"phpro/grumphp": "^2.1",
"phpmd/phpmd": "^2.14",
"maglnet/composer-require-checker": "^4.7",
"infection/infection": "^0.27.4",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"JeckelLab\\IpcSharedMemory\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"JeckelLab\\IpcSharedMemory\\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"
}
}