Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jongotlin/deadmanssnitchbundle
https://github.com/jongotlin/deadmanssnitchbundle
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jongotlin/deadmanssnitchbundle
- Owner: jongotlin
- Created: 2015-11-08T20:42:02.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-30T19:39:07.000Z (over 7 years ago)
- Last Synced: 2024-10-11T13:13:10.328Z (3 months ago)
- Language: PHP
- Size: 6.84 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DeadmanssnitchBundle
This bundle is an extension to [dizda/CloudBackupBundle](https://github.com/dizda/CloudBackupBundle) and lets you ping [deadmanssnitch.com](http://www.deadmanssnitch.com) when a successful backup is completed.
Installation (>=Symfony 2.1)
------------### Composer
Download DeadmanssnitchBundle and its dependencies to the vendor directory. You can use Composer for the automated process:
```bash
$ php composer.phar require jongotlin/deadmanssnitch-bundle
```Composer will install the bundle to `jongotlin/deadmanssnitch-bundle` directory.
### Adding bundle to your application kernel
```php
// app/AppKernel.phppublic function registerBundles()
{
$bundles = array(
// ...
new JGI\DeadmanssnitchBundle\JGIDeadmanssnitchBundle(),
// ...
);
}
```Configuration
-------------Here is the default configuration for the bundle:
```yml
# app/config/config.yml
jgi_deadmanssnitch:
url: %deadmanssnitch_url%
``````yml
# app/config/parameters.yml
deadmanssnitch_url: https://nosnch.in/xxxxxxxx
```