-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
36 lines (36 loc) · 994 Bytes
/
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
{
"name": "ray/web-form-module",
"description":"Web Form module for Ray.Di",
"keywords":[
"web form",
"Ray.Di module"
],
"require": {
"php": ">=7.0.0",
"ray/di": "^2.7",
"aura/input": "^1.2",
"aura/filter": "^2.3|3.x-dev",
"aura/html": "^2.5",
"ray/aura-session-module": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^5.7.13"
},
"license": "MIT",
"autoload":{
"psr-4":{
"Ray\\WebFormModule\\": "src/"
}
},
"autoload-dev":{
"psr-4":{
"Ray\\WebFormModule\\": ["tests/", "tests/Fake"]
}
},
"scripts" :{
"test": ["@cs", "phpunit"],
"coverage": ["php -dzend_extension=xdebug.so ./vendor/bin/phpunit --coverage-text --coverage-html=build/coverage"],
"cs": ["php-cs-fixer fix -v --dry-run", "phpcs --standard=./phpcs.xml src"],
"cs-fix": ["php-cs-fixer fix -v", "phpcbf src"]
}
}