-
Notifications
You must be signed in to change notification settings - Fork 262
/
Copy pathcomposer.json
executable file
·32 lines (32 loc) · 1.16 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
{
"name": "zendesk/zendesk_api_client_php",
"description": "PHP Client for Zendesk REST API. See https://developer.zendesk.com/rest_api/docs/core/introduction .",
"license": "Apache-2.0",
"homepage": "https://github.com/zendesk/zendesk_api_client_php",
"require": {
"php": ">=8.2.0",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"guzzlehttp/psr7": "^1.7 || ^2.0",
"mmucklo/inflect": "0.3.*"
},
"require-dev": {
"phpunit/phpunit": "11.5.0",
"squizlabs/php_codesniffer": "3.*",
"phpmd/phpmd": "@stable",
"fakerphp/faker": "^1.24.1",
"psy/psysh": "@stable"
},
"autoload": {
"psr-0": {
"Zendesk\\API\\": "src/",
"Zendesk\\Console\\": "src/",
"Zendesk\\Fixtures\\": "src/"
}
},
"scripts": {
"test:unit": "vendor/bin/phpunit --testsuite 'Zendesk API Unit Test Suites'",
"test:live": "vendor/bin/phpunit --testsuite 'Zendesk API Live Test Suites'",
"lint": "vendor/bin/phpcs --runtime-set ignore_warnings_on_exit 1 --standard=PSR12 --extensions=php --ignore=vendor/ .",
"lint:fix": "vendor/bin/phpcbf --runtime-set ignore_warnings_on_exit 1 --standard=PSR12 --extensions=php --ignore=vendor/ ."
}
}