-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
36 lines (36 loc) · 1.05 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
{
"name": "sam-it/yii2-urlsigner",
"description": "Secure URL signing and validation for the Yii2 framework",
"type": "yii2-extension",
"license": "MIT",
"authors": [
{
"name": "Sam Mousa",
"email": "sam@mousa.nl"
}
],
"require": {
"yiisoft/yii2": "^2.0.13"
},
"autoload": {
"psr-4": {
"SamIT\\Yii2\\UrlSigner\\" : "src/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require-dev": {
"codeception/codeception": "^3.1",
"friendsofphp/php-cs-fixer": "^2.9"
},
"scripts": {
"test": "vendor/bin/codecept build && vendor/bin/codecept run --no-interaction",
"test-with-cc": "vendor/bin/codecept build && phpdbg -qrr vendor/bin/codecept run --no-interaction --coverage-xml --coverage-html",
"lint": "vendor/bin/php-cs-fixer fix --dry-run --verbose --diff",
"lint-fix": "vendor/bin/php-cs-fixer fix --verbose"
}
}