-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 779 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 779 Bytes
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
{
"name": "hexydec/agentzero",
"description": "A zero knowledge library for extracting information from User-Agent strings",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/hexydec/agentzero",
"authors": [
{
"name": "Will Earp",
"email": "will@hexydec.com",
"homepage": "https://github.com/hexydec"
}
],
"keywords": ["php", "browser", "user-agents"],
"minimum-stability": "stable",
"require": {
"php": ">=8.4"
},
"autoload": {
"classmap": ["src/", "tests/"]
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse --memory-limit=512M"
},
"require-dev": {
"phpunit/phpunit": "^13.0",
"phpstan/phpstan": "^2.0"
}
}