ckamaury / symfony
mini-framework for Symfony
3.1.42
2023-12-04 10:07 UTC
Requires
- php: >=8.1
- ext-ctype: *
- ext-curl: *
- ext-iconv: *
- ext-intl: *
- ext-json: *
- ext-pdo: *
- beberlei/doctrineextensions: ^1.3
- phpoffice/phpspreadsheet: ^1.29
- symfony/apache-pack: ^1.0
- symfony/webapp-pack: ^1.2
Requires (Dev)
- symfony/var-dumper: ^6.3
- dev-master
- 3.1.42
- 3.1.41
- 3.1.40
- 3.1.39
- 3.1.38
- 3.1.37
- 3.1.36
- 3.1.35
- 3.1.34
- 3.1.33
- 3.1.32
- 3.1.31
- 3.1.30
- 3.1.29
- 3.1.28
- 3.1.27
- 3.1.26
- 3.1.25
- 3.1.24
- 3.1.23
- 3.1.22
- 3.1.21
- 3.1.20
- 3.1.19
- 3.1.18
- 3.1.17
- 3.1.16
- 3.1.15
- 3.1.14
- 3.1.13
- 3.1.12
- 3.1.11
- 3.1.10
- 3.1.9
- 3.1.8
- 3.1.7
- 3.1.6
- 3.1.5
- 3.1.4
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.14
- 3.0.13
- 3.0.12
- 3.0.11
- 3.0.10
- 3.0.9
- 3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.1.4
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.2
- 2.0.1
- 1.0.78
- 1.0.76
- 1.0.75
- 1.0.74
- 1.0.73
- 1.0.72
- 1.0.71
- 1.0.70
- 1.0.69
- 1.0.68
- 1.0.66
- 1.0.65
- 1.0.64
- 1.0.63
- 1.0.62
- 1.0.61
- 1.0.60
- 1.0.59
- 1.0.58
- 1.0.57
- 1.0.56
- 1.0.54
- 1.0.53
- 1.0.52
- 1.0.51
- 1.0.50
- 1.0.49
- 1.0.47
- 1.0.46
- 1.0.45
- 1.0.44
- 1.0.43
- 1.0.42
- 1.0.41
- 1.0.40
- 1.0.39
- 1.0.38
- 1.0.37
- 1.0.36
- 1.0.35
- 1.0.34
- 1.0.33
- 1.0.32
- 1.0.31
- 1.0.30
- 1.0.29
- 1.0.28
- 1.0.27
- 1.0.26
- 1.0.25
- 1.0.24
- 1.0.23
- 1.0.22
- 1.0.21
- 1.0.20
- 1.0.19
- 1.0.18
- 1.0.17
- 1.0.16
- 1.0.15
- 1.0.14
- 1.0.13
- 1.0.12
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2024-11-04 12:08:18 UTC
README
Installation
- Install with composer : composer/require ckamaury/symfony
- Requires PHP >= 8.1
Installation
- Add to
public/index.php
APP:initialize($kernel);
- Add to
config/services.yaml
:
CkAmaury\Symfony\Repository\SecurityAccessRepository: CkAmaury\Symfony\Repository\SecurityRoleRepository: CkAmaury\Symfony\Repository\SecurityRoleAccessRepository: tags: ['doctrine.repository_service']
- Add to
config/packages/doctrine.yaml
:
doctrine: dbal: charset: utf8 default_table_options: charset: utf8 collate: utf8_unicode_ci types: mediumint: CkAmaury\Symfony\Database\Type\MediumintType tinyint: CkAmaury\Symfony\Database\Type\TinyintType datetime: CkAmaury\Symfony\Database\Type\DateTimeType date: CkAmaury\Symfony\Database\Type\DateType orm: auto_mapping: true mappings: CkAmaury: type: attribute prefix: 'CkAmaury\Symfony\Entity' dir: "%kernel.project_dir%/vendor/ckamaury/symfony/src/Entity" is_bundle: false dql: string_functions: replace: DoctrineExtensions\Query\Mysql\Replace MONTH: DoctrineExtensions\Query\Mysql\Month YEAR: DoctrineExtensions\Query\Mysql\Year
Pack Includes
- Symfony WebPack v1.2