-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
60 lines (60 loc) · 1.72 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
{
"name": "tristanjahier/zoho-crm",
"description": "A PHP client for the API of Zoho CRM.",
"keywords": ["Zoho", "CRM", "API", "client", "library"],
"homepage": "https://github.com/tristanjahier/zoho-crm-php",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tristan Jahier",
"email": "[email protected]",
"homepage": "https://tristan.jahier.fr",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"doctrine/inflector": "^2.0",
"php-http/discovery": "^1.19",
"php-http/httplug": "^2.4",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "*",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "*",
"psr/http-message": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"php-http/guzzle7-adapter": "^1.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.0",
"psy/psysh": "^0.12",
"symfony/var-dumper": "^6.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Zoho\\Crm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Zoho\\Crm\\Dev\\": "dev/src/"
}
},
"scripts": {
"lint": "php-cs-fixer fix --verbose",
"stan": "phpstan analyse"
},
"scripts-descriptions": {
"lint": "Executes Symfony's PHP Coding Standards Fixer on the source code",
"stan": "Runs a static analysis of the source code using PHPStan"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
}
}