-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1007 Bytes
/
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
{
"name": "kint-php/kint-twig",
"description": "Twig extension for Kint integration",
"keywords": ["dump", "debug", "twig"],
"type": "library",
"homepage": "https://kint-php.github.io/kint/",
"license": "GPL-3.0",
"require": {
"php": ">=7.4",
"kint-php/kint": "^6",
"twig/twig": "^2.4 || ^3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"vimeo/psalm": "^5",
"phpunit/phpunit": "^9"
},
"config": {
"platform": {
"php": "8.3"
}
},
"autoload": {
"psr-4": {
"Kint\\Twig\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kint\\Test\\Twig\\": "tests/"
}
},
"authors": [
{
"name": "Jonathan Vollebregt",
"email": "jnvsor@gmail.com"
}
],
"scripts": {
"format": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix",
"analyze": "psalm --no-cache"
}
}