-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.42 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.42 KB
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
{
"name": "millancore/pesto",
"description": "PHP View Engine",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Juan Millan",
"email": "juanes14569@gmail.com"
}
],
"autoload": {
"psr-4": {
"Millancore\\Pesto\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Millancore\\Pesto\\Tests\\": "tests/",
"Millancore\\Pesto\\Benchmarks\\": "benchmarks/"
}
},
"require": {
"php": "^8.4",
"ext-dom": "*",
"ext-libxml": "*"
},
"require-dev": {
"phpunit/phpunit": "^12.3",
"symfony/var-dumper": "^7.3",
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "^3.86",
"phpbench/phpbench": "^1.3",
"twig/twig": "^3.0",
"illuminate/view": "^11.0",
"illuminate/events": "^11.0"
},
"scripts": {
"test": "vendor/bin/phpunit --",
"coverage": "vendor/bin/phpunit --coverage-html tests/coverage",
"phpstan": "vendor/bin/phpstan analyse",
"fixer": "vendor/bin/php-cs-fixer fix",
"bench": "vendor/bin/phpbench run --report=compare",
"bench:pesto": "vendor/bin/phpbench run benchmarks/PestoBench.php --report=compare",
"bench:twig": "vendor/bin/phpbench run benchmarks/TwigBench.php --report=compare",
"bench:blade": "vendor/bin/phpbench run benchmarks/BladeBench.php --report=compare",
"bench:chart": "vendor/bin/phpbench run --report=chart --output=chart-html"
},
"minimum-stability": "stable"
}