Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
38 | public function hookLibraryList(array &$libraries) |
||
39 | { |
||
40 | $libraries['simpleimage'] = array( |
||
41 | 'name' => 'SimpleImage', // @text |
||
42 | 'description' => 'A PHP class that simplifies working with images', // @text |
||
43 | 'type' => 'php', |
||
44 | 'module' => 'image', |
||
45 | 'url' => 'https://github.com/claviska/SimpleImage', |
||
46 | 'download' => 'https://github.com/claviska/SimpleImage/archive/3.3.0.zip', |
||
47 | 'version' => '3.3.0', |
||
48 | 'vendor' => 'claviska/simpleimage' |
||
49 | ); |
||
50 | } |
||
51 | |||
71 |