-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
75 lines (75 loc) · 1.97 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
{
"name": "devmoath/jql-builder",
"description": "JQL builder is a supercharged PHP package that allows you to create Jira Query Language (JQL)",
"keywords": [
"php",
"jira",
"sdk",
"jql",
"builder"
],
"license": "MIT",
"authors": [
{
"name": "Moath Alhajri",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"spatie/macroable": "^2.0"
},
"require-dev": {
"laravel/pint": "^1.2.0",
"nunomaduro/collision": "^6.0",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.0",
"pestphp/pest-plugin-laravel": "^1.3",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.8.6",
"phpstan/phpstan-strict-rules": "^1.4",
"rector/rector": "^0.15.0",
"symfony/var-dumper": "^6.0.0"
},
"autoload": {
"psr-4": {
"JqlBuilder\\": "src"
}
},
"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
}
},
"extra": {
"laravel": {
"aliases": {
"Jql": "JqlBuilder\\Facades\\Jql"
}
}
},
"scripts": {
"lint": "pint --preset laravel -v --ansi",
"refactor": "rector --debug --ansi",
"test:lint": "pint --preset laravel --test -v --ansi",
"test:refactor": "rector --dry-run --ansi",
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --colors=always --min=100 --order-by=random --coverage",
"test": [
"@test:lint",
"@test:refactor",
"@test:types",
"@test:unit"
]
}
}