Преглед изворни кода

add ProxyFactory::registerAutoloader + misc improvements & bug fixes

phpdevcommunity пре 1 месец
родитељ
комит
1f31559ce9
2 измењених фајлова са 3 додато и 3 уклоњено
  1. 2 2
      README.md
  2. 1 1
      src/EntityManager.php

+ 2 - 2
README.md

@@ -21,7 +21,7 @@ PaperORM is available via **Composer** and installs in seconds.
 
 ### 📦 Via Composer (recommended)
 ```bash
-composer require phpdevcommunity/paper-orm:1.0.8-alpha
+composer require phpdevcommunity/paper-orm:1.0.9-alpha
 ```  
 
 ### 🔧 Minimal Configuration
@@ -245,7 +245,7 @@ PaperORM est disponible via **Composer** et s'installe en quelques secondes.
 
 ### 📦 Via Composer (recommandé)
 ```bash
-composer require phpdevcommunity/paper-orm:1.0.8-alpha
+composer require phpdevcommunity/paper-orm:1.0.9-alpha
 ```  
 
 ### 🔧 Configuration minimale

+ 1 - 1
src/EntityManager.php

@@ -56,7 +56,7 @@ class EntityManager implements EntityManagerInterface
         if (!isset($config['driver'])) {
             throw new \InvalidArgumentException('Missing "driver" in EntityManager configuration.');
         }
-        
+
         $this->connection = DriverManager::createConnection($config['driver'], $config);
         $this->unitOfWork = new UnitOfWork();
         $this->cache = new EntityMemcachedCache();