-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.7 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.7 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
{
"name": "ray/web-form-module",
"description":"Web Form module for Ray.Di",
"keywords":[
"web form",
"Ray.Di module"
],
"require": {
"php": ">=8.0.0",
"ray/di": "^2.16",
"ray/aop": "^2.14",
"aura/input": "^1.2",
"aura/filter": "^2.3|3.x-dev",
"aura/html": "^2.5",
"aura/session": "^2.1 || ^4.0",
"ray/aura-session-module": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"doctrine/coding-standard": "^14.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^4.0",
"vimeo/psalm": "^5.0 || ^6.0",
"phpmd/phpmd": "^2.13",
"maglnet/composer-require-checker": "^4.0"
},
"license": "MIT",
"autoload":{
"psr-4":{
"Ray\\WebFormModule\\": "src/"
}
},
"autoload-dev":{
"psr-4":{
"Ray\\WebFormModule\\": ["tests/", "tests/Fake"]
}
},
"scripts" :{
"test": ["@cs", "phpunit"],
"tests": ["@cs", "@sa", "@test"],
"coverage": ["php -dzend_extension=xdebug.so ./vendor/bin/phpunit --coverage-text --coverage-html=build/coverage"],
"cs": "phpcs",
"cs-fix": "phpcbf",
"phpstan": "phpstan analyse -c phpstan.neon --no-progress",
"psalm": "psalm --show-info=false",
"phpmd": "phpmd src text ./phpmd.xml",
"crc": "composer-require-checker check ./composer.json --config-file=./composer-require-checker.json",
"sa": ["@phpstan", "@psalm"]
},
"config": {
"allow-plugins": {
"aura/installer-default": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}