-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (82 loc) · 2.32 KB
/
composer.json
File metadata and controls
82 lines (82 loc) · 2.32 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "jooservices/useragent",
"description": "Advanced User-Agent string generator with flexible randomization strategies",
"type": "library",
"license": "MIT",
"bin": [
"bin/useragent"
],
"version": "1.2.0",
"authors": [
{
"name": "JOOservices",
"email": "info@jooservices.com"
}
],
"require": {
"php": "^8.5"
},
"require-dev": {
"laravel/pint": "^1.14",
"squizlabs/php_codesniffer": "^3.8",
"slevomat/coding-standard": "^8.15",
"phpunit/phpunit": "^12.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpmd/phpmd": "^2.15",
"infection/infection": "^0.29",
"fakerphp/faker": "^1.23",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {
"JOOservices\\UserAgent\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JOOservices\\UserAgent\\Tests\\": "tests/"
}
},
"scripts": {
"lint:pint": "pint",
"lint:pint:test": "pint --test",
"lint:phpcs": "phpcs --standard=phpcs.xml --colors -p -n src tests",
"lint:phpcbf": "phpcbf --standard=phpcs.xml src tests",
"lint:phpstan": "phpstan analyse --memory-limit=2G",
"lint:phpmd": "phpmd src text phpmd.xml",
"lint": [
"@lint:pint",
"@lint:pint:test",
"@lint:phpcs",
"@lint:phpstan",
"@lint:phpmd"
],
"test:unit": "phpunit --testsuite=unit",
"test:integration": "phpunit --testsuite=integration",
"test:all": "phpunit",
"test:coverage": "phpunit --coverage-text --coverage-html=coverage",
"test:mutation": "infection --threads=4 --min-msi=100 --min-covered-msi=100",
"test": [
"@test:all"
],
"check": [
"@lint",
"@test"
],
"fix": [
"@lint:pint",
"@lint:phpcbf"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}