Skip to content

Commit

Permalink
Clearing core dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
akadlec committed Nov 25, 2024
1 parent 132503b commit 6b22104
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 14 deletions.
4 changes: 2 additions & 2 deletions src/FastyBird/Core/Application/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@
"contributte/vite": "^0.2",
"cweagans/composer-patches": "^1.7",
"doctrine/orm": "2.15.*",
"fastybird/datetime-factory": "^0.7.1",
"fastybird/metadata-library": "dev-main",
"fastybird/simple-auth": "^0.14",
"ipub/doctrine-crud": "^5.1",
"ipub/doctrine-timestampable": "^2.0",
"ipub/slim-router": "^0.2",
"nette/bootstrap": "^3.2",
"nette/application": "^3.1",
"nette/caching": "^3.3",
Expand Down
1 change: 0 additions & 1 deletion src/FastyBird/Core/Application/config/common.neon
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ extensions:
# contributteCacheDebug : Contributte\Cache\DI\DebugStorageExtension
orisaiObjectMapper : OriNette\ObjectMapper\DI\ObjectMapperExtension
fbApplication : FastyBird\Core\Application\DI\ApplicationExtension
fbDateTimeFactory : FastyBird\DateTimeFactory\DI\DateTimeFactoryExtension

##################################
# Nette extensions configuration #
Expand Down
1 change: 0 additions & 1 deletion src/FastyBird/Core/Application/tests/common.neon
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ extensions:
nettrineOrmCache : Nettrine\ORM\DI\OrmCacheExtension
ipubDoctrineCrud : IPub\DoctrineCrud\DI\DoctrineCrudExtension
ipubDoctrineTimestampable : IPub\DoctrineTimestampable\DI\DoctrineTimestampableExtension
ipubPhone : IPub\Phone\DI\PhoneExtension
fbDateTimeFactory : FastyBird\DateTimeFactory\DI\DateTimeFactoryExtension
fbJsonApi : FastyBird\JsonApi\DI\JsonApiExtension
fbSimpleAuth : FastyBird\SimpleAuth\DI\SimpleAuthExtension
Expand Down
1 change: 0 additions & 1 deletion src/FastyBird/Core/Exchange/tests/common.neon
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ php:
date.timezone: Europe/Prague

extensions:
ipubPhone : IPub\Phone\DI\PhoneExtension
fbTools : FastyBird\Core\Tools\DI\ToolsExtension

fbApplication:
Expand Down
3 changes: 2 additions & 1 deletion src/FastyBird/Core/Tools/tests/common.neon
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ php:
date.timezone: Europe/Prague

extensions:
fbDateTimeFactory : FastyBird\DateTimeFactory\DI\DateTimeFactoryExtension
ipubDoctrineTimestampable : IPub\DoctrineTimestampable\DI\DoctrineTimestampableExtension
fbDateTimeFactory : FastyBird\DateTimeFactory\DI\DateTimeFactoryExtension
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
use FastyBird\Module\Devices\Events;
use FastyBird\Module\Devices\Exceptions;
use FastyBird\Module\Devices\States;
use IPub\Phone\Exceptions as PhoneExceptions;
use Nette;
use Nette\Caching as NetteCaching;
use Symfony\Component\EventDispatcher;
Expand Down Expand Up @@ -80,8 +79,6 @@ public static function getSubscribedEvents(): array
* @throws ToolsExceptions\InvalidData
* @throws ToolsExceptions\Logic
* @throws ToolsExceptions\MalformedInput
* @throws PhoneExceptions\NoValidCountryException
* @throws PhoneExceptions\NoValidPhoneException
*/
public function stateCreated(
Events\ConnectorPropertyStateEntityCreated|Events\DevicePropertyStateEntityCreated|Events\ChannelPropertyStateEntityCreated $event,
Expand All @@ -104,8 +101,6 @@ public function stateCreated(
* @throws ToolsExceptions\InvalidData
* @throws ToolsExceptions\Logic
* @throws ToolsExceptions\MalformedInput
* @throws PhoneExceptions\NoValidCountryException
* @throws PhoneExceptions\NoValidPhoneException
*/
public function stateUpdated(
Events\ConnectorPropertyStateEntityUpdated|Events\DevicePropertyStateEntityUpdated|Events\ChannelPropertyStateEntityUpdated $event,
Expand Down Expand Up @@ -139,8 +134,6 @@ private function cleanCache(
* @throws ToolsExceptions\InvalidData
* @throws ToolsExceptions\Logic
* @throws ToolsExceptions\MalformedInput
* @throws PhoneExceptions\NoValidCountryException
* @throws PhoneExceptions\NoValidPhoneException
*/
private function publishDocument(
MetadataTypes\Sources\Source $source,
Expand Down
1 change: 0 additions & 1 deletion src/FastyBird/Module/Devices/tests/common.neon
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ extensions:
nettrineOrmCache : Nettrine\ORM\DI\OrmCacheExtension
ipubDoctrineCrud : IPub\DoctrineCrud\DI\DoctrineCrudExtension
ipubDoctrineTimestampable : IPub\DoctrineTimestampable\DI\DoctrineTimestampableExtension
ipubPhone : IPub\Phone\DI\PhoneExtension
fbDateTimeFactory : FastyBird\DateTimeFactory\DI\DateTimeFactoryExtension
fbJsonApi : FastyBird\JsonApi\DI\JsonApiExtension
fbSimpleAuth : FastyBird\SimpleAuth\DI\SimpleAuthExtension
Expand Down

0 comments on commit 6b22104

Please sign in to comment.