-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.05 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
{
"name": "userfrosting/vite-php-twig",
"type": "library",
"description": "Vite function for Twig templates",
"keywords": ["vite", "Twig"],
"homepage": "https://github.com/userfrosting/vite-php-twig",
"license" : "MIT",
"authors" : [
{
"name": "Louis Charette",
"homepage": "https://bbqsoftwares.com"
}
],
"require": {
"php": "^8.1",
"twig/twig": "^3.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"slam/phpstan-extensions": "^6.0",
"mockery/mockery": "^1.2"
},
"autoload": {
"psr-4": {
"UserFrosting\\ViteTwig\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"UserFrosting\\ViteTwig\\Tests\\": "tests"
}
}
}