Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 333 Bytes

composer.markdown

File metadata and controls

25 lines (19 loc) · 333 Bytes

Composer

Tips about the Composer package management tool.

Autoloading

loading Mynamespace from the src folder in the package root

"autoload": {
	"psr-4": {
		"Mynamespace\\": "src"
	}
}

or loading from multiple locations

"autoload": {
	"psr-4": {
		"Mynamespace\\": ["src/app", "src/test/"]
	}
}