-
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.21 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.21 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": "codewithkyrian/jinja-php",
"description": "A minimalistic PHP implementation of the Jinja templating engine, specifically designed for parsing and rendering ML chat templates.",
"type": "library",
"require": {
"php": "^8.1"
},
"require-dev": {
"symfony/var-dumper": "^6.3|^7.0",
"pestphp/pest": "^2.36.0|^3.5.0",
"friendsofphp/php-cs-fixer": "^3.89",
"phpstan/phpstan": "^2.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Codewithkyrian\\Jinja\\": "src/"
},
"files": [
"src/Core/Utils.php"
]
},
"authors": [
{
"name": "Kyrian Obikwelu",
"email": "koshnawaza@gmail.com"
}
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "vendor/bin/pest",
"test:coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest --coverage",
"cs-fix": "vendor/bin/php-cs-fixer fix",
"cs-check": "vendor/bin/php-cs-fixer fix --dry-run --diff --verbose",
"phpstan": "vendor/bin/phpstan analyze",
"phpstan-baseline": "vendor/bin/phpstan analyze --generate-baseline",
"qa": [
"@cs-check",
"@phpstan"
],
"qa-fix": [
"@cs-fix",
"@phpstan"
]
}
}