-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1011 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 1011 Bytes
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
{
"name": "spexdw/z-engine",
"description": "ZEngine - A modern, lightweight PHP framework with powerful service architecture",
"type": "project",
"keywords": ["framework", "php", "zengine", "service-oriented", "routing"],
"license": "MIT",
"authors": [
{
"name": "spexdw",
"email": "dev@z-clients.org"
}
],
"require": {
"php": "^8.1",
"phpmailer/phpmailer": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"ZEngine\\Core\\": "core/",
"ZEngine\\App\\": "app/"
},
"files": [
"core/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"ZEngine\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse core app"
},
"minimum-stability": "stable",
"prefer-stable": true
}