-
-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
15 additions
and
18 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,5 @@ | ||
# Changes between versions | ||
|
||
## Not yet released | ||
## 1.0 (2014-03-20) | ||
|
||
* added Notification and Notifier | ||
* added NotifySendNotifier (can be used on most Linux distributions) | ||
* added TerminalNotifierNotifier (can be used on Mac OS X 10.8 and higher) | ||
* added GrowlNotifyNotifier (can be used on Mac OS if growlnotify is available) | ||
* added icon extract when provided from a phar archive | ||
* added AppleScriptNotifier (can be used on Mac OS X 10.9 and higher) | ||
* added OsHelper | ||
* added PharExtractor | ||
* added BinaryProvider | ||
* added NotifuNotifier (can be used on Windows Seven) | ||
* added ToasterNotifier (can be used on Windows Eight and higher) | ||
* added NotifierFactory | ||
* Initial release |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
{ | ||
"name": "jolicode/jolinotif", | ||
"license": "MIT", | ||
"type": "library", | ||
|
||
"description": "Send desktop notifications on Windows, Linux, MacOS.", | ||
"keywords": ["notification", "windows", "linux", "mac", "growl"], | ||
"minimum-stability": "stable", | ||
|
||
"license": "MIT", | ||
"type": "library", | ||
"authors": [ | ||
{ | ||
"name": "Loïck Piera", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"Joli\\JoliNotif\\": "src/" | ||
|
@@ -24,5 +27,10 @@ | |
"require-dev": { | ||
"phpunit/phpunit": "~4.5", | ||
"fabpot/php-cs-fixer": "~1.5" | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.0.x-dev" | ||
} | ||
} | ||
} |