-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
81 lines (81 loc) · 2.77 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
{
"name": "sbuerk/composer-files-provider",
"description": "Provide files from a stack based on resolver patterns",
"type": "composer-plugin",
"homepage": "https://github.com/sbuerk/composer-files-provider",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Stefan Bürk",
"email": "[email protected]"
}
],
"support": {
"general": "https://github.com/sbuerk/composer-files-provider/issues",
"issues": "https://github.com/sbuerk/composer-files-provider/issues"
},
"config": {
"sort-packages": true
},
"require": {
"php": "^7.2 || ^7.3 || ^7.4 || ^8.0 || ^8.1",
"ext-json": "*",
"composer-plugin-api": "^1.0.0 || ^2.0.0"
},
"require-dev": {
"composer/composer": "1.2.*@dev || 2.0.*@dev",
"friendsofphp/php-cs-fixer": "^2.19.3",
"overtrue/phplint": "^2.4.1",
"phpstan/phpstan": "^1.8.4",
"phpstan/phpstan-phpunit": "^1.1.1",
"phpstan/phpstan-strict-rules": "^1.4.3",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"SBUERK\\ComposerFilesProvider\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SBUERK\\ComposerFilesProvider\\Tests\\": "Tests/"
}
},
"scripts": {
"cgl:check": [
"@php vendor/bin/php-cs-fixer fix --config=Build/php-cs-fixer/php-cs-fixer.php --dry-run --diff"
],
"cgl:fix": [
"@php vendor/bin/php-cs-fixer fix --config=Build/php-cs-fixer/php-cs-fixer.php "
],
"ci:tests": [
"@ci:php:lint",
"@ci:php:tests:unit"
],
"ci:php:tests:unit": [
"@php vendor/bin/phpunit -c Build/phpunit/UnitTests.xml"
],
"ci:php:lint": [
"phplint --configuration=Build/phplint/phplint.yml"
],
"ci:php:phpstan:check": [
"@php vendor/bin/phpstan analyse -c Build/phpstan/phpstan.neon --no-progress --no-interaction --memory-limit 4G"
],
"ci:php:phpstan:check:github": [
"@php vendor/bin/phpstan analyse -c Build/phpstan/phpstan.neon --no-progress --no-interaction --memory-limit 4G --error-format=github"
],
"ci:php:phpstan:baseline": [
"@php vendor/bin/phpstan analyse -c Build/phpstan/phpstan.neon --no-progress --no-interaction --memory-limit 4G --generate-baseline=Build/phpstan/phpstan-baseline.neon"
]
},
"scripts-descriptions": {
"ci:test": "Execute all lintings and tests in sequence",
"ci:php:lint": "Lint php files"
},
"extra": {
"class": "SBUERK\\ComposerFilesProvider\\Plugin\\FilesProvider",
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}