-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPlugin.php
More file actions
38 lines (34 loc) · 789 Bytes
/
Plugin.php
File metadata and controls
38 lines (34 loc) · 789 Bytes
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
<?php
namespace Pug\October;
use App;
use System\Classes\PluginBase;
/**
* Pug (ex-Jade) Plugin.
*
* @see https://www.phug-lang.com
*/
class Plugin extends PluginBase
{
/**
* Returns information about this plugin.
*
* @return array
*/
public function pluginDetails()
{
return [
'name' => 'Pug (ex-Jade)',
'description' => 'Use Pug (ex-Jade) templates in OctoberCMS.',
'author' => 'kylekatarnls',
'icon' => 'icon-pug',
'homepage' => 'https://github.com/pug-php/oc-pug-plugin',
];
}
/**
* Register the laravel service provider.
*/
public function boot()
{
App::register('\\Bkwld\\LaravelPug\\ServiceProvider');
}
}