-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.69 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.69 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
{
"name": "initphp/input",
"description": "Read and validate GET, POST and JSON body input with configurable source priority for PHP.",
"type": "library",
"license": "MIT",
"keywords": [
"input",
"request",
"get",
"post",
"json-body",
"validation",
"initphp",
"php"
],
"authors": [
{
"name": "Muhammet ŞAFAK",
"email": "info@muhammetsafak.com.tr",
"role": "Developer",
"homepage": "https://www.muhammetsafak.com.tr"
}
],
"support": {
"issues": "https://github.com/InitPHP/Input/issues",
"source": "https://github.com/InitPHP/Input",
"docs": "https://github.com/InitPHP/Input/tree/main/docs"
},
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"ext-json": "*",
"initphp/parameterbag": "^2.0",
"initphp/validation": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^1.12 || ^2.1",
"friendsofphp/php-cs-fixer": "^3.65"
},
"autoload": {
"psr-4": {
"InitPHP\\Input\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InitPHP\\Input\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html build/coverage",
"stan": "phpstan analyse --no-progress",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"ci": [
"@cs-check",
"@stan",
"@test"
]
},
"config": {
"sort-packages": true
}
}