-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
69 lines (69 loc) · 2.06 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
{
"name": "oleksiibulba/webpack-encore-plugin",
"description": "This is a Micro plugin for webpack-encore support",
"license": "MIT",
"type": "micro-plugin",
"authors": [
{
"name": "Oleksii Bulba",
"email": "[email protected]",
"homepage": "https://github.com/OleksiiBulba",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"micro/kernel-boot-configuration": "^1",
"micro/kernel-boot-plugin-depended": "^1",
"micro/plugin-twig": "^1",
"symfony/serializer": "^6.2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.29",
"friendsofphp/php-cs-fixer": "^3.13",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^5.2"
},
"autoload": {
"psr-4": {
"OleksiiBulba\\WebpackEncorePlugin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"OleksiiBulba\\WebpackEncorePlugin\\Tests\\Unit\\": "tests/unit"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"thanks": {
"name": "symfony/webpack-encore-bundle",
"url": "https://github.com/symfony/webpack-encore-bundle"
}
},
"scripts": {
"coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-text",
"php-cs-fix": "./vendor/bin/php-cs-fixer fix --verbose --using-cache=no",
"php-cs-try": "./vendor/bin/php-cs-fixer fix --verbose --dry-run --using-cache=no",
"phpstan": "./vendor/bin/phpstan analyze --no-progress",
"phpunit": "./vendor/bin/phpunit",
"psalm": "./vendor/bin/psalm --no-progress --show-info=true",
"statics": [
"@phpstan",
"@php-cs-try",
"@psalm"
],
"test": [
"@statics",
"composer validate --strict",
"composer normalize",
"@coverage"
]
}
}