-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
66 lines (66 loc) · 1.73 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
{
"name": "liip/metadata-parser",
"description": "Parser for metadata",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Liip AG",
"homepage": "http://www.liip.ch"
}
],
"support": {
"source": "https://github.com/liip/metadata-parser",
"issues": "https://github.com/liip/metadata-parser/issues"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"doctrine/annotations": "^1.13 || ^2.0.1",
"psr/log": "^1|^2|^3"
},
"require-dev": {
"doctrine/collections": "^1.6",
"friendsofphp/php-cs-fixer": "v3.17.0",
"jms/serializer": "^2.3 || ^3",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^8.5.15 || ^9.5"
},
"suggest": {
"jms/serializer": "^2.3 || ^3"
},
"conflict": {
"doctrine/annotations": "< 1.11",
"jms/serializer": "< 2.3"
},
"autoload": {
"psr-4": {
"Liip\\MetadataParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Liip\\MetadataParser\\": "tests/"
}
},
"scripts": {
"fix-cs": "vendor/bin/php-cs-fixer fix -v",
"cs-fixer": "vendor/bin/php-cs-fixer fix --dry-run --diff -v",
"phpstan": "vendor/bin/phpstan analyse",
"phpstan-tests": "vendor/bin/phpstan analyse -c phpstan.tests.neon",
"phpstan-all": [
"@phpstan",
"@phpstan-tests"
],
"phpunit": "vendor/bin/phpunit",
"ci": [
"@cs-fixer",
"@phpstan-all",
"@phpunit"
]
},
"config": {
"sort-packages": true
}
}