-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
70 lines (70 loc) · 2.17 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
66
67
68
69
70
{
"name": "tecnocen/yii2-oauth2-server",
"description": "OAuth2 Server for PHP",
"keywords": ["yii", "extension", "module", "oauth", "oauth2"],
"homepage": "https://github.com/tecnocen-com/yii2-oauth2-server",
"type": "yii2-extension",
"license": "MIT",
"support": {
"source": "https://github.com/tecnocen-com/yii2-oauth2-server"
},
"authors": [
{
"name": "Igor Maliy",
"email": "imaliy.filsh@gmail.com"
},
{
"name": "Angel (Faryshta) Guevara",
"email": "aguevara@solmipro.com"
},
{
"name": "Christopher C (Chofoteddy)",
"email": "ccastaneira@tecnocen.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=5.6",
"bshaffer/oauth2-server-php": "~1.3",
"tecnocen/yii2-migrate": "*",
"yiisoft/yii2": "~2.0.12"
},
"require-dev": {
"ext-curl": "*",
"codeception/base": "^2.2.1",
"codeception/verify": "~0.3.1|~1.0.0",
"flow/jsonpath": "~0.3",
"phpunit/php-code-coverage": "5.3.*",
"yiisoft/yii2-debug": "*"
},
"scripts": {
"yii": "@php tests/_app/yii.php",
"deploy-tests": [
"@composer update --prefer-stable",
"@php tests/_app/yii.php migrate -p=@tecnocen/oauth2server/migrations/tables --interactive=0",
"@php tests/_app/yii.php migrate -p=@app/migrations/ --interactive=0"
],
"run-tests": [
"@php vendor/bin/codecept run --steps"
],
"run-coverage": [
"@php vendor/bin/codecept run --steps api --coverage --coverage-xml --coverage-html"
]
},
"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\\oauth2server\\": "src/"
}
}
}