-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
59 lines (59 loc) · 1.51 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
59
{
"name": "facile-it/php-codec",
"description": "A partial porting of io-ts in PHP",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^9",
"giorgiosironi/eris": "^0.14.0",
"phpat/phpat": "^0.10.18",
"facile-it/facile-coding-standard": "^1.2",
"vimeo/psalm": "4.30.0",
"phpstan/phpstan": "^1.8",
"rector/rector": "^1.2"
},
"license": "MIT",
"authors": [
{
"name": "Ilario Pierbattista",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Facile\\PhpCodec\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Facile\\PhpCodec\\": "tests/unit/",
"Examples\\Facile\\PhpCodec\\": "tests/examples/",
"TypeAssertions\\Facile\\PhpCodec\\": "tests/type-assertions/",
"ArchitectureAssertions\\Facile\\PhpCodec\\": "tests/architecture/"
}
},
"require": {
"php": "^7.4 | ^8.0"
},
"prefer-stable": true,
"archive": {
"exclude": [
".github/",
"docker/",
"tests/",
"docker-compose.yml",
"Makefile"
]
},
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix --diff"
},
"suggest": {
"ext-json": "*"
},
"config": {
"allow-plugins": {
"facile-it/facile-coding-standard": false
}
}
}