-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·93 lines (93 loc) · 2.61 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "mythicalsystems/framework",
"description": "The framework we use for our projects!",
"type": "project",
"homepage": "https://github.com/mythicalltd/framework",
"require": {
"mythicalsystems/core": "^1.0",
"php": ">=8.1.0",
"gravatarphp/gravatar": "^1.0",
"twig/twig": "^3.10",
"ifsnop/mysqldump-php": "^2.12",
"composer/composer": "^2.7",
"phpmailer/phpmailer": "^6.9",
"pragmarx/google2fa": "^8.0",
"symfony/yaml": "^7.1"
},
"config": {
"vendor-dir": "storage/caches/vendor"
},
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"keywords": [
"mythicalsystems",
"mythicalcore",
"mythicalltd",
"nayskutzu",
"php-router",
"router",
"phprouter",
"mythicaldash",
"mythicalclient",
"kosmapanel"
],
"authors": [
{
"name": "NaysKutzu",
"email": "[email protected]",
"role": "Owner",
"homepage": "https://mythicalsystems.xyz"
}
],
"support": {
"wiki": "https://docs.mythicalsystems.xyz",
"chat": "https://discord.mythicalsystems.xyz",
"issues": "https://github.com/mythicalltd/mythicalcore/issues",
"docs": "https://docs.mythicalsystems.xyz",
"forum": "https://discord.mythicalsystems.xyz"
},
"funding": [
{
"type": "GitHub",
"url": "https://github.com/sponsors/nayskutzu"
}
],
"autoload": {
"psr-4": {
"MythicalSystemsFramework\\": "app/"
}
},
"require-dev": {
"phpunit/phpunit": "^11.1",
"friendsofphp/php-cs-fixer": "^3.59"
},
"scripts": {
"tests": [
"export COMPOSER_ALLOW_SUPERUSER=1",
"storage/caches/vendor/bin/phpunit app/Tests/*"
],
"push": [
"export COMPOSER_ALLOW_SUPERUSER=1",
"git push origin develop",
"composer run tests",
"composer run lint"
],
"pull": [
"export COMPOSER_ALLOW_SUPERUSER=1",
"git pull origin develop"
],
"framework": [
"export COMPOSER_ALLOW_SUPERUSER=1",
"php framework"
],
"cli": [
"export COMPOSER_ALLOW_SUPERUSER=1",
"php framework"
],
"lint": [
"export COMPOSER_ALLOW_SUPERUSER=1",
"storage/caches/vendor/bin/php-cs-fixer fix --config=./.github/.php-cs-fixer.dist.php && exit 0"
]
}
}