-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
67 lines (67 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
61
62
63
64
65
66
67
{
"name": "devmoath/jira-php",
"description": "Jira PHP is a supercharged PHP API client that allows you to interact with the Jira API and the Service Desk API",
"keywords": [
"php",
"jira",
"sdk",
"service-desk",
"api",
"client"
],
"license": "MIT",
"authors": [
{
"name": "Moath Alhajri",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1.0",
"guzzlehttp/guzzle": "^7.5.0"
},
"require-dev": {
"laravel/pint": "^1.2.0",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^7.0.0",
"pestphp/pest": "^2.0.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.8.6",
"phpstan/phpstan-strict-rules": "^1.4",
"symfony/var-dumper": "^6.2.0"
},
"autoload": {
"psr-4": {
"Jira\\": "src/"
},
"files": [
"src/Jira.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"lint": "pint --preset laravel -v --ansi",
"test:lint": "pint --preset laravel --test -v --ansi",
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --colors=always --min=100 --order-by=random --coverage",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
}
}