-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 1.36 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
63
64
65
66
67
68
69
70
71
72
{
"name": "kas-cor/mvc",
"license": "MIT",
"description": "MVC Pattern",
"keywords": [
"php7",
"doctrine-orm",
"phinx",
"bootstrap4",
"jquery"
],
"authors": [
{
"name": "kas-cor",
"email": "kascorp@gmail.com"
}
],
"homepage": "https://github.com/kas-cor/mvc",
"support": {
"issues": "https://github.com/kas-cor/mvc/issues"
},
"require": {
"php": ">=7.2.0",
"bower-asset/bootstrap": "^4.3.1",
"bower-asset/jquery": "^3.4.1",
"doctrine/orm": "^2.6.3",
"npm-asset/normalize.css": "^8.0.1",
"robmorgan/phinx": "^0.10.8",
"vlucas/phpdotenv": "^3.6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.3.4"
},
"autoload": {
"psr-4": {
"app\\": "app/"
},
"classmap": [
"db/migrations",
"db/seeds"
]
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
}
},
"extra": {
"asset-installer-paths": {
"bower-asset-library": "vendor/bower-asset"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}