|
1 | 1 | { |
2 | 2 | "name": "phalcon/volt", |
3 | | - "description": "Phalcon Volt is a HTML template engine for sender-side rendering.", |
4 | | - "version": "1.0.0", |
| 3 | + "description": "Phalcon Volt is an HTML template engine for server-side rendering.", |
| 4 | + "type": "library", |
5 | 5 | "keywords": [ |
6 | 6 | "phalcon", |
7 | 7 | "volt", |
8 | 8 | "template", |
9 | 9 | "engine", |
10 | | - "HTML" |
| 10 | + "html" |
11 | 11 | ], |
| 12 | + "homepage": "https://phalcon.io", |
12 | 13 | "license": "MIT", |
13 | 14 | "authors": [ |
14 | 15 | { |
|
21 | 22 | "homepage": "https://github.com/phalcon/volt/graphs/contributors" |
22 | 23 | } |
23 | 24 | ], |
| 25 | + "support": { |
| 26 | + "email": "support@phalcon.io", |
| 27 | + "issues": "https://github.com/phalcon/volt/issues", |
| 28 | + "source": "https://github.com/phalcon/volt", |
| 29 | + "discussions": "https://phalcon.io/discussions/", |
| 30 | + "docs": "https://phalcon.io/docs/", |
| 31 | + "rss": "https://blog.phalcon.io/rss" |
| 32 | + }, |
24 | 33 | "require": { |
25 | | - "php": ">=8.1", |
26 | | - "ext-mbstring": "*", |
27 | | - "ext-ctype": "*" |
| 34 | + "php": ">=8.1 <9.0", |
| 35 | + "ext-ctype": "*", |
| 36 | + "ext-mbstring": "*" |
| 37 | + }, |
| 38 | + "suggest": { |
| 39 | + "phalcon/phalcon": "The Phalcon framework this module integrates with" |
28 | 40 | }, |
| 41 | + "minimum-stability": "stable", |
| 42 | + "prefer-stable": true, |
29 | 43 | "require-dev": { |
30 | 44 | "pds/skeleton": "^1.0", |
31 | 45 | "phalcon/ide-stubs": "^5.8", |
|
54 | 68 | "Phalcon\\Tests\\Unit\\": "tests/unit/" |
55 | 69 | } |
56 | 70 | }, |
57 | | - "support": { |
58 | | - "email": "support@phalcon.io", |
59 | | - "issues": "https://github.com/phalcon/volt/issues", |
60 | | - "discussions": "https://phalcon.io/discussions/", |
61 | | - "source": "https://github.com/phalcon/volt", |
62 | | - "docs": "https://phalcon.io/docs/", |
63 | | - "rss": "https://blog.phalcon.io/rss" |
64 | | - }, |
65 | 71 | "scripts": { |
66 | | - "analyze": "vendor/bin/phpstan analyse -c phpstan.neon", |
| 72 | + "analyze": "vendor/bin/phpstan analyse -c phpstan.neon --memory-limit 1024M", |
67 | 73 | "cs": "vendor/bin/phpcs --standard=phpcs.xml", |
68 | 74 | "cs-fix": "vendor/bin/phpcbf --standard=phpcs.xml", |
69 | | - "test": "vendor/bin/phpunit", |
70 | | - "test-coverage": "vendor/bin/phpunit --coverage-clover ./tests/support/coverage.xml", |
71 | | - "test-coverage-html": "vendor/bin/phpunit --testdox --coverage-html ./tests/support/coverage/" |
| 75 | + "test": "vendor/bin/phpunit -c phpunit.xml", |
| 76 | + "test-coverage": "vendor/bin/phpunit -c phpunit.xml --coverage-clover tests/_output/coverage.xml", |
| 77 | + "test-coverage-html": "vendor/bin/phpunit -c phpunit.xml --coverage-html tests/_output/" |
72 | 78 | } |
73 | 79 | } |
0 commit comments