forked from deviantintegral/har
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
56 lines (56 loc) · 1.66 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
{
"name": "deviantintegral/har",
"description": "A PHP library for working with HTTP Archives",
"type": "library",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Andrew Berry",
"email": "deviantintegral@gmail.com"
},
{
"name": "Let's Talk",
"email": "github@letstalk.nl"
}
],
"require": {
"php": "^7.4||^8.0",
"ext-json": "*",
"jms/serializer": "^3.0",
"doctrine/annotations": "^2.0",
"guzzlehttp/psr7": "^2.0",
"deviantintegral/jms-serializer-uri-handler": "^1.1",
"deviantintegral/null-date-time": "^1.0",
"symfony/console": "^5.0||^6.0||^7.0",
"symfony/polyfill-php80": "^1.20"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.22",
"phpunit/phpunit": "^9.5",
"guzzlehttp/guzzle": "^7.0"
},
"autoload": {
"psr-4": {
"Deviantintegral\\Har\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Deviantintegral\\Har\\Tests\\": "tests/src"
}
},
"scripts": {
"build-phar": "[ -x phar-builder.phar ] || (curl -LOJ https://github.com/MacFJA/PharBuilder/releases/download/0.2.8/phar-builder.phar && chmod +x phar-builder.phar) ; php -dphar.readonly=0 ./phar-builder.phar package composer.json && chmod +x har.phar"
},
"extra": {
"phar-builder": {
"compression": "gzip",
"name": "har.phar",
"output-dir": "./",
"entry-point": "bin/console",
"include": []
}
}
}