-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.39 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": "saeven/zf2-form-builder",
"description": "Powertools for much lazy with Laminas because I hate writing Controllers, Forms, InputFilters, their Factories, and you hate writing all that stuff too.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/Saeven/zf2-circlical-formtool",
"keywords": [
"laminas",
"utilities",
"tools",
"generate",
"form",
"forms"
],
"authors": [
{
"name": "Alexandre Lemaire",
"email": "[email protected]",
"homepage": "http://circlical.com/",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.4 || >=8",
"laminas/laminas-servicemanager": "*",
"laminas/laminas-form": "*",
"laminas/laminas-cli": "^1.4",
"laminas/laminas-config": "*",
"laminas/laminas-config-aggregator": "*",
"laminas/laminas-modulemanager": "*",
"symfony/console": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.4.2",
"laminas/laminas-coding-standard": "^2.3.0",
"phpstan/phpstan": "1.1.1"
},
"autoload": {
"psr-4": {
"Circlical\\LaminasTools\\": "src/"
}
},
"scripts": {
"cs": "vendor/bin/phpcs",
"stan": "vendor/bin/phpstan analyse -c ./phpstan.neon --memory-limit 1G --xdebug --ansi -vvv src"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}