-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 844 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
{
"name": "archytech99/mvc-sqlite",
"description": "Belajar membuat aplikasi berbasis MVC dengan menggunakan database SQLite",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/archytech99/mvc-sqlite/issues"
},
"authors": [
{
"name": "Arief BP",
"email": "ariefbp27@gmail.com"
}
],
"require": {
"ext-pdo": "*",
"php": "^6.0|^7.0|^8.0",
"ramsey/uuid": "^4.1"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^4.3",
"phpunit/phpunit": "^8.5.8|^9.3.3"
},
"autoload": {
"psr-4": {
"archytech99\\": "app/"
}
},
"scripts": {
"dump": "composer dump-autoload -o"
}
}