-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
62 lines (62 loc) · 1.4 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
{
"version": "1.3.1",
"name": "lav45/yii2-settings",
"description": "This extension helps you to easily store and retrieve data for your application.",
"keywords": [
"yii2",
"extension",
"settings",
"config",
"quick access"
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"homepage": "https://github.com/lav45/yii2-settings",
"type": "yii2-extension",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Aleksey Loban",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3.0",
"ext-json": "*",
"yiisoft/yii2": "2.0.*"
},
"require-dev": {
"ext-pdo": "*",
"ext-sqlite3": "*",
"ext-pdo_sqlite": "*",
"phpunit/phpunit": "^9.6",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"lav45\\settings\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"lav45\\settings\\tests\\": "tests\\tests"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.3.x-dev"
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}