|
1 | 1 | # Packages |
2 | 2 |
|
3 | | -* `dotkernel/dot-cache`:`^4.3` - Provides caching based on `symfony/cache` |
4 | | -* `dotkernel/dot-cli`:`^3.9` - Build console applications based on `laminas-cli` |
5 | | -* `dotkernel/dot-data-fixtures`:`^1.4` - Provides a CLI interface for listing & executing doctrine data fixtures |
6 | | -* `dotkernel/dot-dependency-injection`:`^1.2` - Dependency injection component using class attributes |
| 3 | +* `doctrine/dbal`:`^4.4` - Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management. |
| 4 | +* `doctrine/orm`:`^3.6` - Object-Relational-Mapper for PHP |
| 5 | +* `dotkernel/dot-authorization`:`^3.8` - Authorization base package defining interfaces for authorization services to be used with Dotkernel applications |
| 6 | +* `dotkernel/dot-cache`:`^4.4` - Cache component extending symfony-cache |
| 7 | +* `dotkernel/dot-cli`:`^3.10` - Component for creating console applications based on laminas-cli |
| 8 | +* `dotkernel/dot-controller`:`^3.6` - Provides base classes for action based controllers similar to Laminas controller component |
| 9 | +* `dotkernel/dot-data-fixtures`:`^1.5` - Provides a CLI interface for listing & executing doctrine data fixtures |
| 10 | +* `dotkernel/dot-dependency-injection`:`^1.3` - Dependency injection component using class attributes |
7 | 11 | * `dotkernel/dot-errorhandler`:`^4.0` - Logging Error Handler for Middleware Applications |
8 | | -* `dotkernel/dot-flashmessenger`:`^3.6` - Provides session messages between redirects |
9 | | -* `dotkernel/dot-geoip`:`^3.9` - Retrieve information about an IP address based on `maxmind/GeoIP2-php` |
10 | | -* `dotkernel/dot-helpers`:`^3.8` - Helper/Utility classes based on `mezzio/mezzio-helpers` |
11 | | -* `dotkernel/dot-mail`:`^5.1` - Mail component based on Symfony Mailer |
12 | | -* `dotkernel/dot-navigation`:`^3.5` - Allows you to easily define and parse menus inside templates, configuration based approach |
13 | | -* `dotkernel/dot-rbac-guard`:`^3.6` - Defines authorization guards that authorize users for accessing certain parts of an application based on various criteria |
14 | | -* `dotkernel/dot-router`:`^1.0` - Dotkernel component to build complex routes, based on `mezzio/mezzio-fastroute` |
15 | | -* `dotkernel/dot-session`:`^5.7` - Dotkernel session component extending and customizing `laminas/laminas-session` |
16 | | -* `dotkernel/dot-twigrenderer`:`^3.6` - Dotkernel component providing twig extensions and customizations |
17 | | -* `friendsofphp/proxy-manager-lts`:`^1.0` - Fork of `ocramius/proxy-manager` |
18 | | -* `laminas/laminas-component-installer`:`^3.5` - Composer plugin for injecting modules and configuration providers into application configuration |
19 | | -* `laminas/laminas-config-aggregator`:`^1.18` - Lightweight library for collecting and merging configuration from different sources |
20 | | -* `mezzio/mezzio`:`^3.21` - PSR-15 Middleware Microframework |
21 | | -* `mezzio-authentication-oauth2`:`^2.11` - Middleware for Mezzio and PSR-7 applications providing an OAuth2 server for authentication |
22 | | -* `mezzio/mezzio-authorization-rbac`:`^1.9` - Mezzio authorization RBAC adapter for `laminas/laminas-permissions-rbac` |
23 | | -* `mezzio/mezzio-cors`:`^1.14` - CORS component for Mezzio and other PSR-15 middleware runners |
24 | | -* `mezzio/mezzio-fastroute`:`^3.13` - FastRoute integration for Mezzio |
25 | | -* `ramsey/uuid`:`^4.5` - Library for generating and working with universally unique identifiers (UUIDs) |
26 | | -* `ramsey/uuid-doctrine`:`^2.1` - Use `ramsey/uuid` as a Doctrine field type |
27 | | -* `roave/psr-container-doctrine`:`^5.2` || `^6.0` - Doctrine Factories for PSR-11 Containers |
| 12 | +* `dotkernel/dot-flashmessenger`:`^3.7` - Provides session messages between redirects |
| 13 | +* `dotkernel/dot-mail`:`^5.1` - Mail component based on laminas-mail |
| 14 | +* `dotkernel/dot-navigation`:`^3.6` - Allows you to easily define and parse menus inside templates, configuration based approach |
| 15 | +* `dotkernel/dot-rbac-guard`:`^3.7` - Defines authorization guards that authorize users for accessing certain parts of an application based on various criteria |
| 16 | +* `dotkernel/dot-router`:`^1.1` - Dotkernel component to build complex routes, based on `mezzio/mezzio-fastroute` |
| 17 | +* `dotkernel/dot-session`"`^5.8` - Dotkernel session component extending and customizing laminas-session |
| 18 | +* `dotkernel/dot-twigrenderer`:`^3.7` - Dotkernel component providing twig extensions and customizations |
| 19 | +* `friendsofphp/proxy-manager-lts`:`^1.0` - Fork of ocramius/proxy-manager |
| 20 | +* `laminas/laminas-authentication`:`^2.19` - API for authentication and includes concrete authentication adapters for common use case scenarios |
| 21 | +* `laminas/laminas-component-installer`:`^3.7` - Composer plugin for injecting modules and configuration providers into application configuration |
| 22 | +* `laminas/laminas-config-aggregator`:`^1.19` - Lightweight library for collecting and merging configuration from different sources |
| 23 | +* `laminas/laminas-form`:`^3.24` - Bridge between your domain models and the View Layer |
| 24 | +* `laminas/laminas-hydrator`:`^4.18` - Serialize objects to arrays, and vice versa |
| 25 | +* `laminas/laminas-inputfilter`:`^2.35` - Normalize and validate input sets from the web, APIs, the CLI, and more, including files |
| 26 | +* `laminas/laminas-servicemanager`:`^3.24` - Factory-Driven Dependency Injection Container |
| 27 | +* `laminas/laminas-stdlib`:`^3.21` - SPL extensions, array utilities, error handlers, and more |
| 28 | +* `mezzio/mezzio`:`^3.27` - PSR-15 Middleware Microframework |
| 29 | +* `mezzio/mezzio-authentication-oauth2`:`^2.14` - OAuth2 (server) authentication middleware for Mezzio and PSR-15 applications |
| 30 | +* `mezzio/mezzio-authorization-rbac`:`^1.10` - mezzio authorization rbac adapter for laminas/laminas-permissions-rbac |
| 31 | +* `mezzio/mezzio-cors`:`^1.16` - CORS component for Mezzio and other PSR-15 middleware runners |
| 32 | +* `mezzio/mezzio-fastroute`:`^3.14` - FastRoute integration for Mezzio |
| 33 | +* `mezzio/mezzio-helpers`:`^5.20` - Helper/Utility classes for Mezzio |
| 34 | +* `ramsey/uuid`:`^4.9` - A PHP library for generating and working with universally unique identifiers (UUIDs) |
| 35 | +* `ramsey/uuid-doctrine`:`^2.1` - Use ramsey/uuid as a Doctrine field type |
| 36 | +* `roave/psr-container-doctrine`:`^6.1` - Doctrine Factories for PSR-11 Containers |
| 37 | +* `symfony/filesystem`:`^8.0` - Provides basic utilities for the filesystem |
0 commit comments