-
-
Notifications
You must be signed in to change notification settings - Fork 126
/
composer.json
33 lines (33 loc) · 895 Bytes
/
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
{
"name": "jenssegers/blade",
"description": "The standalone version of Laravel's Blade templating engine for use outside of Laravel.",
"keywords": ["laravel", "blade", "template", "view", "render"],
"license" : "MIT",
"authors": [
{
"name": "Jens Segers",
"homepage": "https://jenssegers.com"
}
],
"require": {
"php": ">=8.1",
"illuminate/view": "^9.0|^10.0|^11.0",
"illuminate/config": "^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"laravel/pint": "^1.13"
},
"autoload": {
"psr-4": {
"Jenssegers\\Blade\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/pint --test",
"fix": "vendor/bin/pint"
}
}