-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 2.38 KB
/
Copy pathcomposer.json
File metadata and controls
70 lines (70 loc) · 2.38 KB
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
{
"name": "setono/bot-detection-bundle",
"description": "A Symfony bundle that allows you to test if a user agent is a bot",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Joachim Løvgaard",
"email": "joachim@loevgaard.dk"
}
],
"require": {
"php": ">=8.1",
"symfony/config": "^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/http-foundation": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0",
"twig/twig": "^2.14 || ^3.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"infection/infection": "^0.27.0 || ^0.32.0",
"jangregor/phpstan-prophecy": "^2.0",
"matomo/device-detector": "^5.0 || ^6.0",
"matthiasnoback/symfony-dependency-injection-test": "^5.1 || ^6.3",
"nette/php-generator": "^3.6 || ^4.1",
"nyholm/symfony-bundle-test": "^3.1",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-webmozart-assert": "^2.0",
"phpunit/phpunit": "^10.5",
"rector/rector": "^2.0",
"shipmonk/composer-dependency-analyser": "^1.8",
"sylius-labs/coding-standard": "^4.1.1",
"symfony/console": "^6.4 || ^7.4 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.4 || ^8.0",
"symfony/twig-bundle": "^6.4 || ^7.4 || ^8.0",
"symfony/yaml": "^6.4 || ^7.4 || ^8.0",
"webmozart/assert": "^1.11"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\BotDetectionBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Setono\\BotDetectionBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"analyse": "phpstan analyse",
"check-style": "ecs check",
"fix-style": "ecs check --fix",
"phpunit": "phpunit"
}
}