forked from kint-php/kint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
86 lines (86 loc) · 2.68 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "kint-php/kint",
"description": "Kint - debugging tool for PHP developers",
"keywords": ["kint", "php", "debug"],
"type": "library",
"homepage": "https://kint-php.github.io/kint/",
"license": "MIT",
"authors": [
{
"name": "Jonathan Vollebregt",
"homepage": "https://github.com/jnvsor"
},
{
"name": "Rokas Šleinius",
"homepage": "https://github.com/raveren"
},
{
"name": "Contributors",
"homepage": "https://github.com/kint-php/kint/graphs/contributors"
}
],
"require": {
"php": ">=5.3.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^4.0",
"symfony/finder": "^2.0 || ^3.0 || ^4.0",
"seld/phar-utils": "^1.0",
"vimeo/psalm": "^2.0"
},
"autoload": {
"files": ["init.php"],
"psr-4": {
"Kint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kint\\Test\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.0"
}
},
"scripts": {
"post-update-cmd": [
"npm ci",
"bundler install --deployment"
],
"post-install-cmd": "@post-update-cmd",
"clean": [
"rm -rf resources/compiled/",
"rm -rf build/"
],
"format": [
"@format:php",
"@format:js",
"@format:sass"
],
"format:php": "php-cs-fixer fix",
"format:js": "npm run format:js",
"format:sass": "bundler exec sass-convert -RiF scss -T scss resources/sass/",
"build": [
"@build:sass",
"@build:js",
"@build:php"
],
"build:sass": "bundler exec sass --sourcemap=none --update -fCt compressed resources/sass:resources/compiled",
"build:js": "npm run build:js",
"build:php": "php ./build.php",
"analyze": "psalm --show-info=false"
},
"suggest": {
"kint-php/kint-twig": "Provides d() and s() functions in twig templates",
"kint-php/kint-js": "Provides a simplified dump to console.log()",
"ext-mbstring": "Provides string encoding detection",
"ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
"ext-ctype": "Simple data type tests",
"symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing",
"symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
"symfony/polyfill-ctype": "Replacement for ext-ctype if missing"
}
}