-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
102 lines (101 loc) · 3 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "pbaszak/ultra-mapper",
"title": "Ultra Mapper",
"description": "Ultra Mapper",
"type": "symfony-bundle",
"license": "proprietary",
"authors": [],
"keywords": [
"mapper",
"serializer",
"fast",
"normalizer"
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"nette/php-generator": "^4.1",
"phpdocumentor/reflection-docblock": "^5.4",
"symfony/console": "^6",
"symfony/dotenv": "^6",
"symfony/flex": "^2",
"symfony/framework-bundle": "^6",
"symfony/runtime": "^6",
"symfony/uid": "^6",
"symfony/yaml": "^6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"jms/serializer": "^3.30",
"jms/serializer-bundle": "^5.4",
"phpstan/phpdoc-parser": "*",
"phpstan/phpstan": "*",
"phpstan/phpstan-symfony": "*",
"phpunit/phpunit": "*",
"symfony/property-access": "^6",
"symfony/property-info": "^6",
"symfony/serializer": "^6"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"PBaszak\\UltraMapper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PBaszak\\UltraMapper\\Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"cache:clear": "rm -rf var/cache /tmp/symfony-cache && bin/console cache:clear",
"code:fix": "vendor/bin/php-cs-fixer fix",
"code:analyse": "vendor/bin/phpstan analyse src -c tools/phpstan/fpm-config.neon",
"code:analyse:b": "vendor/bin/phpstan analyse src -c tools/phpstan/fpm-config.neon --generate-baseline tools/phpstan/fpm-baseline.neon --allow-empty-baseline",
"phpunit": [
"@putenv APP_ENV=test",
"vendor/bin/phpunit --colors=always"
],
"test:cc": [
"@putenv XDEBUG_MODE=coverage",
"@phpunit --do-not-cache-result --log-junit var/coverage/phpunit-report.xml --coverage-cobertura var/coverage/phpunit-coverage.xml --coverage-html var/coverage/html --coverage-text"
],
"test:ci": [
"@code:fix",
"@code:analyse",
"@test:unit",
"@test:e2e"
],
"test:unit": "@phpunit --group unit tests",
"test:e2e": "@phpunit --group e2e tests"
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^6"
}
}
}