forked from wayfair/hypernova-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.04 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
{
"name": "drom/hypernova-php",
"description": "A PHP client for hypernova. https://github.com/airbnb/hypernova",
"type": "library",
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": "^6|^7",
"ramsey/uuid": "^3.5|^4",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "9.5.10",
"phpstan/phpstan": "0.12.99",
"phpstan/phpstan-phpunit": "^0.12.22",
"friendsofphp/php-cs-fixer": "^3.2"
},
"license": "BSD-2-Clause",
"authors": [
{
"name": "Ben Roberts",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {"WF\\Hypernova\\": "src/"}
},
"autoload-dev": {
"psr-4": { "WF\\Hypernova\\Tests\\": "tests/" }
},
"scripts": {
"test": "./vendor/bin/phpunit --colors=always",
"analyse": "./vendor/bin/phpstan analyse src tests",
"fix": "./vendor/bin/php-cs-fixer fix"
},
"keywords": [
"react",
"hypernova",
"drom"
]
}