-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
102 lines (102 loc) · 2.69 KB
/
composer.json
File metadata and controls
102 lines (102 loc) · 2.69 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
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
94
95
96
97
98
99
100
101
102
{
"name": "enginescript/enginescript",
"description": "A High-Performance WordPress Server Built on Ubuntu and Cloudflare - LEMP server installation and configuration script for hosting WordPress sites",
"type": "project",
"keywords": [
"wordpress",
"lemp",
"nginx",
"mariadb",
"php",
"redis",
"ubuntu",
"cloudflare",
"server-automation",
"hosting",
"performance",
"security"
],
"homepage": "https://EngineScript.com",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "EngineScript Team",
"homepage": "https://EngineScript.com"
}
],
"support": {
"issues": "https://github.com/EngineScript/EngineScript/issues",
"source": "https://github.com/EngineScript/EngineScript",
"docs": "https://github.com/EngineScript/EngineScript/blob/main/README.md"
},
"require": {
"php": ">=8.3",
"ext-json": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-fileinfo": "*"
},
"require-dev": {
"phpunit/phpunit": "13.0.5",
"phpstan/phpstan": "2.1",
"squizlabs/php_codesniffer": "4.0",
"friendsofphp/php-cs-fixer": "3.40",
"yoast/phpunit-polyfills": "4.0",
"dealerdirect/phpcodesniffer-composer-installer": "1.0.0"
},
"autoload": {
"psr-4": {
"EngineScript\\": "src/"
},
"files": [
"config/var/www/admin/control-panel/api.php"
]
},
"autoload-dev": {
"psr-4": {
"EngineScript\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage",
"phpstan": "phpstan analyse",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"phpcs": "phpcs --standard=PSR12 config/var/www/admin/",
"quality": [
"@phpstan",
"@cs:check",
"@phpcs"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
},
"platform": {
"php": "8.3"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"archive": {
"exclude": [
"tests",
"docs",
".github",
".gitignore",
"phpunit.xml",
"phpstan.neon",
".php-cs-fixer.php"
]
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
}
}