├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── tests.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── composer.json ├── phpunit.xml ├── src ├── Enum │ ├── ConnectionState.php │ ├── IceConnectionState.php │ └── SignalingState.php ├── RTCConfiguration.php ├── RTCConfigurationInterface.php ├── RTCPeerConnection.php └── RTCPeerConnectionInterface.php └── tests ├── RTCPeerConnectionAudioTest.php ├── RTCPeerConnectionBaseTest.php ├── RTCPeerConnectionDatachannelTest.php ├── RTCPeerConnectionDescriptionTest.php ├── RTCPeerConnectionDtlsTest.php ├── RTCPeerConnectionHelper.php ├── RTCPeerConnectionTrackAndTransceiverTest.php ├── RTCPeerConnectionVideoTest.php └── RTCRtpCodecParametersTest.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/SECURITY.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Enum/ConnectionState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/src/Enum/ConnectionState.php -------------------------------------------------------------------------------- /src/Enum/IceConnectionState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/src/Enum/IceConnectionState.php -------------------------------------------------------------------------------- /src/Enum/SignalingState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/src/Enum/SignalingState.php -------------------------------------------------------------------------------- /src/RTCConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/src/RTCConfiguration.php -------------------------------------------------------------------------------- /src/RTCConfigurationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/src/RTCConfigurationInterface.php -------------------------------------------------------------------------------- /src/RTCPeerConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/src/RTCPeerConnection.php -------------------------------------------------------------------------------- /src/RTCPeerConnectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/src/RTCPeerConnectionInterface.php -------------------------------------------------------------------------------- /tests/RTCPeerConnectionAudioTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/tests/RTCPeerConnectionAudioTest.php -------------------------------------------------------------------------------- /tests/RTCPeerConnectionBaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/tests/RTCPeerConnectionBaseTest.php -------------------------------------------------------------------------------- /tests/RTCPeerConnectionDatachannelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/tests/RTCPeerConnectionDatachannelTest.php -------------------------------------------------------------------------------- /tests/RTCPeerConnectionDescriptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/tests/RTCPeerConnectionDescriptionTest.php -------------------------------------------------------------------------------- /tests/RTCPeerConnectionDtlsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/tests/RTCPeerConnectionDtlsTest.php -------------------------------------------------------------------------------- /tests/RTCPeerConnectionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/tests/RTCPeerConnectionHelper.php -------------------------------------------------------------------------------- /tests/RTCPeerConnectionTrackAndTransceiverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/tests/RTCPeerConnectionTrackAndTransceiverTest.php -------------------------------------------------------------------------------- /tests/RTCPeerConnectionVideoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/tests/RTCPeerConnectionVideoTest.php -------------------------------------------------------------------------------- /tests/RTCRtpCodecParametersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-WebRTC/webrtc/HEAD/tests/RTCRtpCodecParametersTest.php --------------------------------------------------------------------------------