-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.24 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
{
"name": "hemiframe/hemiframe",
"description": "PHP micro framework",
"version": "4.1.1",
"keywords": [
"PHP",
"framework",
"micro",
"Dependency Injection",
"Routing"
],
"license": "MIT",
"authors": [
{
"name": "Martin",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/heminei/php-hemiframe/issues"
},
"autoload": {
"psr-4": {
"HemiFrame\\": "src/HemiFrame",
"Examples\\": "examples/src",
"Tests\\Unit\\": "tests/unit"
}
},
"require": {
"php": ">=8.1",
"psr/simple-cache": "~2.0",
"psr/http-message": "~2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^10.5"
},
"scripts": {
"php-cs-fixer": "php-cs-fixer fix --dry-run --verbose",
"php-cs-fixer-apply": "php-cs-fixer fix --verbose",
"phpstan": [
"phpstan analyse"
],
"build": [
"composer run-script php-cs-fixer",
"composer run-script phpstan"
]
}
}