-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 1.9 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
{
"name": "omegamvc/omega",
"type": "project",
"description": "Omega is a lightweight PHP framework designed for building modern web applications using the MVC architecture. Compatible with PHP 8.2+.",
"homepage": "https://omegamvc.github.io",
"license": "GPL-3.0",
"authors": [
{
"name": "Adriano Giovannini",
"email": "agisoftt@gmail.com",
"role": "Developer"
}
],
"keywords": [
"PHP",
"framework",
"web",
"MVC",
"PHP 8.2",
"example",
"modern",
"lightweight"
],
"require": {
"php": ">=8.3",
"ext-apcu": "*",
"ext-fileinfo": "*",
"ext-ftp": "*",
"ext-mbstring": "*",
"ext-memcached": "*",
"ext-pdo": "*",
"ext-zip": "*",
"ext-bz2": "*",
"ext-pcntl": "*",
"ext-simplexml": "*",
"ext-redis": "*",
"omegamvc/framework": "^1.0.0",
"omegamvc/serializable-closure": "^1.0.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.0",
"squizlabs/php_codesniffer": "^3.11"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Migrations\\Schemes\\": "database/migrations/schemes/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"serve": "XDEBUG_MODE=off php omega serve",
"db_migrate": "XDEBUG_MODE=off php omega migrate",
"db_fresh": "XDEBUG_MODE=off php omega migrate --fresh",
"phpstan": "XDEBUG_MODE=off php vendor/bin/phpstan analyze",
"phpcs": "XDEBUG_MODE=off php vendor/bin/phpcs vendor/omegamvc",
"phpunit": "php vendor/bin/phpunit",
"phpdoc": "XDEBUG_MODE=off vendor/bin/phpDocumentor.phar",
"post-update-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}