forked from phalcon/volt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 1.97 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
{
"name": "phalcon/volt",
"description": "Phalcon Volt is a HTML template engine for sender-side rendering.",
"version": "1.0.0",
"keywords": [
"phalcon",
"volt",
"template",
"engine",
"HTML"
],
"license": "MIT",
"authors": [
{
"name": "Phalcon Team",
"email": "[email protected]",
"homepage": "https://phalcon.io/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/cphalcon/graphs/contributors"
}
],
"require": {
"php": ">=8.0",
"ext-mbstring": "*",
"pds/skeleton": "^1.0"
},
"require-dev": {
"phalcon/ide-stubs": "^5.0",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.10"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"autoload": {
"psr-4": {
"Phalcon\\Volt\\": "src/"
},
"files": [
"files/parser.php.php"
]
},
"autoload-dev": {
"psr-4": {
"Phalcon\\Tests\\Unit\\": "tests/unit/"
}
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/phalcon/cphalcon/issues",
"forum": "https://phalcon.io/forum/",
"source": "https://github.com/phalcon/cphalcon",
"docs": "https://phalcon.io/docs/",
"rss": "https://blog.phalcon.io/rss"
},
"scripts": {
"analyze": "vendor/bin/phpstan analyse -c phpstan.neon",
"cs": "vendor/bin/phpcs --standard=phpcs.xml",
"cs-fix": "vendor/bin/phpcbf --standard=phpcs.xml",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-clover ./tests/support/coverage.xml"
}
}