Skip to content

Commit 7b2ac36

Browse files
authored
chore: move committed third-party deps to lib (#3973)
1 parent 46ac775 commit 7b2ac36

File tree

8 files changed

+6
-3
lines changed

8 files changed

+6
-3
lines changed

lib/bootstrap.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
__DIR__ . '/../lib/url.php',
1919
__DIR__ . '/../lib/seotags.php',
2020
// Vendor
21-
__DIR__ . '/../vendor/parsedown/Parsedown.php',
22-
__DIR__ . '/../vendor/php-urljoin/src/urljoin.php',
23-
__DIR__ . '/../vendor/simplehtmldom/simple_html_dom.php',
21+
__DIR__ . '/../lib/parsedown/Parsedown.php',
22+
__DIR__ . '/../lib/php-urljoin/src/urljoin.php',
23+
__DIR__ . '/../lib/simplehtmldom/simple_html_dom.php',
2424
];
2525
foreach ($files as $file) {
2626
require_once $file;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

phpcs.xml

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88

99
<exclude-pattern>./static</exclude-pattern>
1010
<exclude-pattern>./vendor</exclude-pattern>
11+
<exclude-pattern>./lib/parsedown</exclude-pattern>
12+
<exclude-pattern>./lib/php-urljoin</exclude-pattern>
13+
<exclude-pattern>./lib/simplehtmldom</exclude-pattern>
1114
<exclude-pattern>./templates</exclude-pattern>
1215
<exclude-pattern>./config.default.ini.php</exclude-pattern>
1316
<exclude-pattern>./config.ini.php</exclude-pattern>

0 commit comments

Comments
 (0)