-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.62 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.62 KB
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
{
"name": "mttk2004/phpure",
"description": "phpure is a simple MVC framework written in PHP to help beginners understand the inner workings of a web application built with the MVC pattern.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Mai Tran Tuan Kiet",
"email": "mttk2004@hotmail.com"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-pdo": "*",
"respect/validation": "^2.4",
"robmorgan/phinx": "^0.16.6",
"fakerphp/faker": "^1.24",
"nesbot/carbon": "^3.8",
"twig/twig": "^3.18",
"monolog/monolog": "^3.8",
"filp/whoops": "^2.16"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Core\\": "core/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"keywords": ["php", "mvc", "framework", "learning", "phpure", "lightweight"],
"homepage": "https://github.com/mttk2004/phpure",
"support": {
"issues": "https://github.com/mttk2004/phpure/issues",
"source": "https://github.com/mttk2004/phpure"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.75"
},
"scripts": {
"format": "vendor/bin/php-cs-fixer fix --config=config/.php-cs-fixer.dist.php",
"format-check": "vendor/bin/php-cs-fixer fix --dry-run --diff --config=config/.php-cs-fixer.dist.php",
"migrate": "vendor/bin/phinx migrate",
"migrate:rollback": "vendor/bin/phinx rollback",
"migrate:status": "vendor/bin/phinx status",
"migrate:create": "vendor/bin/phinx create",
"seed:create": "vendor/bin/phinx seed:create",
"seed": "vendor/bin/phinx seed:run"
}
}