generated from wayofdev/laravel-package-tpl
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
134 lines (134 loc) · 4.39 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "wayofdev/laravel-symfony-serializer",
"description": "📦 Laravel wrapper around Symfony Serializer.",
"license": "MIT",
"type": "library",
"keywords": [
"php",
"api",
"laravel-package",
"json",
"php8",
"laravel",
"serializer",
"symfony-component",
"serialize",
"laravel-api",
"symfony-serializer",
"laravel-serializer"
],
"authors": [
{
"name": "Andrij Orlenko",
"email": "[email protected]"
}
],
"homepage": "https://wayof.dev",
"support": {
"issues": "https://github.com/wayofdev/laravel-symfony-serializer/issues",
"source": "https://github.com/wayofdev/laravel-symfony-serializer",
"security": "https://github.com/wayofdev/laravel-symfony-serializer/blob/master/.github/SECURITY.md"
},
"require": {
"php": "^8.2",
"illuminate/contracts": "^11.0",
"illuminate/http": "^11.0",
"illuminate/support": "^11.0",
"ramsey/uuid": "^4.7",
"symfony/property-access": "^7.1",
"symfony/property-info": "^7.1",
"symfony/serializer": "^7.1"
},
"require-dev": {
"ergebnis/phpunit-slow-test-detector": "^2.14",
"larastan/larastan": "^2.9",
"orchestra/testbench": "^9.1",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-laravel": "^2.4",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "^10.5",
"psalm/plugin-laravel": "^2.11",
"psalm/plugin-phpunit": "^0.19",
"rector/rector": "^1.1",
"roave/infection-static-analysis-plugin": "^1.35",
"symfony/yaml": "^7.1",
"vimeo/psalm": "^5.24",
"wayofdev/cs-fixer-config": "^1.5"
},
"suggest": {
"symfony/yaml": "Required only if YamlEncoder support is needed."
},
"autoload": {
"psr-4": {
"WayOfDev\\Serializer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WayOfDev\\App\\": "tests/app/",
"WayOfDev\\Tests\\": "tests/src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"audit": {
"abandoned": "report"
},
"platform": {
"php": "8.2.17"
},
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
},
"laravel": {
"providers": [
"WayOfDev\\Serializer\\Bridge\\Laravel\\Providers\\SerializerServiceProvider"
]
}
},
"scripts": {
"cs:diff": "php-cs-fixer fix --dry-run -v --diff",
"cs:fix": "php-cs-fixer fix -v",
"infect": [
"@putenv XDEBUG_MODE=coverage",
"roave-infection-static-analysis-plugin"
],
"infect:ci": [
"@putenv XDEBUG_MODE=coverage",
"roave-infection-static-analysis-plugin --ansi --logger-github --ignore-msi-with-no-mutations --only-covered"
],
"psalm": "psalm --show-info=true",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"psalm:ci": "psalm --output-format=github --shepherd --show-info=false --stats --threads=4",
"refactor": "rector process --config=rector.php",
"refactor:ci": "rector process --config=rector.php --dry-run --ansi",
"stan": "phpstan analyse --memory-limit=2G",
"stan:baseline": "phpstan analyse --generate-baseline --memory-limit=2G --allow-empty-baseline",
"stan:ci": "phpstan analyse --memory-limit=2G --error-format=github",
"test": [
"@putenv XDEBUG_MODE=coverage",
"pest --color=always -v"
],
"test:arch": [
"@putenv XDEBUG_MODE=coverage",
"pest --color=always --configuration pest.xml.dist"
],
"test:cc": [
"@putenv XDEBUG_MODE=coverage",
"pest --coverage --coverage-clover=.build/phpunit/logs/clover.xml"
]
}
}