-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (52 loc) · 1.25 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
{
"name": "joppedc/logsnag-php-sdk",
"description": "An integration of the Logsnag API for PHP",
"type": "library",
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"php-http/discovery": "^1.15",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.16",
"guzzlehttp/guzzle": "^7.5",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5",
"php-vcr/php-vcr": "1.5.5",
"php-vcr/phpunit-testlistener-vcr": "^3.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"JoppeDc\\LogsnagPhpSdk\\": "src/",
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Joppe de Cuyper",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"php-http/discovery": false
}
},
"scripts": {
"codestyle": [
"./vendor/bin/php-cs-fixer fix --verbose --config=.php-cs-fixer.dist.php --using-cache=no --dry-run --diff"
],
"codestyle:fix": [
"./vendor/bin/php-cs-fixer fix --verbose --config=.php-cs-fixer.dist.php --using-cache=no --diff"
],
"phpstan": [
"php -d memory_limit=256M ./vendor/bin/phpstan"
],
"test": [
"sh scripts/tests.sh"
]
}
}