Skip to content

Commit 5394e85

Browse files
authored
Merge pull request #2 from BenjaminMedia/feature-fix-composer
added selfish author tags to composer
2 parents a8a64b0 + dcd6b5b commit 5394e85

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

bbpress-exif-lightbox.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
* Plugin Name: bbPress Exif Lightbox
55
* Plugin URI: https://github.com/BenjaminMedia/bbpress-exif-lightbox
66
* Description: Display exif data for the images attached in posts and comments
7-
* Author: Michael Sørensen
7+
* Author: Michael Sørensen & Frederik Rabøl
88
* Domain Path: /languages/
99
* Version: 0.0.1
1010
* License: GPL
1111
*/
1212

13-
namespace bbPress\DisplayExifLightbox;
13+
namespace Bonnier\DisplayExifLightbox;
1414

1515
// Do not access this file directly
1616
if (!defined('ABSPATH')) {
@@ -164,7 +164,7 @@ public function displayExifLightbox() {
164164

165165
if ($exif) {
166166
$hasExif = true;
167-
167+
168168
$output .= '<div class="exif-data" data-att-id="'.$attachment->ID.'" style="display: none"><span class="mdLabel">exif</span><span class="exif">' . $exif . '</span></div>';
169169
}
170170
}

composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@
1919
{
2020
"name": "Michael Sørensen",
2121
"email": "[email protected]"
22+
},
23+
{
24+
"name": "Frederik Rabøl",
25+
"email": "[email protected]",
26+
"homepage":"http://rabol.co"
2227
}
2328
],
2429
"support": {
@@ -27,7 +32,7 @@
2732
},
2833
"autoload": {
2934
"psr-4": {
30-
"Bonnier\\": "src/"
35+
"Bonnier\\DisplayExifLightbox\\": "/"
3136
}
3237
},
3338
"require": {

0 commit comments

Comments
 (0)