This repository was archived by the owner on Jul 31, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 96
php 8 error handler param incompatibility fix #28
Open
ggets
wants to merge
2
commits into
welltime:master
Choose a base branch
from
ggets:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+4,038
−4,038
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,4 +1,4 @@ | ||
/.idea/ | ||
/composer.lock | ||
/composer.phar | ||
/vendor/ | ||
/.idea/ | ||
/composer.lock | ||
/composer.phar | ||
/vendor/ |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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,65 +1,65 @@ | ||
PHPAGI README | ||
------------- | ||
|
||
Welcome to PHPAGI. | ||
|
||
phpagi is a set of PHP classes for use in developing applications with | ||
the Asterisk Gateway Interface, and is licensed under the GNU Lesser | ||
General Public License (see COPYING for terms). | ||
|
||
This release (version 2) of the phpagi classes is a significant overhaul | ||
from the old version 1 library. API functions have been renamed and | ||
restructured. | ||
|
||
Version 1 of phpagi is no longer supported, but will continue to be | ||
available for historical purposes. We strongly encourage you to migrate | ||
to this new version. | ||
|
||
If you have developed software based around phpagi, we'd like to hear from | ||
you! Drop us a note, and indicate whether you'd like us to list your | ||
application on our website. | ||
|
||
## Installation | ||
|
||
The preferred way to install this extension is through [composer](https://getcomposer.org/download/). | ||
|
||
Either run | ||
|
||
```bash | ||
$ composer require welltime/phpagi ^2.20 | ||
``` | ||
|
||
or add | ||
|
||
``` | ||
"welltime/phpagi": "^2.20" | ||
``` | ||
|
||
to the ```require``` section of your `composer.json` file. | ||
|
||
FILES | ||
----- | ||
* phpagi.php - The main phpagi class. | ||
* phpagi-asmanager.php - The Asterisk Manager class. | ||
* phpagi-fastagi.php - FastAGI class. | ||
|
||
* docs/ - README files for the classes. | ||
* api-docs/ - API Documentation (html) | ||
|
||
DOCS | ||
---- | ||
* README.phpagi - The main phpagi README | ||
* README.phpagi-asmanager - The phpagi asterisk manager README | ||
* README.phpagi-fastagi - phpagi fastagi README | ||
* CHANGELOG - Change Log. | ||
|
||
* phpagi.conf - An example configuration file for phpagi. | ||
* fastagi.xinetd - xinetd.conf sample configuration for fastagi | ||
|
||
SUPPORT | ||
------- | ||
|
||
Support for phpagi is available from the project website. | ||
|
||
* https://github.com/welltime/phpagi | ||
|
||
PHPAGI README | ||
------------- | ||
|
||
Welcome to PHPAGI. | ||
|
||
phpagi is a set of PHP classes for use in developing applications with | ||
the Asterisk Gateway Interface, and is licensed under the GNU Lesser | ||
General Public License (see COPYING for terms). | ||
|
||
This release (version 2) of the phpagi classes is a significant overhaul | ||
from the old version 1 library. API functions have been renamed and | ||
restructured. | ||
|
||
Version 1 of phpagi is no longer supported, but will continue to be | ||
available for historical purposes. We strongly encourage you to migrate | ||
to this new version. | ||
|
||
If you have developed software based around phpagi, we'd like to hear from | ||
you! Drop us a note, and indicate whether you'd like us to list your | ||
application on our website. | ||
|
||
## Installation | ||
|
||
The preferred way to install this extension is through [composer](https://getcomposer.org/download/). | ||
|
||
Either run | ||
|
||
```bash | ||
$ composer require ggets/phpagi ^2.20 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ??? |
||
``` | ||
|
||
or add | ||
|
||
``` | ||
"ggets/phpagi": "^2.20" | ||
``` | ||
|
||
to the ```require``` section of your `composer.json` file. | ||
|
||
FILES | ||
----- | ||
* phpagi.php - The main phpagi class. | ||
* phpagi-asmanager.php - The Asterisk Manager class. | ||
* phpagi-fastagi.php - FastAGI class. | ||
|
||
* docs/ - README files for the classes. | ||
* api-docs/ - API Documentation (html) | ||
|
||
DOCS | ||
---- | ||
* README.phpagi - The main phpagi README | ||
* README.phpagi-asmanager - The phpagi asterisk manager README | ||
* README.phpagi-fastagi - phpagi fastagi README | ||
* CHANGELOG - Change Log. | ||
|
||
* phpagi.conf - An example configuration file for phpagi. | ||
* fastagi.xinetd - xinetd.conf sample configuration for fastagi | ||
|
||
SUPPORT | ||
------- | ||
|
||
Support for phpagi is available from the project website. | ||
|
||
* https://github.com/ggets/phpagi | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ??? |
||
|
This file contains hidden or 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,13 +1,13 @@ | ||
{ | ||
"name": "welltime/phpagi", | ||
"description": "PHPAGI is a PHP class for the Asterisk Gateway Interface.", | ||
"type": "library", | ||
"license": "LGPL-2.1-or-later", | ||
"autoload": { | ||
"classmap": [ | ||
"src/phpagi.php", | ||
"src/phpagi-asmanager.php" | ||
] | ||
}, | ||
"require": {} | ||
} | ||
{ | ||
"name": "ggets/phpagi", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ??? |
||
"description": "PHPAGI is a PHP class for the Asterisk Gateway Interface.", | ||
"type": "library", | ||
"license": "LGPL-2.1-or-later", | ||
"autoload": { | ||
"classmap": [ | ||
"src/phpagi.php", | ||
"src/phpagi-asmanager.php" | ||
] | ||
}, | ||
"require": {} | ||
} | ||
Comment on lines
+3
to
+13
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can't see any difference. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What was changed there?