-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.11 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
{
"name": "griffin/griffin",
"description": "Griffin is a Graph-Oriented Migration Framework for PHP",
"type": "library",
"license": "MIT",
"keywords": [
"migration",
"migrations",
"database",
"graph",
"graph-theory",
"dependencies"
],
"config": {
"sort-packages": true
},
"require": {
"php": ">=8.0",
"psr/event-dispatcher": "1.0.*"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "1.3.*",
"phpmd/phpmd": "2.9.*",
"phpunit/phpunit": "9.5.*",
"sebastian/phpcpd": "6.0.*",
"slevomat/coding-standard": "7.0.*",
"squizlabs/php_codesniffer": "3.6.*"
},
"suggest": {
"griffin/griffin-cli": "Command Line Interface for Griffin"
},
"autoload": {
"psr-4": {
"Griffin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GriffinTest\\": "tests"
}
},
"scripts": {
"test": [
"parallel-lint src tests",
"phpunit $COVERAGE_OPTIONS",
"phpcpd src tests",
"phpmd src,tests text phpmd.xml",
"phpcs"
]
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}