Skip to content

Commit e92a157

Browse files
authored
Merge pull request #807 from lightspeedwp/copilot/refactor-vendor-includes-to-plugins
Refactor: Move bundled dependencies from vendor/ to plugins/
2 parents e19cef7 + 3d1d666 commit e92a157

File tree

361 files changed

+25
-23
lines changed

Some content is hidden

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

361 files changed

+25
-23
lines changed

.gitignore

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Dependencies
22
node_modules/
3+
# Exclude vendor directory (Composer dependencies) - custom plugins are in /plugins/
34
vendor/
45

56
# Build artifacts and compiled files (but keep build/ for WordPress plugin distribution)
@@ -75,21 +76,22 @@ playwright-report/*
7576
vendor/bin/.phpunit.result.cache
7677

7778
#Unit Test and Composer
78-
vendor/10up
79-
vendor/10up/phpcs-composer
80-
vendor/automattic
81-
vendor/bin
82-
vendor/composer
83-
vendor/dealerdirect
84-
vendor/myclabs
85-
vendor/nikic
86-
vendor/phar-io
87-
vendor/phpcompatibility
88-
vendor/phpcsstandards
89-
vendor/phpunit
90-
vendor/sebastian
91-
vendor/sirbrillig
92-
vendor/squizlabs
93-
vendor/theseer
94-
vendor/wp-coding-standards
95-
vendor/autoload.php
79+
# Note: vendor/ is fully excluded above, these entries are kept for reference
80+
# vendor/10up
81+
# vendor/10up/phpcs-composer
82+
# vendor/automattic
83+
# vendor/bin
84+
# vendor/composer
85+
# vendor/dealerdirect
86+
# vendor/myclabs
87+
# vendor/nikic
88+
# vendor/phar-io
89+
# vendor/phpcompatibility
90+
# vendor/phpcsstandards
91+
# vendor/phpunit
92+
# vendor/sebastian
93+
# vendor/sirbrillig
94+
# vendor/squizlabs
95+
# vendor/theseer
96+
# vendor/wp-coding-standards
97+
# vendor/autoload.php

includes/classes/class-tour-operator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ private function build_asset_args($asset)
192192
*/
193193
public function setup()
194194
{
195-
require_once LSX_TO_PATH . 'vendor/content-models/create-content-model.php';
195+
require_once LSX_TO_PATH . 'plugins/content-models/create-content-model.php';
196196

197197
$this->classes['permalinks'] = new Permalinks();
198198
$this->classes['taxonomies'] = Taxonomies::init();
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)