Файловый менеджер - Редактировать - /home/avadvi5/calendar.aeronextgen.com/persistence.zip
Ðазад
PK ]n�\�nm�` ` CONTRIBUTING.mdnu �[��� # Circular dependency This package has a development dependency on `doctrine/common`, which has a regular dependency on this package (`^2.0` at the time of writing). To be able to use Composer, one has to let it understand that this is version 2 (even when developing on 3.0.x), as follows: ```shell COMPOSER_ROOT_VERSION=2.0 composer update -v ``` PK ]n�\��7� � UPGRADE.mdnu �[��� Note about upgrading: Doctrine uses static and runtime mechanisms to raise awareness about deprecated code. - Use of `@deprecated` docblock that is detected by IDEs (like PHPStorm) or Static Analysis tools (like Psalm, phpstan) - Use of our low-overhead runtime deprecation API, details: https://github.com/doctrine/deprecations/ # Upgrade to 3.4 ## Deprecated `StaticReflectionService` The class `Doctrine\Persistence\Mapping\StaticReflectionService` is deprecated without replacement. # Upgrade to 3.3 ## Added method `ObjectManager::isUninitializedObject()` Classes implementing `Doctrine\Persistence\ObjectManager` should implement the new method. This method will be added to the interface in 4.0. # Upgrade to 3.1 ## Deprecated `RuntimePublicReflectionProperty` Use `RuntimeReflectionProperty` instead. # Upgrade to 3.0 ## Removed `OnClearEventArgs::clearsAllEntities()` and `OnClearEventArgs::getEntityClass()` These methods only make sense when partially clearing the object manager, which is no longer possible. The second argument of the constructor of `OnClearEventArgs` is removed as well. ## BC Break: removed `ObjectManagerAware` Implement active record style functionality directly in your application, by using a `postLoad` event. ## BC Break: removed `AnnotationDriver` Use `ColocatedMappingDriver` instead. ## BC Break: Removed `MappingException::pathRequired()` Use `MappingException::pathRequiredForDriver()` instead. ## BC Break: removed `LifecycleEventArgs::getEntity()` Use `LifecycleEventArgs::getObject()` instead. ## BC Break: removed support for short namespace aliases - `AbstractClassMetadataFactory::getFqcnFromAlias()` is removed. - `ClassMetadataFactory` methods now require their `$className` argument to be an actual FQCN. ## BC Break: removed `ObjectManager::merge()` `ObjectManagerDecorator::merge()` is removed without replacement. ## BC Break: removed support for `doctrine/cache` Removed support for using doctrine/cache for metadata caching. The `setCacheDriver` and `getCacheDriver` methods have been removed from `Doctrine\Persistence\Mapping\AbstractMetadata`. Please use `getCache` and `setCache` with a PSR-6 implementation instead. ## BC Break: changed signatures `$objectName` has been dropped from the signature of `ObjectManager::clear()`. ```diff - public function clear($objectName = null) + public function clear(): void ``` Also, native parameter type declarations have been added on all public APIs. Native return type declarations have not been added so that it is possible to implement types compatible with both 2.x and 3.x. ## BC Break: Removed `PersistentObject` Please implement this functionality directly in your application if you want ActiveRecord style functionality. # Upgrade to 2.5 ## Deprecated `OnClearEventArgs::clearsAllEntities()` and `OnClearEventArgs::getEntityClass()` These methods only make sense when partially clearing the object manager, which is deprecated. Passing a second argument to the constructor of `OnClearEventArgs` is deprecated as well. ## Deprecated `ObjectManagerAware` Along with deprecating `PersistentObject`, deprecating `ObjectManagerAware` means deprecating support for active record, which already came with a word of warning. Please implement this directly in your application with a `postLoad` event if you need active record style functionality. ## Deprecated `MappingException::pathRequired()` `MappingException::pathRequiredForDriver()` should be used instead. # Upgrade to 2.4 ## Deprecated `AnnotationDriver` Since attributes were introduced in PHP 8.0, annotations are deprecated. `AnnotationDriver` is an abstract class that is used when implementing concrete annotation drivers in dependent packages. It is deprecated in favor of using `ColocatedMappingDriver` to implement both annotation and attribute based drivers. This will involve implementing `isTransient()` as well as `__construct()` and `getReader()` to retain backward compatibility. # Upgrade to 2.3 ## Deprecated using short namespace alias syntax in favor of `::class` syntax. Before: ```php $objectManager->find('MyPackage:MyClass', $id); $objectManager->createQuery('SELECT u FROM MyPackage:MyClass'); ``` After: ```php $objectManager->find(MyClass::class, $id); $objectManager->createQuery('SELECT u FROM '. MyClass::class); ``` # Upgrade to 2.2 ## Deprecated `doctrine/cache` usage for metadata caching The `setCacheDriver` and `getCacheDriver` methods in `Doctrine\Persistence\Mapping\AbstractMetadata` have been deprecated. Please use `getCache` and `setCache` with a PSR-6 implementation instead. Note that even after switching to PSR-6, `getCacheDriver` will return a cache instance that wraps the PSR-6 cache. Note that if you use a custom implementation of doctrine/cache, the library may not be able to provide a forward compatibility layer. The cache implementation MUST extend the `Doctrine\Common\Cache\CacheProvider` class. # Upgrade to 1.2 ## Deprecated `ObjectManager::merge()` and `ObjectManager::detach()` Please handle merge operations in your application, and use `ObjectManager::clear()` instead. ## Deprecated `PersistentObject` Please implement this functionality directly in your application if you want ActiveRecord style functionality. PK ]n�\��n�g g README.mdnu �[��� # Doctrine Persistence [![GitHub Actions][GA 3.3 image]][GA 3.3] [![Code Coverage][Coverage 3.3 image]][CodeCov 3.3] The Doctrine Persistence project is a library that provides common abstractions for object mapper persistence. ## More resources: * [Website](https://www.doctrine-project.org/) * [Documentation](https://www.doctrine-project.org/projects/doctrine-persistence/en/latest/index.html) * [Downloads](https://github.com/doctrine/persistence/releases) [Coverage 3.3 image]: https://codecov.io/gh/doctrine/persistence/branch/3.3.x/graph/badge.svg [CodeCov 3.3]: https://codecov.io/gh/doctrine/persistence/branch/3.3.x [GA 3.3 image]: https://github.com/doctrine/persistence/actions/workflows/continuous-integration.yml/badge.svg?branch=3.3.x [GA 3.3]: https://github.com/doctrine/persistence/actions/workflows/continuous-integration.yml?branch=3.3.x PK ]n�\�9�) ) LICENSEnu �[��� Copyright (c) 2006-2015 Doctrine Project Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. PK ]n�\�i��� � src/Persistence/error_lognu �[��� [13-Apr-2025 17:36:11 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ConnectionRegistry" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ManagerRegistry.php:10 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ManagerRegistry.php on line 10 [13-Apr-2025 23:27:17 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ObjectManager" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ObjectManagerDecorator.php:20 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ObjectManagerDecorator.php on line 20 [14-Apr-2025 02:59:23 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ManagerRegistry" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/AbstractManagerRegistry.php:16 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/AbstractManagerRegistry.php on line 16 [22-Apr-2025 01:07:45 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ConnectionRegistry" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ManagerRegistry.php:10 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ManagerRegistry.php on line 10 [22-Apr-2025 06:23:24 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ObjectManager" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ObjectManagerDecorator.php:20 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ObjectManagerDecorator.php on line 20 [22-Apr-2025 06:29:03 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ManagerRegistry" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/AbstractManagerRegistry.php:16 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/AbstractManagerRegistry.php on line 16 [24-Apr-2025 19:09:51 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ManagerRegistry" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/AbstractManagerRegistry.php:16 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/AbstractManagerRegistry.php on line 16 [24-Apr-2025 21:06:21 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ConnectionRegistry" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ManagerRegistry.php:10 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ManagerRegistry.php on line 10 [24-Apr-2025 23:08:07 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ObjectManager" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ObjectManagerDecorator.php:20 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ObjectManagerDecorator.php on line 20 [30-Apr-2025 11:54:28 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ObjectManager" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ObjectManagerDecorator.php:20 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ObjectManagerDecorator.php on line 20 [30-Apr-2025 12:11:57 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ManagerRegistry" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/AbstractManagerRegistry.php:16 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/AbstractManagerRegistry.php on line 16 [30-Apr-2025 14:36:51 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ObjectManager" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ObjectManagerDecorator.php:20 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ObjectManagerDecorator.php on line 20 [30-Apr-2025 15:01:20 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ConnectionRegistry" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ManagerRegistry.php:10 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ManagerRegistry.php on line 10 [30-Apr-2025 15:20:09 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ConnectionRegistry" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ManagerRegistry.php:10 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ManagerRegistry.php on line 10 [30-Apr-2025 18:20:19 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ManagerRegistry" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/AbstractManagerRegistry.php:16 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/AbstractManagerRegistry.php on line 16 [13-May-2025 14:24:13 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ConnectionRegistry" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ManagerRegistry.php:10 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ManagerRegistry.php on line 10 [13-May-2025 14:24:34 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ObjectManager" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ObjectManagerDecorator.php:20 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ObjectManagerDecorator.php on line 20 [13-May-2025 14:24:35 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ManagerRegistry" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/AbstractManagerRegistry.php:16 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/AbstractManagerRegistry.php on line 16 [14-May-2025 00:27:50 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ManagerRegistry" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/AbstractManagerRegistry.php:16 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/AbstractManagerRegistry.php on line 16 [14-May-2025 00:51:17 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ConnectionRegistry" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ManagerRegistry.php:10 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ManagerRegistry.php on line 10 [14-May-2025 01:32:04 UTC] PHP Fatal error: Uncaught Error: Interface "Doctrine\Persistence\ObjectManager" not found in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ObjectManagerDecorator.php:20 Stack trace: #0 {main} thrown in /home/avadvi5/calendar.aeronextgen.com/davis/vendor/doctrine/persistence/src/Persistence/ObjectManagerDecorator.php on line 20 PK ]n�\uG��� � &