-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
58 lines (58 loc) · 2.24 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
{
"name": "pentatrion/vite-bundle",
"description": "Vite integration for your Symfony app",
"keywords": [
"bundle",
"symfony",
"vite",
"vitejs"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Hugues Tavernier",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"symfony/asset": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/config": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/http-client": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Pentatrion\\ViteBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pentatrion\\ViteBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.9",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/web-link": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"scripts": {
"cs-fix": "php8.3 vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"ci-check": [
"find -L . -path ./vendor -prune -o -type f -name '*.php' -print0 | xargs -0 -n 1 -P $(nproc) php8.1 -l",
"find -L . -path ./vendor -prune -o -type f -name '*.php' -print0 | xargs -0 -n 1 -P $(nproc) php8.2 -l",
"find -L . -path ./vendor -prune -o -type f -name '*.php' -print0 | xargs -0 -n 1 -P $(nproc) php8.3 -l",
"php8.3 vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --diff --dry-run --stop-on-violation --using-cache=no",
"php8.3 vendor/bin/phpstan analyse --configuration=phpstan.neon"
],
"phpstan-82": "php8.2 vendor/bin/phpstan analyse --configuration=phpstan.neon",
"phpstan-80": "php8.0 vendor/bin/phpstan analyse --configuration=phpstan.php80.neon"
}
}