Skip to content

Commit

Permalink
Rename package and namespaces to bitrix24-php-lib
Browse files Browse the repository at this point in the history
Updated the project name and adjusted namespaces to align with the new package name "bitrix24-php-lib" instead of "bitrix24-app-core". This change affects multiple files including source, test, and configuration files.

Signed-off-by: mesilov <[email protected]>
  • Loading branch information
mesilov committed Sep 1, 2024
1 parent b4f0551 commit e9b930f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# bitrix24-app-core
# bitrix24-php-lib

Bitrix24 application core
PHP lib for Bitrix24 application development

## Область применения

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "mesilov/bitrix24-app-core",
"name": "mesilov/bitrix24-php-lib",
"description": "A powerful PHP library for rapid Bitrix24 application development",
"keywords": [
"Bitrix24",
Expand Down Expand Up @@ -56,12 +56,12 @@
},
"autoload": {
"psr-4": {
"Bitrix24\\SDK\\ApplicationCore\\": "src"
"Bitrix24\\SDK\\Lib\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bitrix24\\SDK\\ApplicationCore\\Tests\\": "tests",
"Bitrix24\\SDK\\Lib\\Tests\\": "tests",
"Bitrix24\\SDK\\Tests\\":"vendor/mesilov/bitrix24-php-sdk/tests"
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/Bitrix24Accounts/Entity/Bitrix24Account.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* This file is part of the bitrix24-app-core package.
* This file is part of the bitrix24-php-lib package.
*
* © Maksim Mesilov <[email protected]>
*
Expand All @@ -10,7 +10,7 @@

declare(strict_types=1);

namespace Bitrix24\SDK\ApplicationCore\Bitrix24Accounts\Entity;
namespace Bitrix24\SDK\Lib\Bitrix24Accounts\Entity;

use Bitrix24\SDK\Application\Contracts\Bitrix24Accounts\Entity\Bitrix24AccountInterface;
use Bitrix24\SDK\Application\Contracts\Bitrix24Accounts\Entity\Bitrix24AccountStatus;
Expand Down
4 changes: 2 additions & 2 deletions tests/Unit/Bitrix24Accounts/Entity/Bitrix24AccountTest.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/**
* This file is part of the bitrix24-app-core package.
* This file is part of the bitrix24-php-lib package.
*
* © Maksim Mesilov <[email protected]>
*
Expand All @@ -11,7 +11,7 @@

declare(strict_types=1);

namespace Bitrix24\SDK\ApplicationCore\Tests\Unit\Bitrix24Accounts\Entity;
namespace Bitrix24\SDK\Lib\Tests\Unit\Bitrix24Accounts\Entity;

use Bitrix24\SDK\Application\Contracts\Bitrix24Accounts\Entity\Bitrix24AccountInterface;
use Bitrix24\SDK\Application\Contracts\Bitrix24Accounts\Entity\Bitrix24AccountStatus;
Expand Down
2 changes: 1 addition & 1 deletion tests/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/**
* This file is part of the bitrix24-app-core package.
* This file is part of the bitrix24-php-lib package.
*
* © Maksim Mesilov <[email protected]>
*
Expand Down

0 comments on commit e9b930f

Please sign in to comment.