-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
77 lines (77 loc) · 2.17 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
{
"name": "acsiomatic/device-detector-bundle",
"description": "Symfony Bundle for https://github.com/matomo-org/device-detector",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"symfony-bundle",
"detection-library",
"device-detector",
"user-agent",
"bot-detection",
"mobile-detection"
],
"authors": [
{
"name": "Renan de Lima",
"email": "[email protected]",
"homepage": "https://renandelima.com"
},
{
"name": "Renê Lima",
"email": "[email protected]",
"homepage": "https://github.com/renedelima"
}
],
"require": {
"php": "^8.1",
"friendsofphp/proxy-manager-lts": "^1.0",
"matomo/device-detector": "^6.2",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.49",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10.4",
"rector/rector": "^1.0",
"symfony/twig-bundle": "^5.4 || ^6.4 || ^7.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Acsiomatic\\DeviceDetectorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Acsiomatic\\DeviceDetectorBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"sort-packages": true
},
"scripts": {
"check": [
"@cs",
"@phpstan",
"@rector",
"@phpunit"
],
"cs": "php-cs-fixer fix --verbose --dry-run",
"cs-fix": "php-cs-fixer fix --verbose",
"fix": [
"@cs-fix",
"@rector-fix"
],
"phpstan": "phpstan analyse --verbose",
"phpunit": "XDEBUG_MODE=coverage phpunit --coverage-text",
"rector": "rector process --no-progress-bar --dry-run",
"rector-fix": "rector process --no-progress-bar"
}
}