-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
46 lines (46 loc) · 977 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
42
43
44
45
46
{
"name": "bizley/timeclock",
"description": "Simple Work Time Clock Project",
"type": "project",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"ext-mbstring": "*",
"npm-asset/air-datepicker": "^3.2",
"npm-asset/fortawesome--fontawesome-free": "^6.0",
"php": ">=7.1",
"yiisoft/yii2": ">=2.0.15.1 <2.1.0",
"yiisoft/yii2-bootstrap4": "^2.0",
"yiisoft/yii2-swiftmailer": "^2.0"
},
"require-dev": {
"phpunit/phpunit": ">=7.5",
"roave/security-advisories": "dev-latest",
"yiisoft/yii2-debug": "^2.0"
},
"config": {
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"app\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
}
}