generated from OnrampLab/composer-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 2.27 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
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "onramplab/php-api-client-template",
"description": "A PHP API client template",
"type": "library",
"license": "MIT",
"keywords": [
"template",
"composer",
"package",
"skeleton",
"boilerplate",
"composer template",
"package template",
"composer package template"
],
"authors": [
{
"name": "Onramplab",
"email": "dev@onramplab.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"onramplab/php-api-client": "^2.0"
},
"require-dev": {
"mockery/mockery": "^1.5",
"nunomaduro/phpinsights": "^2.6",
"onramplab/onr-phpcs-laravel": "^1.2",
"phpmd/phpmd": "^2.13",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.15.3",
"sempro/phpunit-pretty-print": "^1.4",
"spatie/phpunit-watcher": "^1.23",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"psr-4": {
"OnrampLab\\PhpApiClientTemplate\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.0-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true
}
},
"scripts": {
"test": [
"@php vendor/bin/phpunit"
],
"test:watch": [
"Composer\\Config::disableProcessTimeout",
"phpunit-watcher watch --filter NoneTest < /dev/tty"
],
"psr2check": [
"@php vendor/bin/phpcs --standard=PSR2 src/"
],
"psr2autofix": [
"@php vendor/bin/phpcbf --standard=PSR2 src/"
],
"docs": [
"@php tools/phpDocumentor"
],
"insights": [
"@php vendor/bin/phpinsights --no-interaction"
],
"insights:fix": [
"@php vendor/bin/phpinsights --no-interaction --fix"
],
"dependencies:check": [
"phpmd src text rulesets.xml"
],
"rector": [
"vendor/bin/rector process src --dry-run"
],
"rector:fix": [
"vendor/bin/rector process src"
]
}
}