-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (59 loc) · 1.38 KB
/
composer.json
File metadata and controls
60 lines (59 loc) · 1.38 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
{
"name": "maatify/bootstrap",
"description": "Unified environment initialization and diagnostics foundation for all Maatify PHP projects. Provides predictable .env loading, timezone configuration, and Safe Mode protection across local, CI, and production environments — forming the core bootstrap layer for the Maatify ecosystem.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Maatify.dev",
"email": "support@maatify.dev"
}
],
"homepage": "https://github.com/Maatify/bootstrap",
"keywords": [
"maatify",
"bootstrap",
"environment",
"dotenv",
"env loader",
"safe mode",
"timezone",
"initialization",
"startup",
"configuration",
"diagnostics",
"phpunit",
"ci",
"docker",
"psr",
"foundation",
"framework",
"ecosystem",
"maatify.dev"
],
"require": {
"php": ">=8.3",
"vlucas/phpdotenv": "^5.6",
"maatify/common": "^1.0"
},
"autoload": {
"psr-4": {
"Maatify\\Bootstrap\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.11",
"friendsofphp/php-cs-fixer": "^3.89"
},
"autoload-dev": {
"psr-4": {
"Maatify\\Bootstrap\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --testdox",
"analyse": "phpstan analyse src --level=max",
"format": "php-cs-fixer fix"
}
}