-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (41 loc) · 966 Bytes
/
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
{
"name": "patrikvalenta/heureka-feed-personal",
"type": "project",
"autoload": {
"psr-4": {
"PatrikValenta\\HeurekaFeedPersonal\\": "src/"
}
},
"authors": [
{
"name": "Patrik Valenta",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"contributte/qa": "^0.3.1",
"contributte/phpstan": "^0.1.0"
},
"require": {
"guzzlehttp/guzzle": "^7.9"
},
"scripts": {
"cs": [
"phpcs --standard=ruleset.xml src"
],
"cs-fix": [
"phpcbf --standard=ruleset.xml src"
],
"phpstan": [
"phpstan analyse -c phpstan.neon --memory-limit=512M"
],
"qa": [
"composer cs-fix; composer cs; composer phpstan"
]
}
}