-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
65 lines (65 loc) · 1.95 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-workflow",
"description": "Yii 2 Library to configure workflows",
"keywords": [
"yii2",
"framework",
"workflow",
"roa"
],
"type": "yii2-extension",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Angel (Faryshta) Guevara",
"email": "aguevara@solmipro.com",
"homepage": "http://tecnocen.com"
},
{
"name": "Carlos (neverabe) Llamosas",
"email": "carlos@tecnocen.com",
"homepage": "http://tecnocen.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": "^7.1",
"tecnocen/yii2-roa": "~0.5.0",
"tecnocen/yii2-rmdb": "*",
"yii2tech/ar-softdelete": "*"
},
"require-dev": {
"codeception/base": "^2.2.11",
"codeception/verify": "~1.0.0",
"flow/jsonpath": "~0.3",
"phpunit/php-code-coverage": "5.3.*",
"yiisoft/yii2-debug": "*"
},
"scripts": {
"deploy-tests": [
"@composer update --prefer-stable",
"@php tests/_app/yii.php migrate 1 -p=@app/migrations --interactive=0",
"@php tests/_app/yii.php migrate -p=@tecnocen/oauth2server/migrations/tables --interactive=0",
"@php tests/_app/yii.php migrate -p=@tecnocen/workflow/migrations --interactive=0",
"@php tests/_app/yii.php migrate -p=@app/migrations --interactive=0",
"@php tests/_app/yii.php migrate -p=@yii/rbac/migrations --interactive=0"
],
"run-tests": [
"@php vendor/bin/codecept run --steps"
],
"run-coverage": [
"@php vendor/bin/codecept run --steps --coverage --coverage-xml"
]
},
"autoload": {
"psr-4": {
"tecnocen\\workflow\\": "src/"
}
}
}