-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
81 lines (78 loc) · 2.76 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "type-lang/mapper",
"type": "library",
"description": "Library for mapping variable types to other types",
"keywords": ["types", "serializer", "mapper", "hydrator", "transformer", "normalizer", "denormalizer", "marshal", "unmarshal"],
"license": "MIT",
"support": {
"source": "https://github.com/php-type-language/mapper",
"issues": "https://github.com/php-type-language/mapper/issues"
},
"require": {
"php": "^8.1",
"psr/log": "^1.0|^2.0|^3.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"type-lang/parser": "^1.4",
"type-lang/printer": "^1.3"
},
"autoload": {
"psr-4": {
"TypeLang\\Mapper\\": "src"
}
},
"require-dev": {
"behat/behat": "^3.14",
"friendsofphp/php-cs-fixer": "^3.53",
"jetbrains/phpstorm-attributes": "^1.0",
"justinrainbow/json-schema": "^6.0",
"monolog/monolog": "^3.7",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^10.5|^11.0",
"symfony/cache": "^5.4|^6.0|^7.0",
"symfony/expression-language": "^5.4|^6.0|^7.0",
"symfony/property-access": "^5.4|^6.0|^7.0",
"symfony/stopwatch": "^5.4|^6.0|^7.0",
"symfony/var-dumper": "^5.4|^6.0|^7.0",
"type-lang/phpdoc": "^1.0",
"type-lang/phpdoc-standard-tags": "^1.0"
},
"autoload-dev": {
"psr-4": {
"TypeLang\\Mapper\\Tests\\": "tests"
}
},
"suggest": {
"type-lang/phpdoc-standard-tags": "(^1.0) Required for DocBlockDriver mapping driver support",
"justinrainbow/json-schema": "(^5.3|^6.0) Required for configuration drivers validation"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev",
"dev-main": "1.x-dev"
}
},
"config": {
"sort-packages": true,
"platform-check": true,
"bin-compat": "full",
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"scripts": {
"build": "@php bin/build",
"test": ["@test:unit", "@test:feature"],
"test:unit": "phpunit --testdox --testsuite=unit",
"test:feature": "behat",
"linter": "@linter:check",
"linter:check": "phpstan analyse --configuration phpstan.neon",
"linter:baseline": "phpstan analyse --configuration phpstan.neon --generate-baseline",
"phpcs": "@phpcs:check",
"phpcs:check": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --dry-run --verbose --diff",
"phpcs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --verbose --diff"
},
"minimum-stability": "dev",
"prefer-stable": true
}