Skip to content

Instantly share code, notes, and snippets.

@graste
Created June 8, 2020 08:23
Show Gist options
  • Save graste/77433440a97e612fc3403edfbe88c31a to your computer and use it in GitHub Desktop.
Save graste/77433440a97e612fc3403edfbe88c31a to your computer and use it in GitHub Desktop.
replace vendor lib class via composer autoloading in php project
"autoload": {
"psr-4": {
"Some\\Lib\\": "etc/overrides/Some/Lib"
},
"exclude-from-classmap": [
"vendor/some/library/src/Some/Lib/Foo.php"
]
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment