forked from minvws/icore-php-codable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.03 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
{
"name": "minvws/codable",
"description": "Encode/decode objects to/from various formats",
"license": "EUPL-1.2",
"authors": [
{
"name": "Peter Verhage",
"email": "[email protected]",
"homepage": "https://github.com/petercv"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^11.0.3",
"phpstan/phpstan": "^1.10.59",
"squizlabs/php_codesniffer": "^3.9.0",
"fakerphp/faker": "^v1.23.1"
},
"autoload": {
"psr-4": {
"MinVWS\\Codable\\": "src/MinVWS/Codable/"
}
},
"autoload-dev": {
"psr-4": {
"MinVWS\\Tests\\Codable\\": "tests/"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyze -c phpstan.neon.dist --error-format=prettyJson > phpstan.json",
"phpcs": "vendor/bin/phpcs",
"test": "XDEBUG_MODE=coverage phpunit --log-junit=report-phpunit.xml --coverage-text --coverage-clover=coverage-phpunit.xml"
}
}