Skip to content

Commit

Permalink
Merge pull request #20 from NumerousHats/NumerousHats-autoload-patch
Browse files Browse the repository at this point in the history
Fix autoload paths
  • Loading branch information
jenlampton authored Oct 3, 2024
2 parents 8a84c19 + 4161f8e commit a3fcb0c
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions feeds_jsonpath_parser.module
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ function feeds_jsonpath_parser_autoload_info() {
'FeedsJSONPathParser' => 'FeedsJSONPathParser.inc',

// Use proper namespace.
'Flow\JSONPath\JSONPath' => 'libraries/jsonpath/src/JSONPath.php',
'Flow\JSONPath\JSONPathException' => 'libraries/jsonpath/src/JSONPathException.php',
'Flow\JSONPath\JSONPathLexer' => 'libraries/jsonpath/src/JSONPathLexer.php',
'Flow\JSONPath\JSONPathToken' => 'libraries/jsonpath/src/JSONPathToken.php',
'Flow\JSONPath\AccessHelper' => 'libraries/jsonpath/src/AccessHelper.php',
'Flow\JSONPath\JSONPath' => 'libraries/JSONPath/src/JSONPath.php',
'Flow\JSONPath\JSONPathException' => 'libraries/JSONPath/src/JSONPathException.php',
'Flow\JSONPath\JSONPathLexer' => 'libraries/JSONPath/src/JSONPathLexer.php',
'Flow\JSONPath\JSONPathToken' => 'libraries/JSONPath/src/JSONPathToken.php',
'Flow\JSONPath\AccessHelper' => 'libraries/JSONPath/src/AccessHelper.php',

'Flow\JSONPath\AbstractFilter' => 'libraries/jsonpath/src/Filters/AbstractFilter.php',
'Flow\JSONPath\IndexesFilter' => 'libraries/jsonpath/src/Filters/IndexesFilter.php',
'Flow\JSONPath\IndexFilter' => 'libraries/jsonpath/src/Filters/IndexFilter.php',
'Flow\JSONPath\QueryMatchFilter' => 'libraries/jsonpath/src/Filters/QueryMatchFilter.php',
'Flow\JSONPath\QueryResultFilter' => 'libraries/jsonpath/src/Filters/QueryResultFilter.php',
'Flow\JSONPath\RecursiveFilter' => 'libraries/jsonpath/src/Filters/RecursiveFilter.php',
'Flow\JSONPath\SliceFilter' => 'libraries/jsonpath/src/Filters/SliceFilter.php',
'Flow\JSONPath\AbstractFilter' => 'libraries/JSONPath/src/Filters/AbstractFilter.php',
'Flow\JSONPath\IndexesFilter' => 'libraries/JSONPath/src/Filters/IndexesFilter.php',
'Flow\JSONPath\IndexFilter' => 'libraries/JSONPath/src/Filters/IndexFilter.php',
'Flow\JSONPath\QueryMatchFilter' => 'libraries/JSONPath/src/Filters/QueryMatchFilter.php',
'Flow\JSONPath\QueryResultFilter' => 'libraries/JSONPath/src/Filters/QueryResultFilter.php',
'Flow\JSONPath\RecursiveFilter' => 'libraries/JSONPath/src/Filters/RecursiveFilter.php',
'Flow\JSONPath\SliceFilter' => 'libraries/JSONPath/src/Filters/SliceFilter.php',
);

return $autoloads;
Expand All @@ -56,7 +56,7 @@ function feeds_jsonpath_parser_feeds_plugins() {
}


/******************* Deprecaed below this line ********************************/
/******************* Deprecated below this line ********************************/

/**
* Implements hook_libraries_info().
Expand Down

0 comments on commit a3fcb0c

Please sign in to comment.