php-deb-packager/composer.json

38 lines
873 B
JSON
Raw Normal View History

2012-07-31 10:29:41 +02:00
{
"name": "wdalmut/php-deb-packager",
"description": "A simple debian packager for PHP applications",
2013-11-18 08:09:26 +01:00
"version":"0.0.3",
2012-07-31 10:29:41 +02:00
"type":"library",
"keywords":["deb","packager","ubuntu","php-deb"],
"time":"2012-07-31",
"license":"MIT",
"authors": [
{
"name":"Walter Dal Mut",
"email":"walter.dalmut@gmail.com",
"homepage":"http://walterdalmut.com",
"role":"Developer"
}
],
"support": {
"email":"walter.dalmut@gmail.com"
},
"require": {
"php": ">=5.3.3"
},
2014-12-03 22:38:07 +01:00
"require-dev": {
"phpunit/phpunit": "~4"
},
2012-07-31 10:29:41 +02:00
"autoload": {
2013-11-18 08:03:46 +01:00
"psr-0": {
2014-12-03 22:38:07 +01:00
"wdm": ["src/", "tests/"]
2013-11-18 08:03:46 +01:00
}
2012-07-31 10:29:41 +02:00
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/wdalmut/php-deb-packager"
}
]
2013-11-18 08:03:46 +01:00
}