Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/vendor
.idea
.idea
composer.phar
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

## 1.0.0 (2022-07-28)

A major new feature release, see [**release announcement**](https://clue.engineering/2021/announcing-reactphp-default-loop).

* support php ^8.0 (and drop support older versions)

* Update library dependencies for major versions

45 changes: 28 additions & 17 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,31 @@
{
"name": "clearvox/react-ami",
"description": "A ReactPHP implementation of communicating with the Asterisk Manager Interface",
"keywords": ["AMI", "Asterisk Manager Interface", "ReactPHP"],
"license": "MIT",
"authors": [
{
"name": "Leon Rowland",
"email": "leon@rowland.nl"
}
],
"require": {
"php": ">=5.3",
"react/socket-client": "0.4",
"illuminate/contracts": "~5.1"
"name": "clearvox/react-ami",
"description": "A ReactPHP implementation of communicating with the Asterisk Manager Interface",
"keywords": [
"AMI",
"Asterisk Manager Interface",
"ReactPHP"
],
"license": "MIT",
"authors": [
{
"name": "Leon Rowland",
"email": "leon@rowland.nl"
},
"autoload": {
"psr-0": { "Clearvox\\Asterisk\\AMI": "src/" }
{
"name": "Rui Pedrosa",
"email": "rui.pedrosa@x2com.nl"
}
}
],
"require": {
"php": "^8.0",
"react/socket": "^1.11",
"react/stream": "^1.2",
"illuminate/contracts": "^6.0"
},
"autoload": {
"psr-4": {
"Clearvox\\Asterisk\\AMI\\": "src/Clearvox/Asterisk/AMI"
}
}
}
Loading