-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.25 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
{
"name": "amesplash/fogbugz-php-api",
"type": "library",
"description": "FogBugz API v2 PHP 7.3+ library",
"keywords": [
"php",
"fogbugz",
"fogbugz-api",
"fogbugz-php-api",
"fogbugz-api-wrapper",
"fogbugz-jsonapi",
"jsonapi",
"api-wrapper",
"api",
"helpdesk",
"issue-tracking"
],
"homepage": "https://www.amesplash.co.uk/open-source",
"license": "MIT",
"authors": [
{
"name": "Merlin Diavova",
"email": "[email protected]"
}
],
"support": {
"docs": "https://github.com/amesplash/fogbugz-php-api",
"issues": "https://github.com/amesplash/fogbugz-php-api/issues",
"source": "https://github.com/amesplash/fogbugz-php-api"
},
"require": {
"php": "^7.3",
"ext-json": "^1.7",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"amesplash/php-coding-standard": "dev-master",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"ekino/phpstan-banned-code": "dev-master#0c1c6d8f700ff378bc98266765a63b7e7ecffb50",
"eloquent/phony-phpunit": "^5.0",
"jakub-onderka/php-parallel-lint": "^1.0",
"nyholm/psr7": "^1.2",
"phan/phan": "^2.3",
"phpspec/phpspec": "^6.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.11.19",
"squizlabs/php_codesniffer": "^3.5",
"sunrise/http-client-curl": "^1.2",
"symfony/var-dumper": "^4.3",
"vimeo/psalm": "^3.6"
},
"autoload": {
"psr-4": { "Amesplash\\FogBugzApi\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"spec\\Amesplash\\FogBugzApi\\": "tests/spec/",
"Amesplash\\FogBugzApi\\Test\\Unit\\": "tests/unit",
"Amesplash\\FogBugzApi\\Test\\Functional\\": "tests/functional"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}