-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.22 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
{
"name": "milan-miscevic/inert",
"description": "Mini PHP framework with basic MVC and service container support",
"license": "MIT",
"type": "library",
"keywords": [
"action",
"action-container",
"controller",
"factory",
"framework",
"inert",
"mini-php-framework",
"mvc",
"php-framework",
"response",
"service-container"
],
"authors": [
{
"name": "Milan Miščević",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"psr/container": "^2.0.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"infection/infection": "^0.26.19",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-strict-rules": "^1.4",
"phpunit/phpunit": "^9.6",
"vimeo/psalm": "^5.7"
},
"autoload": {
"psr-4": {
"Mmm\\Inert\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mmm\\Inert\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": false
},
"sort-packages": true
}
}