-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.08 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
{
"name": "incudata-loghy/loghy-php",
"description": "Loghy PHP SDK.",
"type": "library",
"authors": [
{
"name": "INCUDATA",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Loghy\\SDK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Loghy\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.4",
"friendsofphp/php-cs-fixer": "^3.4"
},
"require-dev": {
"pestphp/pest": "^1.21",
"phpstan/phpstan": "^1.6"
},
"scripts": {
"tests": [
"@tests:phpstan",
"@tests:lint",
"@tests:pest"
],
"tests:phpstan": "@php ./vendor/bin/phpstan analyse --ansi --memory-limit 512M",
"tests:lint": "@php ./vendor/bin/php-cs-fixer fix . --using-cache=no",
"tests:pest": "@php ./vendor/bin/pest --stop-on-failure"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}