Skip to content

Commit 8647acf

Browse files
authored
Merge pull request #3 from LibreSign/fix/change-namespace
fix: rollback to Vendor as namespace
2 parents d8d4055 + 9539861 commit 8647acf

File tree

1,441 files changed

+4479
-4479
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,441 files changed

+4479
-4479
lines changed

composer/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace OCA\Libresign\3rdparty;
3+
namespace OCA\Libresign\Vendor;
44

55
// autoload.php @generated by Composer
66
if (\PHP_VERSION_ID < 50600) {

composer/bacon/bacon-qr-code/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
],
2222
"autoload": {
2323
"psr-4": {
24-
"OCA\\Libresign\\3rdparty\\BaconQrCode\\": "src\/"
24+
"OCA\\Libresign\\Vendor\\BaconQrCode\\": "src\/"
2525
}
2626
},
2727
"autoload-dev": {
2828
"psr-4": {
29-
"OCA\\Libresign\\3rdparty\\BaconQrCodeTest\\": "test\/"
29+
"OCA\\Libresign\\Vendor\\BaconQrCodeTest\\": "test\/"
3030
}
3131
},
3232
"require-dev": {

composer/bacon/bacon-qr-code/src/Common/BitArray.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
declare (strict_types=1);
4-
namespace OCA\Libresign\3rdparty\BaconQrCode\Common;
4+
namespace OCA\Libresign\Vendor\BaconQrCode\Common;
55

6-
use OCA\Libresign\3rdparty\BaconQrCode\Exception\InvalidArgumentException;
6+
use OCA\Libresign\Vendor\BaconQrCode\Exception\InvalidArgumentException;
77
use SplFixedArray;
88
/**
99
* A simple, fast array of bits.

composer/bacon/bacon-qr-code/src/Common/BitMatrix.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
declare (strict_types=1);
4-
namespace OCA\Libresign\3rdparty\BaconQrCode\Common;
4+
namespace OCA\Libresign\Vendor\BaconQrCode\Common;
55

6-
use OCA\Libresign\3rdparty\BaconQrCode\Exception\InvalidArgumentException;
6+
use OCA\Libresign\Vendor\BaconQrCode\Exception\InvalidArgumentException;
77
use SplFixedArray;
88
/**
99
* Bit matrix.

composer/bacon/bacon-qr-code/src/Common/BitUtils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
declare (strict_types=1);
4-
namespace OCA\Libresign\3rdparty\BaconQrCode\Common;
4+
namespace OCA\Libresign\Vendor\BaconQrCode\Common;
55

66
/**
77
* General bit utilities.

composer/bacon/bacon-qr-code/src/Common/CharacterSetEci.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

33
declare (strict_types=1);
4-
namespace OCA\Libresign\3rdparty\BaconQrCode\Common;
4+
namespace OCA\Libresign\Vendor\BaconQrCode\Common;
55

6-
use OCA\Libresign\3rdparty\BaconQrCode\Exception\InvalidArgumentException;
7-
use OCA\Libresign\3rdparty\DASPRiD\Enum\AbstractEnum;
6+
use OCA\Libresign\Vendor\BaconQrCode\Exception\InvalidArgumentException;
7+
use OCA\Libresign\Vendor\DASPRiD\Enum\AbstractEnum;
88
/**
99
* Encapsulates a Character Set ECI, according to "Extended Channel Interpretations" 5.3.1.1 of ISO 18004.
1010
*

composer/bacon/bacon-qr-code/src/Common/EcBlock.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
declare (strict_types=1);
4-
namespace OCA\Libresign\3rdparty\BaconQrCode\Common;
4+
namespace OCA\Libresign\Vendor\BaconQrCode\Common;
55

66
/**
77
* Encapsulates the parameters for one error-correction block in one symbol version.

composer/bacon/bacon-qr-code/src/Common/EcBlocks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
declare (strict_types=1);
4-
namespace OCA\Libresign\3rdparty\BaconQrCode\Common;
4+
namespace OCA\Libresign\Vendor\BaconQrCode\Common;
55

66
/**
77
* Encapsulates a set of error-correction blocks in one symbol version.

composer/bacon/bacon-qr-code/src/Common/ErrorCorrectionLevel.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

33
declare (strict_types=1);
4-
namespace OCA\Libresign\3rdparty\BaconQrCode\Common;
4+
namespace OCA\Libresign\Vendor\BaconQrCode\Common;
55

6-
use OCA\Libresign\3rdparty\BaconQrCode\Exception\OutOfBoundsException;
7-
use OCA\Libresign\3rdparty\DASPRiD\Enum\AbstractEnum;
6+
use OCA\Libresign\Vendor\BaconQrCode\Exception\OutOfBoundsException;
7+
use OCA\Libresign\Vendor\DASPRiD\Enum\AbstractEnum;
88
/**
99
* Enum representing the four error correction levels.
1010
*

composer/bacon/bacon-qr-code/src/Common/FormatInformation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @copyright 2013 Ben 'DASPRiD' Scholzen
88
* @license http://opensource.org/licenses/BSD-2-Clause Simplified BSD License
99
*/
10-
namespace OCA\Libresign\3rdparty\BaconQrCode\Common;
10+
namespace OCA\Libresign\Vendor\BaconQrCode\Common;
1111

1212
/**
1313
* Encapsulates a QR Code's format information, including the data mask used and error correction level.

0 commit comments

Comments
 (0)