forked from ROAResearch/yii2-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 2.01 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
{
"name": "roaresearch/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": "[email protected]"
},
{
"name": "Carlos (neverabe) Llamosas",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": "^7.1",
"roaresearch/yii2-roa": "~2.0.0",
"roaresearch/yii2-rmdb": "~2.0.0",
"yii2tech/ar-softdelete": "*"
},
"require-dev": {
"codeception/base": "^3.1.0",
"codeception/verify": "~1.2.0",
"flow/jsonpath": "~0.3",
"phpunit/php-code-coverage": "~5.0.0",
"squizlabs/php_codesniffer": "~3.5.0",
"yiisoft/yii2-debug": "~2.1.0"
},
"scripts": {
"migrate": "tests/_app/yii.php migrate --interactive=0",
"deploy-tests": [
"@composer update --prefer-stable",
"@composer migrate -- 1 -p=@app/migrations",
"@composer migrate -- -p=@roaresearch/yii2/oauth2server/migrations/tables",
"@composer migrate -- -p=@roaresearch/yii2/workflow/migrations",
"@composer migrate -- -p=@app/migrations",
"@composer migrate -- -p=@yii/rbac/migrations",
"chmod +x git-hooks/pre-commit",
"ln -s git-hooks/pre-commit .git/hooks/pre-commit"
],
"sniff-php-file": [
"@php -l",
"vendor/bin/phpcs"
],
"run-tests": "vendor/bin/codecept run --steps",
"run-coverage": "@composer run-tests -- --coverage --coverage-xml"
},
"autoload": {
"psr-4": {
"roaresearch\\yii2\\workflow\\": "src/"
}
}
}