forked from Matej-ch/yii2-page-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 929 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
{
"name": "matejch/yii2-page-guide",
"description": "Ability to add guide to pages for user orientation",
"type": "yii2-extension",
"version": "1.3.0",
"keywords": ["yii2","extension","guide"],
"license": "MIT",
"authors": [
{
"name": "Matej Chalachan",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.0",
"yiisoft/yii2": "~2.0.42",
"npm-asset/intro.js": "^7.2.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"matejch\\pageGuide\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"matejch\\pageGuide\\tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}