-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.36 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
{
"name": "andrewbreksa/extreme-ip-lookup",
"type": "library",
"version": "1.2.1",
"license": "MIT",
"description": "A simple HTTP wrapper for eXTReMe-IP-LOOKUP.com",
"authors": [
{
"name": "Andrew Breksa",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"php-http/mock-client": "^1.4",
"php-http/message": "^1.9",
"phpunit/phpunit": "^9.4",
"php-http/client-implementation": "1.0",
"mockery/mockery": "^1.4",
"php-http/guzzle7-adapter": "^0.1.0 || ^1.0.0",
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^2.18 || ^3.0",
"phpstan/phpstan": "^0.12.82 || ^1.0.0"
},
"require": {
"psr/http-message": "^1.0",
"php-http/httplug": "^2.2",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.12",
"ext-json": "*",
"suin/json": "^1.2",
"php": "^7.4|^8.0"
},
"autoload": {
"psr-4": {
"AndrewBreksa\\ExtremeIPLookup\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests"
}
},
"scripts": {
"cs-fixer": "./vendor/bin/php-cs-fixer fix --ansi --config=.php-cs-fixer.php ./src ./tests .php-cs-fixer.php",
"phpunit": "XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text",
"phpstan": "php vendor/bin/phpstan analyse -c phpstan.neon"
}
}