just-core/stub

An introduction to the just-core PHP Framework for Enterprise Service Buses

View project on GitHub

Dependency management is handled through Composer

####Composer Quick Links

You can easily include other packages that are available through the composer load mechanism including your own private repositories.

Composer can also add your own PSR-4 namespace compliant functions and classes into the autoload schema through the autoload.classmap array. For example:

[project name]/[SERVICES] is the default directory for your own development but you can include whatever directories you like under the classmap.

	"autoload" : {
		"classmap" : [
			"SERVICES"
		]
	}

PACKAGES and PLUGINS

Use composer to include 3rd party libraries. All public just-core packages are registered with Packagist.

	"require" : {
		"php" : ">=5.3.7",
		"just-core/foundation" : "dev-master",
		"just-core/auth-page" : "dev-master",
		"just-core/auth-login" : "dev-master",
		"just-core/data-postgres" : "dev-master",
		"just-core/dao-orm" : "dev-master",
		"just-core/metronic" : "dev-master",
		"just-core/cli-harness" : "dev-master",
		"just-core-scripts" : "dev-master",
		"just-core/http-optimization" : "dev-master",
		"kriswallsmith/assetic" : "@dev",
		"mrclay/minify" : "2.3.0",
		"natxet/CssMin": "v3.0.4",
	},