bx-stuff / bitrix24-php-sdk
A powerful PHP library for the Bitrix24 REST API
Fund package maintenance!
boosty.to/bitrix24-php-sdk
Requires
- php: 8.2.* || 8.3.*
- ext-bcmath: *
- ext-curl: *
- ext-intl: *
- ext-json: *
- fig/http-message-util: 1.1.*
- moneyphp/money: 4.3.*
- psr/log: ^2.0 || ^3.0
- ramsey/uuid: 4.7.*
- symfony/event-dispatcher: 7.0.*
- symfony/http-client: 7.0.*
- symfony/http-client-contracts: 3.4.*
- symfony/http-foundation: 7.0.*
- symfony/uid: 7.0.*
Requires (Dev)
- fakerphp/faker: 1.23.*
- monolog/monolog: 2.9.*
- phpstan/phpstan: 1.10.*
- phpunit/phpunit: 10.5.*
- roave/security-advisories: dev-master
- symfony/console: 7.0.*
- symfony/debug-bundle: 7.0.*
- symfony/dotenv: 7.0.*
- symfony/stopwatch: 7.0.*
This package is auto-updated.
Last update: 2024-11-09 21:32:32 UTC
README
A powerful PHP library for the Bitrix24 REST API
Build status
Integration tests run in GitHub actions with real Bitrix24 portal
BITRIX24-PHP-SDK ✨FEATURES✨
Support both auth modes:
- work with auth tokens for Bitrix24 applications in marketplace
- work with incoming webhooks for simple integration projects for current portal
Domain core events:
- Access Token expired
- Bitrix24 portal domain url changed
API - level features
- Auto renew access tokens
- List queries with «start=-1» support
- offline queues
Performance improvements 🚀
- Batch queries implemented with PHP Generators – constant low memory and
low CPI usage
- batch read data from bitrix24
- batch write data to bitrix24
- write and read in one batch package
- composite batch queries to many entities (work in progress)
- read without count flag
Low-level tools to devs:
- Rate-limit strategy
- Retry strategy for safe methods
Development principles
- Good developer experience
- auto-completion of methods at the IDE
- typed method call signatures
- typed results of method calls
- helpers for typical operations
- Good documentation
- documentation on the operation of a specific method containing a link to the official documentation
- documentation for working with the SDK
- Performance first:
- minimal impact on client code
- ability to work with large amounts of data with constant memory consumption
- efficient operation of the API using batch requests
- Modern technology stack
- based on Symfony HttpClient
- actual PHP versions language features
- Reliable:
- test coverage: unit, integration, contract
- typical examples typical for different modes of operation and they are optimized for memory \ performance
Architecture
Abstraction layers
- http2 protocol via json data structures
- symfony http client
- \Bitrix24\SDK\Core\ApiClient - work with b24 rest-api endpoints
input: arrays \ strings
output: Symfony\Contracts\HttpClient\ResponseInterface, operate with strings
process: network operations
- \Bitrix24\SDK\Services\* - work with b24 rest-api entities
input: arrays \ strings
output: b24 response dto
process: b24 entities, operate with immutable objects
Sponsors
Help bitrix24-php-sdk by boosty.to/bitrix24-php-sdk
Requirements
- php: >=8.2
- ext-json: *
- ext-curl: *
Installation
Add "mesilov/bitrix24-php-sdk": "2.x"
to composer.json
of your application. Or clone repo to your project.
Tests
Tests locate in folder tests
and we have two test types.
In folder tests create file .env.local
and fill environment variables from .env
.
Unit tests
Fast, in-memory tests without a network I\O For run unit tests you must call in command line
composer phpunit-run-unit-test
Integration tests
Slow tests with full lifecycle with your test Bitrix24 portal via webhook.
❗️Do not run integration tests with production portals
For run integration test you must:
- Create new Bitrix24 portal for development tests
- Go to left menu, click «Sitemap»
- Find menu item «Developer resources»
- Click on menu item «Other»
- Click on menu item «Inbound webhook»
- Assign all permisions with webhook and click «save» button
- Create file
/tests/.env.local
with same settings, see comments in/tests/.env
file.
APP_ENV=dev BITRIX24_WEBHOOK=https:// your portal webhook url INTEGRATION_TEST_LOG_LEVEL=500
- call in command line
composer composer phpunit-run-integration-tests
PHP Static Analysis Tool – phpstan
Call in command line
composer phpstan-analyse
Submitting bugs and feature requests
Bugs and feature request are tracked on GitHub
License
bitrix24-php-sdk is licensed under the MIT License - see the MIT-LICENSE.txt
file for details
Authors
Maksim Mesilov - mesilov.maxim@gmail.com
See also the list of contributors which participated in this project.
Need custom Bitrix24 application?
mesilov.maxim@gmail.com for private consultations or dedicated support
Documentation
Bitrix24 API documentation - Russian