Coder Social home page Coder Social logo

radianceteam / everscale-client-php-ext Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 3.0 1.06 GB

PHP extension for TON-SDK Client

License: Apache License 2.0

CMake 5.22% M4 1.83% C 45.98% PHP 38.75% Batchfile 6.18% Shell 2.05%
ton-client php-extension freeton freeton-sdk blockchain

everscale-client-php-ext's Introduction

PHP Extension for TON SDK Wrapper

Community links:

Chat on Telegram

Supported platforms

  • Windows x86, x64
  • Linux
  • macOS

Installation

See Installation notes.

Development

See Development notes.

Functions

The following functions are added by this extension:


string ton_create_context( string $config_json );

Creates new TON client context.

Parameters:

  • $config_json - TON client configuration.

Return value:

JSON containing context ID.


void ton_destroy_context( int $context );

Destroys TON client context.

Parameters:

  • $context - Context ID previously returned by ton_create_context.

string ton_request_sync( int $context, string $function_name, string $params_json);

Runs TON SDK request synchronously (using tc_request_sync).

Parameters:

  • $context - Context ID previously returned by ton_create_context.
  • $function_name - name of the TON SDK function to call.
  • $params_json - JSON-encoded function params.

Return value:

JSON response.


resource ton_request_start( int $context, string $function_name, string $params_json );

Runs TON SDK request asynchronously using tc_request_ptr.

Parameters:

  • $context - Context ID previously returned by ton_create_context.
  • $function_name - name of the TON SDK function to call.
  • $params_json - JSON-encoded function params.

Return value:

Request handle.


int ton_request_id( resource $resource );

Parameters:

  • $request - Request handle previously returned by ton_request_start.

Return value:

Request unique identifier.


array ton_request_next( resource $request, [ int $timeout ] );

Fetches the next async event.

Parameters:

  • $request - Request handle previously returned by ton_request_start.
  • $timeout - Timeout in milliseconds (optional).

Return value:

Array containing these values:

 [ string $json, int $status, bool $finished, int $id ]

$json is always containing callback data unless it's a return value for a function which returns nothing (like net.unsubscribe_collection).

$status corresponds to the tc_response_types enum defined in tonclient.h;

When request is finished $finished will be true.

$id is an identifier of request. Can be used together with ton_request_join to identify which of the joined requests are receiving this data.


bool ton_request_join( resource $request, resource $request2 )

Sets $request to receive all events of $request2. Used for example to process app requests by $request2, while fetching events for $request via ton_request_next.

Call ton_request_disconnect to undo this.

Parameters:

  • $request - Request handle previously returned by ton_request_start.
  • $request2 - Another request handle previously returned by ton_request_start.

Return value:

true if join was successful, false otherwise.


bool ton_request_disconnect( resource $request, resource $request2 )

Sets $request to no more receive events of $request2. Used as an opposite operation to ton_request_join.

Parameters:

  • $request - Request handle previously returned by ton_request_start.
  • $request2 - Another request handle previously returned by ton_request_start.

Return value:

true if disconnect was successful, false otherwise.


?bool is_ton_request_finished( resource $request )

Checks whether the TON SDK request is finished.

Parameters:

  • $request - Request handle previously returned by ton_request_start.

Return value:

true if request has been finished, false if not, and null if invalid $request handle is passed to the function arguments.

Implementation notes

This extension uses threads and blocking queues to work with TON SDK functions and callbacks. ton_request_next is the only blocking call here, all other functions are instant.

Extension is supposed to work in both Thread-Safe and Non-Thread safe environments.

License

Apache License, Version 2.0.

Troubleshooting

Fire any question to our Telegram channel.

everscale-client-php-ext's People

Contributors

andy-a-o avatar samorodkin avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

everscale-client-php-ext's Issues

Installation doesn't work on Amazon Linux 2

$ sudo php installer.php -v 1.25.0 -o install.log -V
...
$ cat install.log 
TON SDK 1.25.0 PHP EXTENSION INSTALLER 
PHP version: 7.4.21
Download URL: https://github.com/radianceteam/ton-client-php-ext/archive/1.25.0.tar.gz
Version: 1.25.0
Windows OS: 
Arch: 
Output file: install.log
Extension directory: /usr/lib64/php/modules
PHP binary directory: /usr/bin
SDK directory: /usr/lib64/php/modules/ton-sdk
Temp directory: /tmp/ton_client_php_ext.1636721364.tmp
INI file: /etc/php.ini
INI dir: /etc/php.d
Thread safety: false
Skip download: false
Skip cleanup: false
Skip unpack: false
Skip INI: false
Skip backup: false
Skip build: false
Force install: false
Silent: false
Verbose: true
Test: false
Debug: false
No extension previously installed
Installing new version: 1.25.0
phpize command exists: OK
PHP version 7.4.21 >= 7.4: OK
OpenSSL extension is enabled.
Directory /usr/lib64/php/modules is writable: OK
Directory /usr/bin is writable: OK
Downloading https://github.com/radianceteam/ton-client-php-ext/archive/1.25.0.tar.gz...
Downloaded to /tmp/ton_client_php_ext.1636721364.tmp/1.25.0.tar.gz.
Unpacking and installing files...
Building PHP extension...
[ERROR] Cannot find TON Client PHP extension file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/modules/ton_client.so.
Removing tmp dir /tmp/ton_client_php_ext.1636721364.tmp.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/1.25.0.tar.gz.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/.github/workflows/release.yml.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/.gitignore.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/CMakeLists.txt.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/DEVELOPMENT.md.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/INSTALL.md.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/LICENSE.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/README.md.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/CMakeLists.txt.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/Makefile.fragments.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/Makefile.objects.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/autom4te.cache/output.0.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/autom4te.cache/requests.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/autom4te.cache/traces.0.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/build/Makefile.global.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/build/ax_check_compile_flag.m4.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/build/ax_gcc_func_attribute.m4.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/build/config.guess.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/build/config.sub.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/build/libtool.m4.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/build/ltmain.sh.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/build/php.m4.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/build/php_cxx_compile_stdcxx.m4.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/build/pkg.m4.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/build/shtool.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/config.h.in.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/config.log.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/config.m4.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/config.nice.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/config.w32.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/configure.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/configure.ac.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/debug.h.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/os.h.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/php_ton_client.h.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/rpa_queue.c.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/rpa_queue.h.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/run-tests.php.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build/ton_client.c.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build.bat.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/build.sh.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/cmake-modules/FindTON.cmake.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/deps/bin/x64/pthreadVC2.dll.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/deps/bin/x64/ton_client.dll.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/deps/bin/x86/pthreadVC2.dll.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/deps/bin/x86/ton_client.dll.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/deps/include/pthread.h.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/deps/include/sched.h.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/deps/include/semaphore.h.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/deps/include/tonclient.h.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/deps/lib/x64/libton_client.dylib.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/deps/lib/x64/libton_client.so.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/deps/lib/x64/pthreadVC2.lib.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/deps/lib/x64/ton_client.lib.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/deps/lib/x86/pthreadVC2.lib.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/deps/lib/x86/ton_client.lib.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/images/win32-release-version.png.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/install-sdk.sh.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/installer.php.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/platform.bat.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/src/CMakeLists.txt.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/src/config.m4.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/src/config.w32.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/src/debug.h.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/src/os.h.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/src/php_ton_client.h.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/src/rpa_queue.c.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/src/rpa_queue.h.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/src/ton_client.c.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/tests/001.phpt.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/tests/002.phpt.
Removing file /tmp/ton_client_php_ext.1636721364.tmp/ton-client-php-ext-1.25.0/tests/003.phpt.
TON SDK 1.25.0 PHP EXTENSION INSTALLER 
PHP version: 7.4.21
Download URL: https://github.com/radianceteam/ton-client-php-ext/archive/1.25.0.tar.gz
Version: 1.25.0
Windows OS: 
Arch: 
Output file: install.log
Extension directory: /usr/lib64/php/modules
PHP binary directory: /usr/bin
SDK directory: /usr/lib64/php/modules/ton-sdk
Temp directory: /tmp/ton_client_php_ext.1636721916.tmp
INI file: /etc/php.ini
INI dir: /etc/php.d
Thread safety: false
Skip download: false
Skip cleanup: false
Skip unpack: false
Skip INI: false
Skip backup: false
Skip build: false
Force install: false
Silent: false
Verbose: true
Test: false
Debug: false
No extension previously installed
Installing new version: 1.25.0
phpize command exists: OK
PHP version 7.4.21 >= 7.4: OK
OpenSSL extension is enabled.
Directory /usr/lib64/php/modules is writable: OK
Directory /usr/bin is writable: OK
Downloading https://github.com/radianceteam/ton-client-php-ext/archive/1.25.0.tar.gz...
Downloaded to /tmp/ton_client_php_ext.1636721916.tmp/1.25.0.tar.gz.
Unpacking and installing files...
Building PHP extension...
[ERROR] Cannot find TON Client PHP extension file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/modules/ton_client.so.
Removing tmp dir /tmp/ton_client_php_ext.1636721916.tmp.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/1.25.0.tar.gz.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/.github/workflows/release.yml.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/.gitignore.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/CMakeLists.txt.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/DEVELOPMENT.md.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/INSTALL.md.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/LICENSE.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/README.md.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/CMakeLists.txt.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/Makefile.fragments.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/Makefile.objects.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/autom4te.cache/output.0.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/autom4te.cache/requests.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/autom4te.cache/traces.0.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/build/Makefile.global.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/build/ax_check_compile_flag.m4.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/build/ax_gcc_func_attribute.m4.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/build/config.guess.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/build/config.sub.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/build/libtool.m4.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/build/ltmain.sh.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/build/php.m4.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/build/php_cxx_compile_stdcxx.m4.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/build/pkg.m4.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/build/shtool.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/config.h.in.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/config.log.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/config.m4.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/config.nice.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/config.w32.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/configure.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/configure.ac.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/debug.h.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/os.h.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/php_ton_client.h.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/rpa_queue.c.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/rpa_queue.h.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/run-tests.php.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build/ton_client.c.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build.bat.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/build.sh.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/cmake-modules/FindTON.cmake.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/deps/bin/x64/pthreadVC2.dll.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/deps/bin/x64/ton_client.dll.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/deps/bin/x86/pthreadVC2.dll.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/deps/bin/x86/ton_client.dll.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/deps/include/pthread.h.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/deps/include/sched.h.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/deps/include/semaphore.h.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/deps/include/tonclient.h.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/deps/lib/x64/libton_client.dylib.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/deps/lib/x64/libton_client.so.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/deps/lib/x64/pthreadVC2.lib.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/deps/lib/x64/ton_client.lib.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/deps/lib/x86/pthreadVC2.lib.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/deps/lib/x86/ton_client.lib.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/images/win32-release-version.png.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/install-sdk.sh.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/installer.php.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/platform.bat.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/src/CMakeLists.txt.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/src/config.m4.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/src/config.w32.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/src/debug.h.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/src/os.h.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/src/php_ton_client.h.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/src/rpa_queue.c.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/src/rpa_queue.h.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/src/ton_client.c.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/tests/001.phpt.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/tests/002.phpt.
Removing file /tmp/ton_client_php_ext.1636721916.tmp/ton-client-php-ext-1.25.0/tests/003.phpt.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.