-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 981 Bytes
/
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
{
"name": "spinbits/google-analytics-4-events-dto-s",
"description": "Google Analytics 4 Dto's",
"type": "library",
"license": "MIT",
"authors": [ {
"name": "Spinbits",
"homepage": "https://spinbits.io"
}
],
"require": {
"php": "~7.4 || ^8.0 || ^8.1"
},
"require-dev": {
"phpunit/phpunit" : ">=8.0",
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.8",
"vimeo/psalm": "^4.27"
},
"autoload": {
"psr-4": {
"Spinbits\\GoogleAnalytics4EventsDtoS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spinbits\\GoogleAnalytics4EventsDtoS\\Tests\\": "tests"
}
},
"scripts": {
"phpstan": "phpstan analyse -c phpstan.neon -l max src/",
"psalm": "psalm",
"test": "phpunit --colors=always",
"check-style": "phpcs src",
"fix-style": "phpcbf src tests"
}
}