-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
65 lines (65 loc) · 1.88 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
{
"name": "tecnocen/yii2-roa",
"description": "Yii 2 ROA Library",
"keywords": [
"yii2",
"framework",
"advanced",
"rest",
"soa",
"roa",
"architecture"
],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"authors": [
{
"name": "Angel (Faryshta) Guevara",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=7.1",
"tecnocen/yii2-oauth2-server": "^4.0.0",
"yiisoft/yii2": "~2.0.14"
},
"require-dev": {
"ext-curl": "*",
"codeception/base": "^2.2.1",
"codeception/verify": "~0.3.1|~1.0.0",
"flow/jsonpath": "~0.3",
"tecnocen/yii2-migrate": "*",
"tecnocen/yii2-rmdb": "*",
"phpunit/php-code-coverage": "*",
"yiisoft/yii2-debug": "*",
"yii2tech/ar-softdelete": "~1.0.2"
},
"scripts": {
"yii": "@php tests/_app/yii.php",
"deploy-tests": [
"@composer update --prefer-stable",
"@composer yii -- migrate -p=@tecnocen/oauth2server/migrations/tables --interactive=0",
"@composer yii -- migrate -p=@app/migrations/ --interactive=0"
],
"run-tests": "@php vendor/bin/codecept run --steps",
"run-coverage": "@composer run-tests -- --coverage --coverage-xml"
},
"scripts-descriptions": {
"yii": "shortcut for `php tests/_app/yii.php`",
"deploy-tests": "Deploy the testing application",
"run-tests": "shortcut for `codecept run --steps`",
"run-coverage": "shortcut for `run-tests -- --coverage --coverage-xml"
},
"autoload": {
"psr-4": {
"tecnocen\\roa\\": "src/"
}
}
}