Last active
August 29, 2015 14:16
-
-
Save rkrx/6848029678558f823dba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "<vendor>/<package>", | |
"description": "Hier kommt meine Paketbeschreibung rein", | |
"require": { | |
"php": ">= 5.5", | |
"psr/log": "1.0", | |
"zendframework/zend-config": "2.0.*", | |
"zendframework/zend-http": "2.0.*" | |
}, | |
"require-dev": { | |
"phake/phake": "1.0.5", | |
"phpunit/phpunit": "~3.7@stable" | |
}, | |
"autoload": { | |
"psr-4": { | |
"Mein\\Namespace\\": "src/" | |
} | |
}, | |
"autoload-dev": { | |
"psr-4": { | |
"Mein\\Namespace\\": "tests/" | |
} | |
}, | |
"repositories": [{ | |
"type": "composer", | |
"url": "https://packages.zendframework.com/" | |
}, { | |
"type": "vcs", | |
"url": "[email protected]:<user>/<project>.git" | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment