forked from liip/serializer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.96 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
{
"name": "liip/serializer",
"description": "High performance serializer that works with code generated helpers to achieve high throughput.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Liip AG",
"homepage": "http://www.liip.ch"
}
],
"support": {
"source": "https://github.com/liip/serializer",
"issues": "https://github.com/liip/serializer/issues"
},
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"doctrine/annotations": "^1.10.2",
"liip/metadata-parser": "^0.6",
"pnz/json-exception": "^1.0",
"symfony/filesystem": "^4.4 || ^5.0 || ^6.0",
"symfony/finder": "^4.4 || ^5.0 || ^6.0",
"twig/twig": "^2.7 || ^3.0"
},
"require-dev": {
"doctrine/collections": "^1.6",
"friendsofphp/php-cs-fixer": "^2.14",
"jms/serializer": "^1.13 || ^2 || ^3",
"phpstan/phpstan": "^0.12.0",
"phpstan/phpstan-phpunit": "^0.12",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Liip\\Serializer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Liip\\Serializer\\": "tests/"
}
},
"scripts": {
"fix-cs": "vendor/bin/php-cs-fixer fix -v",
"cs-fixer": "vendor/bin/php-cs-fixer fix --dry-run --diff --diff-format udiff -v",
"phpstan": "vendor/bin/phpstan analyse --no-progress --level 5 src/",
"phpstan-tests": "vendor/bin/phpstan analyse --no-progress --level 1 -c phpstan.tests.neon tests/",
"phpstan-all": [
"@phpstan",
"@phpstan-tests"
],
"phpunit": "vendor/bin/phpunit",
"ci": [
"@cs-fixer",
"@phpstan-all",
"@phpunit"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"config": {
"sort-packages": true
}
}