-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
71 lines (71 loc) · 1.92 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
{
"name": "bytes4run/modular",
"description": "Skeleton for a modular PHP web applications base on MVC pattern with Vite for auto web refresh and Tailwindcss for a modern design",
"type": "project",
"version": "2.0.0",
"keywords": [
"modular",
"mvc",
"php",
"framework",
"web",
"application",
"api",
"skeleton"
],
"require": {
"php": ">=8.1",
"smarty/smarty": "^4.3",
"vlucas/phpdotenv": "^5.6",
"firebase/php-jwt": "^6.10",
"phpunit/phpunit": "^10.5",
"phpmailer/phpmailer": "^6.9",
"psr/log": "^3.0",
"psr/http-client": "^1.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.8",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"APP\\": "./app",
"Kernel\\": "./app/core",
"Modules\\": "./app/modules"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "./tests"
}
},
"license": "Proprietary",
"optimize-autoloader": true,
"authors": [
{
"name": "snithfferx",
"email": "[email protected]"
},
{
"name": "Jorge Echeverria",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"source": {
"type": "git",
"url": "https://github.com/bytes4run/modular.git",
"reference": "0.0.1"
},
"scripts": {
"post-install-cmd": [
"php -r \"file_exists('configs/.env') || copy('configs/.env.example', 'configs/.env');\"",
"@php -r \"file_exists('configs/config.json') || copy('configs/config.json.example', 'configs/config.json');\""
],
"testing": "vendor/bin/phpunit tests"
},
"readme": "README.md"
}