Skip to content
This repository was archived by the owner on Feb 7, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
074556e
Remove Bitrix24Account contracts
mesilov Jul 2, 2024
ec85cca
Add Bitrix24AccountInterface and Bitrix24AccountStatus
mesilov Jul 3, 2024
86ab8a2
Remove numerous obsolete documentation files
mesilov Jul 4, 2024
1494ffe
Add Bitrix24AccountRepositoryInterface and update exceptions in Bitri…
mesilov Jul 4, 2024
4f36a8c
Rename AccessToken to AuthToken and refactor related codes
mesilov Jul 4, 2024
a8cd3ae
Update import paths and references in ServiceBuilderFactory
mesilov Jul 4, 2024
9a8c297
Replace AccessToken with AuthToken
mesilov Jul 4, 2024
757a7aa
Replace AccessToken with AuthToken in tests
mesilov Jul 4, 2024
26e3a34
Refactor authToken parameters in Core classes
mesilov Jul 4, 2024
b60fbd1
Add Bitrix24AccountInterface test entity implementation
mesilov Jul 4, 2024
c8612c9
Update bitrix24 account interface and other related tests
mesilov Jul 6, 2024
e4e36a8
Update method in ApplicationStatusTest
mesilov Jul 6, 2024
b460b22
Add sorting and equality function to Scope
mesilov Jul 6, 2024
5da2ef1
Add new test case and refactor ScopeTest
mesilov Jul 6, 2024
d04c08a
Add additional tests and improve account status change
mesilov Jul 6, 2024
2afc7d6
Refactor tests and classes to use PHP attributes
mesilov Jul 6, 2024
ed0aeda
Refactor AccessToken to AuthToken in SDK tests
mesilov Jul 7, 2024
02e9278
Add AuthTokenRepositoryInterface
mesilov Jul 7, 2024
075a612
Add Bitrix24Accounts documentation
mesilov Jul 7, 2024
c98cbd7
Add Bitrix24Accounts documentation
mesilov Jul 7, 2024
6998a36
Update Bitrix24AccountRepositoryInterface with new methods
mesilov Jul 7, 2024
93bf2aa
Update Bitrix24Accounts documentation
mesilov Jul 7, 2024
a362fa3
Add Bitrix24Account Events and update documentation
mesilov Jul 10, 2024
60bac53
Add contact person entities and interface, update dependencies
mesilov Jul 13, 2024
cca7f46
Update DemoDataGenerator and ContactPerson entity methods
mesilov Jul 21, 2024
269db81
Add InMemoryContactPersonRepositoryImplementation and tests
mesilov Jul 21, 2024
9985327
Update method calls in InfoCallTest
mesilov Jul 21, 2024
0e9e091
Refactor code for improved readability and consistency
mesilov Jul 21, 2024
48d9e99
Refactor variable names for better clarity
mesilov Jul 21, 2024
85a0ab7
Update ContactPersonRepository findByExternalId method
mesilov Jul 21, 2024
c8631b5
Update variable names for clarity
mesilov Jul 21, 2024
5707f4c
Add PHPStan ignore line to test
mesilov Jul 21, 2024
94cb6d5
Update PHPUnit fail settings
mesilov Jul 21, 2024
b94e677
Refactor test files and update phpunit configuration
mesilov Jul 21, 2024
00a3f89
Add ContactPerson event classes and documentation
mesilov Jul 22, 2024
e6ff656
Add application installation interface and Bitrix24 ID to contact person
mesilov Jul 23, 2024
e4ec9ba
Add application installation status handling
mesilov Jul 24, 2024
5225c39
Add Bitrix24 partner ID handling to contact persons
mesilov Jul 26, 2024
002cb45
Add bitrix24PartnerId/Uuid to ContactPerson entities
mesilov Jul 26, 2024
072522b
Add ApplicationInstallation reference entity implementation
mesilov Jul 27, 2024
a90c5b8
Add validation and update tests for application status
mesilov Jul 27, 2024
6ac7071
Implement stricter status checks and extend test coverage
mesilov Jul 28, 2024
f837d4c
Add validation and repository interface for installations
mesilov Jul 28, 2024
9abee5e
Add repository interface and tests for installations
mesilov Jul 28, 2024
4da0f91
Add Bitrix24Partner status and interface
mesilov Jul 30, 2024
35f136d
Add Bitrix24 Partners Repository and Entity Implementation
mesilov Aug 6, 2024
509f3de
Bump phpstan version to 1.11.7
mesilov Aug 6, 2024
64e7577
Switch to NullLogger for InMemory repository implementations
mesilov Aug 6, 2024
b890fc4
Enhance README with formatting and additional details
mesilov Aug 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update PHPUnit fail settings
The settings for failOnRisky and failOnWarning within PHPUnit configurations have been updated from true to false. This change allows tests to continue running even if there are risks or warnings, giving the opportunity to see a comprehensive list of all issues rather than stopping at the first one encountered.

Signed-off-by: mesilov <[email protected]>
  • Loading branch information
mesilov committed Jul 21, 2024
commit 94cb6d54ecd20b858afbe9ef6ee9e7f793a7a044
6 changes: 3 additions & 3 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="tests/bootstrap.php" failOnRisky="true" failOnWarning="true">
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" backupGlobals="false" colors="true"
bootstrap="tests/bootstrap.php" failOnRisky="false" failOnWarning="false">
<php>
<ini name="error_reporting" value="-1"/>
</php>
<testsuites>
<testsuite name="unit_tests">
<directory>./tests/Unit</directory>
<exclude>./tests/Unit/Application/Contracts/Bitrix24Accounts/Entity/Bitrix24AccountInterfaceTest.php</exclude>
<exclude>./tests/Unit/Application/Contracts/Bitrix24Accounts/Repository/Bitrix24AccountRepositoryInterfaceTest.php</exclude>
</testsuite>
<testsuite name="integration_tests">
<directory>./tests/Integration</directory>
Expand Down