siomkin / belgie
Symfony Belgie Application
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^7.1.3
- ext-dom: *
- ext-json: *
- doctrine/doctrine-fixtures-bundle: ^3.1
- sensio/framework-extra-bundle: ^5.2
- symfony/asset: ^4.2
- symfony/dotenv: 4.2.*
- symfony/flex: ^1.2
- symfony/form: ^4.2
- symfony/framework-bundle: ^4.2
- symfony/intl: ^4.2
- symfony/monolog-bundle: ^3.3
- symfony/orm-pack: ^1.0
- symfony/security-bundle: 4.2.*
- symfony/twig-bundle: ^4.2
- symfony/validator: 4.2.*
- symfony/webpack-encore-bundle: ^1.1
- symfony/yaml: ^4.2
- twig/extensions: ^1.5
- twig/twig: ^2.6
- white-october/pagerfanta-bundle: ^1.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.12
- roave/security-advisories: dev-master
- sensiolabs/security-checker: ^5.0
- symfony/debug: 4.2.*
- symfony/debug-bundle: 4.2.*
- symfony/maker-bundle: ^1.11
- symfony/profiler-pack: ^1.0
- thomas-schulz/doctrine-phpstorm-meta: ^1.2
- thomas-schulz/symfony-meta: ^1.2
Conflicts
This package is auto-updated.
Last update: 2025-04-25 08:32:51 UTC
README
Подготовка файла с данными для регистрация информационных сетей, систем и ресурсов в АИС БелГИЭ.
Возможности
- Учёт списка оборудования и места установки
- Учёт линий связи
- Учёт каналов связи
- Типы оборудования
- Разделение на организации или отдельные объекты
- Работа с адресами
- Выбор данных для подготовки xml и загрузки на портал
Установка
composer create-project siomkin/belgie
Изменить настройки подключения к бд в .env
Создать таблицы бд
php bin/console doctrine:schema:create
Загрузить данные типпов оборудования и адреса
php bin/console doctrine:fixtures:load
Работа с пользователя
Creates users and stores them in the database
Usage:
app:add-user [options] [--] [<username> [<password>]]
The app:add-user command creates new users and saves them in the database:
php bin/console app:add-user username password
By default the command creates regular users. To create administrator users, add the --admin option:
php bin/console app:add-user username password --admin
Deletes users from the database
Usage:
app:delete-user <username>
The app:delete-user command deletes users from the database:
php bin/console app:delete-user username
If you omit the argument, the command will ask you to provide the missing value:
php bin/console app:delete-user
Lists all the existing users
Usage:
app:list-users [options]
The app:list-users command lists all the users registered in the application:
php bin/console app:list-users
By default the command only displays the 50 most recent users. Set the number of results to display with the --max-results option:
php bin/console app:list-users --max-results=2000