This repository was archived by the owner on Sep 9, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·77 lines (77 loc) · 1.99 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
73
74
75
76
77
{
"name": "nagara/framework",
"description": "php framework project bahasa indonesia for old school",
"type": "project",
"keywords": [
"framework",
"native",
"php",
"oop",
"mini mvc php native"
],
"require": {
"bramus/router": "~1.5",
"kint-php/kint": "^4.2.3",
"markrogoyski/math-php": "^1.10",
"maximebf/debugbar": "^1.18.1",
"michelf/php-markdown": "^2.0.0",
"mpdf/mpdf": "^8.0",
"phpmailer/phpmailer": "^6.2",
"phpoffice/phpspreadsheet": "^1.18",
"robmorgan/phinx": "^0.12.7",
"rubix/ml": "^0.4.1",
"rubix/tensor": "^2.2",
"symfony/console": "^5.2",
"symfony/var-dumper": "^5.2",
"vlucas/phpdotenv": "^5.2"
},
"require-dev": {
"codeception/codeception": "^4.1",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.0.0"
},
"license": "MIT",
"authors": [
{
"name": "naagaraa",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"app\\": "apps/",
"Console\\": "system",
"Rubix\\": "vendor/rubix/ml/src/",
"env\\": "vendor/vlucas/phpdotenv"
},
"classmap": [
"apps",
"system",
"vendor/rubix/ml/src/",
"vendor/vlucas/phpdotenv/src"
]
},
"archive": {
"directory": "dist",
"skip-dev": false
},
"config": {
"optimize-autoloader": true,
"apcu-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"post-create-project-cmd": [
"@php nagara generate:env",
"composer update"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/naagaraa/mini-mvc-php-native.git"
}
]
}