-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
62 lines (62 loc) · 1.62 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
{
"name": "lmc/steward-example",
"description": "Example repository showing usage of Steward library",
"license": "MIT",
"authors": [
{
"name": "Ondřej Machulda",
"email": "[email protected]"
},
{
"name": "LMC s.r.o.",
"homepage": "https://github.com/lmc-eu"
}
],
"require": {
"php": "^7.3",
"fakerphp/faker": "^1.13",
"lmc/steward": "^3.0.0",
"ondram/ci-detector": "^4.0",
"php-webdriver/webdriver": "^1.10"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.13",
"lmc/coding-standard": "^3.0",
"php-parallel-lint/php-parallel-lint": "^1.2"
},
"minimum-stability": "beta",
"prefer-stable": true,
"autoload": {
"psr-4": {
"My\\Steward\\": "src/",
"My\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"platform": {
"php": "7.3"
}
},
"scripts": {
"all": [
"@lint",
"@analyze"
],
"analyze": [
"vendor/bin/ecs check src/ tests/ ecs.php --ansi --clear-cache"
],
"fix": [
"@composer normalize",
"vendor/bin/ecs check src/ tests/ ecs.php --ansi --fix"
],
"lint": [
"vendor/bin/parallel-lint -j 10 ./src ./tests ecs.php",
"@composer validate",
"@composer normalize --dry-run"
]
}
}