I have created a PHP framework, and I want to reuse some framework components in other projects as Laravel does, using composer. For example, my framework skeleton has a folder called HTTP, this component has HttpRequest, HttpResponse, etc.. and I want to use the HTTP component of my framework in other projects.
"require": {
"php": ">=5.5.9",
"MyFramework/Http": "dev-master",
"predis/predis": "1.1.1"
},
thanks for help