Commit de07a276bd1653de557599993e6dfe0148ada3f0
1 parent
5915b351
v0.0.2-stable
Showing
5 changed files
with
44 additions
and
55 deletions
Show diff stats
common/config/SitemapDynamic.php
common/config/SitemapStatic.php
1 | 1 | <?php |
2 | 2 | |
3 | 3 | return [ |
4 | - 1 => [ | |
5 | - 'url' => 'http://www.artbox.dev/', | |
6 | - 'frequency' => 'monthly', | |
7 | - 'priority' => '1', | |
8 | - 'id' => 1, | |
9 | - ], | |
10 | - 2 => [ | |
11 | - 'url' => 'http://www.artbox.dev/site/contacts', | |
12 | - 'frequency' => 'monthly', | |
13 | - 'priority' => '0.7', | |
14 | - 'id' => 2, | |
15 | - ], | |
4 | + | |
16 | 5 | ]; |
17 | 6 | \ No newline at end of file | ... | ... |
common/config/bootstrap.php
... | ... | @@ -3,6 +3,4 @@ |
3 | 3 | Yii::setAlias('@frontend', dirname(dirname(__DIR__)) . '/frontend'); |
4 | 4 | Yii::setAlias('@backend', dirname(dirname(__DIR__)) . '/backend'); |
5 | 5 | Yii::setAlias('@console', dirname(dirname(__DIR__)) . '/console'); |
6 | - Yii::setAlias('@storage', dirname(dirname(__DIR__)) . '/storage'); | |
7 | - Yii::setAlias('@artbox/core', dirname(dirname(__DIR__)) . '/artweb/artbox-core'); | |
8 | - | |
9 | 6 | \ No newline at end of file |
7 | + Yii::setAlias('@storage', dirname(dirname(__DIR__)) . '/storage'); | |
10 | 8 | \ No newline at end of file | ... | ... |
common/config/settings.php
1 | 1 | <?php |
2 | - | |
3 | -return [ | |
4 | - 1 => [ | |
5 | - 'phone' => '+38 (044) 593-73-76', | |
6 | - 'phone2' => '+38 (098) 468-07-64', | |
7 | - 'skype' => 'artwebstudio', | |
8 | - 'email' => 'artweb.ua@gmail.com', | |
9 | - 'house' => '1-М', | |
10 | - 'street' => 'пр. М. Бажана', | |
11 | - 'office' => '25', | |
12 | - 'city' => 'Киев', | |
13 | - 'country' => 'Украина', | |
14 | - 'lat' => '50.403696', | |
15 | - 'lon' => '30.641481', | |
16 | - 'facebook' => 'https://www.facebook.com/ArtWeb.ua/', | |
17 | - 'vk' => 'https://vk.com/artwebua', | |
18 | - 'ok' => 'https://ok.ru/artwebua', | |
19 | - 'google' => 'https://plus.google.com/+ArtwebUaAgency', | |
20 | - 'twitter' => 'https://twitter.com/ArtWeb_ua', | |
21 | - 'name' => 'Artweb', | |
22 | - 'logo' => '10', | |
23 | - 'about' => 'Строим бизнес в онлайне', | |
24 | - 'analytics_key' => '119240817', | |
25 | - 'robots' => 'User-agent: Google | |
26 | -Disallow: | |
27 | -', | |
28 | - 'ga_code' => '796967', | |
29 | - 'ya_code' => '08908908', | |
30 | - 'tag_manager' => '', | |
31 | - 'id' => 1, | |
32 | - ], | |
33 | -]; | |
34 | 2 | \ No newline at end of file |
3 | + | |
4 | + return [ | |
5 | + 1 => [ | |
6 | + 'phone' => '', | |
7 | + 'phone2' => '', | |
8 | + 'skype' => '', | |
9 | + 'email' => '', | |
10 | + 'house' => '', | |
11 | + 'street' => '', | |
12 | + 'office' => '', | |
13 | + 'city' => '', | |
14 | + 'country' => '', | |
15 | + 'lat' => '', | |
16 | + 'lon' => '', | |
17 | + 'facebook' => '', | |
18 | + 'vk' => '', | |
19 | + 'ok' => '', | |
20 | + 'google' => '', | |
21 | + 'twitter' => '', | |
22 | + 'name' => '', | |
23 | + 'logo' => '', | |
24 | + 'about' => '', | |
25 | + 'analytics_key' => '', | |
26 | + 'robots' => '', | |
27 | + 'ga_code' => '', | |
28 | + 'ya_code' => '', | |
29 | + 'tag_manager' => '', | |
30 | + 'id' => 1, | |
31 | + ], | |
32 | + ]; | |
35 | 33 | \ No newline at end of file | ... | ... |
composer.json
... | ... | @@ -48,5 +48,15 @@ |
48 | 48 | "npm-asset-library": "vendor/npm", |
49 | 49 | "bower-asset-library": "vendor/bower" |
50 | 50 | } |
51 | - } | |
51 | + }, | |
52 | + "repositories": [ | |
53 | + { | |
54 | + "type": "vcs", | |
55 | + "url": "git@gitlab.artweb.com.ua:yarik.nechyporuk/artbox-core.git" | |
56 | + }, | |
57 | + { | |
58 | + "type": "vcs", | |
59 | + "url": "git@gitlab.artweb.com.ua:yarik.nechyporuk/artbox-gentelella.git" | |
60 | + } | |
61 | + ] | |
52 | 62 | } | ... | ... |