-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.23 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.23 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
{
"name": "deviantintegral/har",
"description": "A PHP library for working with HTTP Archives",
"type": "library",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Andrew Berry",
"email": "deviantintegral@gmail.com"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"jms/serializer": "^3.0",
"doctrine/annotations": "^2.0",
"guzzlehttp/psr7": "^2.0",
"psr/http-client": "^1.0",
"deviantintegral/jms-serializer-uri-handler": "^1.1",
"deviantintegral/null-date-time": "^1.0",
"symfony/console": "^7||^8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.92.5",
"phpunit/phpunit": "^11||^12",
"guzzlehttp/guzzle": "^7.0",
"humbug/box": "^4.6",
"phpstan/phpstan": "^2.0"
},
"autoload": {
"psr-4": {
"Deviantintegral\\Har\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Deviantintegral\\Har\\Tests\\": "tests/src"
}
},
"scripts": {
"build-phar": "box compile"
},
"extra": {
"composer-version": "^2.8.12"
}
}