-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.9 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 1.9 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "kdyby/forms-replicator",
"type": "library",
"description": "Nette forms container replicator aka addDynamic",
"keywords": ["nette", "kdyby", "forms", "replicator", "addDynamic"],
"homepage": "http://kdyby.org",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "Filip Procházka",
"homepage": "http://filip-prochazka.com",
"email": "filip@prochazka.su"
},
{
"name": "David Šolc",
"homepage": "https://solc.dev",
"email": "solcik@gmail.com"
}
],
"support": {
"issues": "https://github.com/Kdyby/FormsReplicator/issues"
},
"require": {
"php": ">= 8.2",
"nette/forms": "^3.2.3",
"nette/utils": "^3.0 || ^4.0"
},
"require-dev": {
"nette/application": "^3.0",
"nette/bootstrap": "^3.0",
"nette/di": "^3.0",
"tracy/tracy": "^2.10.8",
"nette/tester": "^2.5",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-nette": "^2.0",
"rector/rector": "^2.0",
"symplify/easy-coding-standard": "^12.5",
"nette/neon": "^3.4.4"
},
"conflict": {
"nette/component-model": "<3.1.0"
},
"autoload": {
"psr-4": {
"Kdyby\\Replicator\\": "src/Replicator/"
}
},
"autoload-dev": {
"psr-4": {
"KdybyTests\\Replicator\\": "tests/Replicator/"
}
},
"suggest": {
"nette/di": "to use ReplicatorExtension[CompilerExtension]"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"scripts": {
"lint": "php ./vendor/bin/parallel-lint -e php,phpt --exclude ./.git --exclude ./vendor .",
"phpstan": "php ./vendor/bin/phpstan --ansi",
"ecs": "php ./vendor/bin/ecs",
"rector": "php ./vendor/bin/rector process --dry-run --ansi",
"test": "php ./vendor/bin/tester -s -p php --colors 1 -C ./tests/Replicator",
"ci": "[\"@lint\", \"@phpstan\", \"@ecs\", \"@rector\", \"@test\"]"
}
}