-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
61 lines (61 loc) · 1.54 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
{
"name": "bkwld/laravel-pug",
"description": "Pug view adapter for Laravel",
"type": "library",
"require": {
"php": "^7.2 || ^8.0",
"illuminate/support": ">=6",
"illuminate/view": ">=6",
"phug/component": "^1.1.3",
"pug-php/pug": "^3.3.1",
"pug-php/pug-assets": "^1.0.1",
"pug/installer": "^1.0.0",
"composer-plugin-api": "^1.0 || ^2.0"
},
"require-dev": {
"composer/composer": "^1.2 || ^2.0",
"phpunit/phpunit": "^8.5"
},
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "kylekatarnls",
"homepage": "https://github.com/kylekatarnls"
},
{
"name": "Robert Reinhard",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Bkwld\\LaravelPug\\": "src/"
}
},
"scripts": {
"post-install-cmd": [
"Pug\\Installer\\Installer::onAutoloadDump"
],
"post-update-cmd": [
"Pug\\Installer\\Installer::onAutoloadDump"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"installer": "Bkwld\\LaravelPug\\Install::publishVendor",
"laravel": {
"providers": [
"Bkwld\\LaravelPug\\ServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"nodejs-php-fallback/nodejs-php-fallback": true,
"pug/installer": true
}
}
}