generated from icanhazstring/php-library-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
59 lines (59 loc) · 1.6 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
{
"name": "icanhazstring/random-issue-picker",
"type": "library",
"description": "Select random github issue by certain criteria",
"keywords": [
"github",
"issue",
"random"
],
"homepage": "https://github.com/icanhazstring/random-issue-picker",
"license": "MIT",
"authors": [
{
"name": "Andreas Frömer",
"email": "icanhazstring@noreply.github.com"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.1",
"jms/serializer": "^3.9",
"symfony/console": "^5.1",
"symfony/dotenv": "^5.1"
},
"require-dev": {
"phpstan/phpstan": "^0.12.47",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.5"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Icanhazstring\\RandomIssuePicker\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Icanhazstring\\RandomIssuePicker\\Test\\Integration\\": "tests/Integration",
"Icanhazstring\\RandomIssuePicker\\Test\\Unit\\": "tests/Unit"
}
},
"scripts": {
"analyse": "phpstan analyse --no-progress",
"check": [
"@cs-check",
"@analyse"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf"
},
"support": {
"issues": "https://github.com/icanhazstring/random-issue-picker/issues",
"source": "https://github.com/icanhazstring/random-issue-picker"
}
}