generated from dmstr/template-yii2-repo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 883 Bytes
/
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
{
"name": "dmstr/yii2-rbac-migration",
"type": "library",
"description": "_____",
"keywords": [
"_____"
],
"homepage": "https://www.dmstr.io/",
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3 || ^8.0",
"yiisoft/yii2": "^2.0.35"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phan/phan": "^2.4"
},
"autoload": {
"psr-4": {
"dmstr\\rbacMigration\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"dmstr\\rbacMigration\\tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"scripts": {
"phan": "phan --progress-bar -o analysis.txt"
},
"config": {
"sort-packages": true
}
}