Skip to content

Commit

Permalink
feat: Loader rework
Browse files Browse the repository at this point in the history
BREAKING CHANGE - Moving to XWP namespace
  • Loading branch information
seebeen committed Jun 18, 2024
1 parent 521095f commit b84e7cb
Show file tree
Hide file tree
Showing 19 changed files with 1,444 additions and 394 deletions.
23 changes: 13 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,28 @@
"name": "oblak/wp-asset-loader",
"description": "Simple Asset Loader for WordPress",
"license": "GPL-2.0-only",
"version": "3.0.2",
"autoload": {
"psr-4": {
"Oblak\\WP\\": "src"
}
},
"require": {
"php": ">=8.0"
"php": ">=8.0",
"x-wp/helper-classes": "^1",
"x-wp/helper-functions": "^1"
},
"require-dev": {
"oblak/wordpress-coding-standard": "^1"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
},
"autoload": {
"psr-4": {
"Oblak\\WP\\": "src/Legacy/",
"XWP\\Dependency\\": "src"
},
"files": [
"src/Utils/xwp-dep-loader-fns.php",
"src/Utils/xwp-dep-loader-init.php"
]
},
"config": {
"classmap-authoritative": true,
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
Expand Down
Loading

0 comments on commit b84e7cb

Please sign in to comment.