-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
42 lines (42 loc) · 1.31 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
{
"name": "albertborsos/yii2-gdpr-cookie-consent",
"description": "GDPR compatible Cookie Consent widget allows the user to choose which kind of cookies they want to accept.",
"type": "yii2-extension",
"keywords": ["yii2","extension","cookie","cookie policy"," gdpr"," cookie consent"],
"license": "MIT",
"authors": [
{
"name": "Albert Borsos",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"yiisoft/yii2": "~2.0.0",
"bower-asset/cookieconsent": "~3.1",
"2amigos/yii2-switch-widget": "^1.0",
"albertborsos/yii2-ddd": "~0.2"
},
"require-dev": {
"satooshi/php-coveralls": "~1.0",
"codeception/codeception": "^2.4",
"codeception/verify": "~0.4.0",
"codeception/specify": "~0.4.6",
"codeception/mockery-module": "^0.2.2",
"mito/yii2-coding-standards": "~2.0.0@beta"
},
"config": {
"fxp-asset": {
"installer-paths": {
"bower-asset-library": "vendor/bower",
"npm-asset-library": "vendor/npm"
}
}
},
"autoload": {
"psr-4": {
"albertborsos\\cookieconsent\\": "src/",
"albertborsos\\cookieconsent\\tests\\": "tests/"
}
}
}