-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.28 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "astrotomic/ecologi-sdk",
"description": "Interact with Ecologi API.",
"license": "MIT",
"authors": [
{
"name": "Tom Witkowski",
"email": "[email protected]",
"homepage": "https://astrotomic.info",
"role": "Developer"
}
],
"homepage": "https://github.com/Astrotomic/ecologi-sdk",
"support": {
"issues": "https://github.com/Astrotomic/ecologi-sdk/issues",
"source": "https://github.com/Astrotomic/ecologi-sdk",
"docs": "https://docs.ecologi.com/docs/public-api-docs"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/Gummibeer"
},
{
"type": "other",
"url": "https://forest.astrotomic.info"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"moneyphp/money": "^4.0.5",
"saloonphp/saloon": "^3.0"
},
"require-dev": {
"laravel/pint": "^1.13.10",
"pestphp/pest": "^2.33.4",
"phpstan/phpstan": "^1.10.57"
},
"autoload": {
"psr-4": {
"Astrotomic\\Ecologi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
}
},
"scripts": {
"post-autoload-dump": [
"@composer normalize --ansi --no-interaction --quiet",
"@composer validate --strict --ansi --no-interaction",
"@composer thanks --ansi --no-interaction --quiet"
],
"fix": "vendor/bin/pint",
"normalize": "echo 'composer global require ergebnis/composer-normalize'",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2G",
"test": "php -d memory_limit=-1 vendor/bin/pest",
"test-coverage": "XDEBUG_MODE=coverage php -d memory_limit=-1 vendor/bin/pest --coverage-html=.coverage",
"thanks": "echo 'composer global require symfony/thanks'"
}
}