-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
68 lines (68 loc) · 1.8 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
{
"name": "keboola/php-component",
"license": "MIT",
"type": "project",
"description": "Helper classes for developing Keboola PHP components",
"keywords": [
"keboola",
"docker",
"component"
],
"authors": [
{
"name": "Keboola",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Keboola\\Component\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Keboola\\Component\\Tests\\": "tests/",
"MyComponent\\": "example/"
}
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"keboola/common-exceptions": "^1.2",
"monolog/monolog": "^2.3",
"symfony/config": "^5.4|^6.0",
"symfony/filesystem": "^5.4|^6.0",
"symfony/finder": "^5.4|^6.0",
"symfony/property-access": "^5.4|^6.0",
"symfony/serializer": "^5.4|^6.0"
},
"require-dev": {
"devedge/sami-github": "^1.0",
"keboola/coding-standard": "^15.0",
"keboola/php-temp": "^2.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"tests": "phpunit",
"phpstan": "phpstan analyse --no-progress --level=max src tests example -c phpstan.neon",
"phpcs": "phpcs --extensions=php src tests example",
"phpcbf": "phpcbf --extensions=php src tests example",
"build": [
"@phpcs",
"@phpstan",
"@tests"
],
"ci": [
"@composer validate --no-check-all --strict",
"@build"
]
},
"config": {
"sort-packages": true,
"lock": false,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}