-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.4 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
{
"name": "b2pweb/bdf-serializer",
"description": "Bdf Serializer component",
"type": "library",
"keywords": ["php", "serializer", "api"],
"license": "MIT",
"authors": [
{"name": "Sébastien Tanneux"}
],
"autoload": {
"psr-4": {
"Bdf\\Serializer\\": "src"
}
},
"require": {
"php": "~7.1 | ~8.0.0 | ~8.1.0 | ~8.2.0 | ~8.3.0 | ~8.4.0",
"doctrine/instantiator": "^1.0.3|^2.0.0",
"phpdocumentor/reflection-docblock": "^4.0|~5.0",
"psr/simple-cache": "^1.0|~2.0|~3.0"
},
"require-dev": {
"doctrine/annotations": "^1.14 || ^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "~8.0|~9.0",
"jeremeamia/superclosure": "^2.3",
"jms/serializer": "^1.0|^3.0",
"symfony/phpunit-bridge": "~4.3|~5.0|~6.0|~7.0",
"vimeo/psalm": "~4.18|~5.22"
},
"suggest": {
"symfony/cache": "Required to use default cache if string path is given to builder (~4.3)",
"jeremeamia/superclosure": "Required to serialize closure (~2.1)",
"jms/serializer": "Required to use JMS metadata (^3.0)"
},
"scripts": {
"tests": "phpunit",
"tests-with-coverage": "phpunit --coverage-clover coverage.xml",
"psalm": "psalm --shepherd --output-format=github",
"php-cs-fixer": "php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --diff --allow-risky=yes --ansi --dry-run"
},
"extra": {
"branch-alias": {
"dev-master": "1.2-dev"
}
}
}