-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
39 lines (39 loc) · 889 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
{
"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": "matejCH.work@gmail.com"
}
],
"require": {
"php": ">=7.2.0",
"yiisoft/yii2": "~2.0.42"
},
"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
}
}
}