-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
106 lines (106 loc) · 3.26 KB
/
composer.json
File metadata and controls
106 lines (106 loc) · 3.26 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "jooservices/form-builder",
"description": "Standalone PHP 8.5+ schema-driven form builder with DTO-backed form definitions, HTML rendering, validation, normalization, and repeater support.",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"php85",
"form-builder",
"forms",
"schema",
"json-schema",
"html-forms",
"validation",
"dto",
"data-transfer-object",
"jooservices",
"standalone-library",
"repeater-fields",
"dynamic-forms"
],
"authors": [
{
"name": "JOOservices",
"email": "admin@jooservices.com"
}
],
"support": {
"issues": "https://github.com/jooservices/form-builder/issues",
"source": "https://github.com/jooservices/form-builder"
},
"require": {
"php": ">=8.5"
},
"require-dev": {
"captainhook/captainhook": "^5.23",
"captainhook/plugin-composer": "^5.3",
"fakerphp/faker": "^1.24",
"friendsofphp/php-cs-fixer": "^3.65",
"laravel/pint": "^1.18",
"phpbench/phpbench": "^1.6",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.0 || ^13.0",
"squizlabs/php_codesniffer": "^3.8 || ^4.0"
},
"autoload": {
"psr-4": {
"JOOservices\\FormBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JOOservices\\FormBuilder\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage --coverage-clover coverage.xml && php tools/check-coverage.php coverage.xml 95",
"bench": "phpbench run --report=default",
"lint:pint": "pint --test",
"lint:pint:fix": "pint",
"lint:cs": "php-cs-fixer fix --config=.php-cs-fixer.dist.php --dry-run --diff --sequential",
"lint:cs:fix": "php-cs-fixer fix --config=.php-cs-fixer.dist.php --sequential",
"lint:phpcs": "phpcs --standard=phpcs.xml",
"lint:phpstan": "XDEBUG_MODE=off phpstan analyse --configuration=phpstan.neon --memory-limit=512M --debug",
"lint:phpmd": "php -d error_reporting=6143 vendor/bin/phpmd src text phpmd.xml",
"lint": [
"@lint:pint",
"@lint:phpcs",
"@lint:phpstan"
],
"lint:all": [
"@lint",
"@lint:phpmd",
"@lint:cs"
],
"lint:fix": [
"@lint:pint:fix",
"@lint:cs:fix"
],
"check": [
"@lint:all",
"@test"
],
"ci": [
"composer validate --strict",
"@lint:all",
"@test:coverage",
"@security"
],
"security": "composer audit",
"post-install-cmd": "captainhook install --force --skip-existing",
"post-update-cmd": "captainhook install --force --skip-existing"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"captainhook/plugin-composer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}