-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.46 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.46 KB
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
{
"name": "codebes/gripp-sdk",
"description": "PHP SDK for the Gripp CRM/ERP API. Fluent query builder, batch operations, and 54 resources for project management, invoicing, time tracking, and more.",
"type": "library",
"license": "MIT",
"keywords": [
"gripp",
"exact",
"exact-gripp",
"exact-online",
"api",
"sdk",
"crm",
"erp",
"php",
"json-rpc",
"project-management",
"invoicing",
"time-tracking",
"laravel",
"guzzle"
],
"authors": [
{
"name": "CodeBes",
"homepage": "https://codebes.nl"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.0",
"illuminate/support": "^10.0|^11.0|^12.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.0"
},
"scripts": {
"test": "vendor/bin/phpunit",
"cs": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs:fix": "vendor/bin/php-cs-fixer fix",
"analyse": "vendor/bin/phpstan analyse"
},
"autoload": {
"psr-4": {
"CodeBes\\GrippSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodeBes\\GrippSdk\\Tests\\": "tests/"
}
},
"bin": [
"bin/gripp-setup"
],
"minimum-stability": "stable",
"prefer-stable": true
}