-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.52 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
54
55
56
57
58
{
"name": "aszenz/php-typed-schema",
"description": "A php library to parse mixed data into proper types",
"license": "MIT",
"type": "library",
"keywords": [
"validation"
],
"readme": "README.md",
"authors": [
{
"name": "aszenz",
"email": "[email protected]"
}
],
"homepage": "https://github.com/aszenz/php-typed-schema",
"support": {
"issues": "https://github.com/aszenz/php-typed-schema/issues",
"source": "https://github.com/aszenz/php-typed-schema",
"docs": "https://github.com/aszenz/php-typed-schema/README.md"
},
"autoload": {
"psr-4": {
"Exp\\": "src/",
"Test\\": "tests/"
}
},
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^10.4.2",
"vimeo/psalm": "^5.1",
"friendsofphp/php-cs-fixer": "^3.10",
"ramsey/composer-repl": "^1.5",
"giorgiosironi/eris": "^0.14.0",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-strict-rules": "^1.4",
"phpstan/phpstan-phpunit": "^1.1",
"psalm/plugin-phpunit": "^0.18.4",
"infection/infection": "^0.27.0",
"phpbench/phpbench": "^1.2",
"roave/infection-static-analysis-plugin": "^1.33"
},
"config": {
"allow-plugins": {
"ramsey/composer-repl": true,
"infection/extension-installer": true
}
},
"scripts": {
"format": "php-cs-fixer fix --allow-risky=yes",
"format:check": "php-cs-fixer check",
"lint": "psalm",
"test": "phpunit",
"test:coverage": "XDEBUG_MODE=coverage phpunit --coverage-clover coverage.xml"
}
}