summaryrefslogtreecommitdiffstats
path: root/php-phpmyadmin-sql-parser-autoload.patch
blob: 3cea9242872eea36f70a08ec7f1d4206124d93b4 (plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
diff -up ./bin/highlight-query.rpm ./bin/highlight-query
--- ./bin/highlight-query.rpm	2019-06-03 14:32:07.000000000 +0200
+++ ./bin/highlight-query	2019-06-04 19:06:37.085484476 +0200
@@ -1,29 +1,7 @@
 #!/usr/bin/env php
 <?php
 
-$files = array(
-    __DIR__ . "/../vendor/autoload.php",
-    __DIR__ . "/../../vendor/autoload.php",
-    __DIR__ . "/../../../autoload.php",
-    "vendor/autoload.php"
-);
-
-$found = false;
-foreach ($files as $file) {
-    if (file_exists($file)) {
-        require_once $file;
-        $found = true;
-        break;
-    }
-}
-
-if (!$found) {
-    die(
-        "You need to set up the project dependencies using the following commands:" . PHP_EOL .
-        "curl -sS https://getcomposer.org/installer | php" . PHP_EOL .
-        "php composer.phar install" . PHP_EOL
-    );
-}
+require '/usr/share/php/PhpMyAdmin/SqlParser/autoload.php';
 
 $cli = new PhpMyAdmin\SqlParser\Utils\CLI();
 exit($cli->runHighlight());
diff -up ./bin/lint-query.rpm ./bin/lint-query
--- ./bin/lint-query.rpm	2019-06-03 14:32:07.000000000 +0200
+++ ./bin/lint-query	2019-06-04 19:06:37.085484476 +0200
@@ -1,29 +1,7 @@
 #!/usr/bin/env php
 <?php
 
-$files = array(
-    __DIR__ . "/../vendor/autoload.php",
-    __DIR__ . "/../../vendor/autoload.php",
-    __DIR__ . "/../../../autoload.php",
-    "vendor/autoload.php"
-);
-
-$found = false;
-foreach ($files as $file) {
-    if (file_exists($file)) {
-        require_once $file;
-        $found = true;
-        break;
-    }
-}
-
-if (!$found) {
-    die(
-        "You need to set up the project dependencies using the following commands:" . PHP_EOL .
-        "curl -sS https://getcomposer.org/installer | php" . PHP_EOL .
-        "php composer.phar install" . PHP_EOL
-    );
-}
+require '/usr/share/php/PhpMyAdmin/SqlParser/autoload.php';
 
 $cli = new PhpMyAdmin\SqlParser\Utils\CLI();
 exit($cli->runLint());
diff -up ./bin/tokenize-query.rpm ./bin/tokenize-query
--- ./bin/tokenize-query.rpm	2019-06-04 19:08:04.886758030 +0200
+++ ./bin/tokenize-query	2019-06-04 19:08:09.025766484 +0200
@@ -1,29 +1,7 @@
 #!/usr/bin/env php
 <?php
 
-$files = array(
-    __DIR__ . "/../vendor/autoload.php",
-    __DIR__ . "/../../vendor/autoload.php",
-    __DIR__ . "/../../../autoload.php",
-    "vendor/autoload.php"
-);
-
-$found = false;
-foreach ($files as $file) {
-    if (file_exists($file)) {
-        require_once $file;
-        $found = true;
-        break;
-    }
-}
-
-if (!$found) {
-    die(
-        "You need to set up the project dependencies using the following commands:" . PHP_EOL .
-        "curl -sS https://getcomposer.org/installer | php" . PHP_EOL .
-        "php composer.phar install" . PHP_EOL
-    );
-}
+require '/usr/share/php/PhpMyAdmin/SqlParser/autoload.php';
 
 $cli = new PhpMyAdmin\SqlParser\Utils\CLI();
 exit($cli->runTokenize());
diff -up ./src/Translator.php.rpm ./src/Translator.php
--- ./src/Translator.php.rpm	2019-06-03 14:32:07.000000000 +0200
+++ ./src/Translator.php	2019-06-04 19:06:37.085484476 +0200
@@ -40,7 +40,7 @@ class Translator
             self::$loader->textdomain('sqlparser');
 
             // Set path where to look for a domain
-            self::$loader->bindtextdomain('sqlparser', __DIR__ . '/../locale/');
+            self::$loader->bindtextdomain('sqlparser', __DIR__ . '/locale/');
         }
 
         if (is_null(self::$translator)) {