56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"name": "sikofitt/pushbullet-notifier",
|
|
"description": "Simple php app to alert you after jobs are done",
|
|
"license": "GPL-3.0",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Sikofitt\\Pushbullet\\": "src/Sikofitt/Pushbullet/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=7.1",
|
|
"hassankhan/config": "^0.9",
|
|
"incenteev/composer-parameter-handler": "2.1.*",
|
|
"ivkos/pushbullet": "^3.1",
|
|
"monolog/monolog": "^1.23",
|
|
"symfony/config": "^3.2",
|
|
"symfony/console": "^3.2",
|
|
"symfony/dependency-injection": "^3.3",
|
|
"symfony/event-dispatcher": "^3.2",
|
|
"symfony/yaml": "^3.3",
|
|
"tedivm/stash": "^0.14.2"
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Sikofitt\\Tests\\Pushbullet\\": "tests/"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"friendsofphp/php-cs-fixer": "^2.5",
|
|
"phpunit/phpunit": "~5",
|
|
"symfony/var-dumper": "^3.3"
|
|
},
|
|
"extra": {
|
|
"incenteev-parameters": {
|
|
"file": "config/config.yaml",
|
|
"parameter-key": "pushbullet"
|
|
}
|
|
},
|
|
"config": {
|
|
"sort-packages": true,
|
|
"platform": {
|
|
"php": "7.1"
|
|
},
|
|
"bin-dir": "bin",
|
|
"optimize-autoloader": true
|
|
},
|
|
"scripts": {
|
|
"default": [
|
|
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
|
|
],
|
|
"post-install-cmd": ["@default"],
|
|
"post-update-cmd": ["@default"]
|
|
}
|
|
|
|
}
|