Skip to content

Latest commit

 

History

History
93 lines (80 loc) · 1.44 KB

install.md

File metadata and controls

93 lines (80 loc) · 1.44 KB

Установка

Устанавливаем зависимость:

composer require yii2lab/yii2-geo

Объявляем миграции:

return [
	...
	'dee.migration.path' => [
	    ...
		'@vendor/yii2bundle/yii2-geo/src/domain/migrations',
		...
	],
	...
];

Создаем полномочие:

oGeoCityManage
oGeoCountryManage
oGeoRegionManage
oGeoCurrencyManage

Объявляем API модуль:

return [
	'modules' => [
	    ...
        'geo' => [
            'class' => 'yii2bundle\geo\api\Module',
        ],
        ...
	],
	'components' => [
		'urlManager' => [
			'rules' => [
                ...
                ['class' => 'yii\rest\UrlRule', 'controller' => ['v4/city' => 'geo/city']],
                ['class' => 'yii\rest\UrlRule', 'controller' => ['v4/country' => 'geo/country']],
                ['class' => 'yii\rest\UrlRule', 'controller' => ['v4/currency' => 'geo/currency']],
                ['class' => 'yii\rest\UrlRule', 'controller' => ['v4/region' => 'geo/region']],
                ...
			],
		],
	],
];

Объявляем домен:

return [
	'components' => [
		// ...
		'geo' => [
			'class' => 'yii2rails\domain\Domain',
			'path' => 'yii2bundle\geo\domain',
			'repositories' => [
				'region',
				'city',
				'country',
				'currency',
			],
			'services' => [
				'region',
				'city',
				'country',
				'currency',
			],
		],
		// ...
	],
];