-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
47 lines (47 loc) · 1.04 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
{
"name": "paneon/php-vue-to-twig",
"description": "",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexander Pape",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-dom": "*",
"ext-libxml": "*",
"scssphp/scssphp": "^1.9",
"squizlabs/php_codesniffer": "^3.3",
"ramsey/uuid": "^3.8"
},
"autoload": {
"psr-4": {
"Paneon\\VueToTwig\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Paneon\\VueToTwig\\": "src",
"Paneon\\VueToTwig\\Tests\\": "tests"
},
"files": [
"vendor/autoload.php"
]
},
"require-dev": {
"ext-simplexml": "*",
"phpunit/phpunit": "^9",
"monolog/monolog": "^1.24",
"phpstan/phpstan": "^0.12",
"friendsofphp/php-cs-fixer": "^2.16"
},
"scripts": {
"cs:fix": "phpcbf --standard=phpcs.xml",
"cs:check": "phpcs --standard=phpcs.xml --colors -ps",
"phpstan": "@php vendor/bin/phpstan analyse src --level 6",
"phpunit": "@php vendor/phpunit/phpunit/phpunit"
}
}