-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.05 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
{
"name": "matycz/lemo-base",
"description": "Set of basic classes for Laminas applications",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"laminas",
"lemo"
],
"homepage": "https://github.com/MatyCZ/php-lemo-base",
"config": {
"allow-plugins": {
"laminas/laminas-dependency-plugin": true
}
},
"require": {
"laminas/laminas-form": "^3.0",
"laminas/laminas-inputfilter": "^2.18",
"laminas/laminas-mvc": "^3.0",
"laminas/laminas-mvc-i18n": "^1.0",
"laminas/laminas-mvc-plugin-flashmessenger": "^1.0",
"laminas/laminas-router": "^3.5",
"laminas/laminas-stdlib": "^3.0",
"laminas/laminas-view": "^2.0",
"php": "^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~3.8.0",
"phpstan/phpstan": "~1.7.0"
},
"autoload": {
"psr-4": {
"Lemo\\Base\\": "src/"
}
},
"scripts": {
"static-analysis": "phpstan analyse -c phpstan.neon"
}
}