Commit d0261fd1427d99458552b9ced1961c6162441d0b
1 parent
9495d312
fixed namespace issue
Showing
16 changed files
with
20 additions
and
20 deletions
Show diff stats
composer.json
1 | 1 | { |
2 | 2 | "minimum-stability" : "dev", |
3 | - "name": "artweb/yii-multiparser", | |
3 | + "name": "artweb/yii2-multiparser", | |
4 | 4 | "type": "library", |
5 | 5 | "description": "This extension provides a Multiparser solution for Yii framework 2.0.", |
6 | - "keywords": [ "yii", "parser", "csv", "xml" ], | |
6 | + "keywords": [ "yii2", "parser", "csv", "xml, xlsx" ], | |
7 | 7 | "homepage": "https://github.com/tsurkanovm/yii-multiparser.git", |
8 | 8 | "license": "MIT", |
9 | 9 | "authors": [ |
... | ... | @@ -18,7 +18,7 @@ |
18 | 18 | }, |
19 | 19 | "autoload": { |
20 | 20 | "psr-4": { |
21 | - "artweb\\yii_multiparser\\": "" | |
21 | + "artweb\\yii2-multiparser\\lib": "" | |
22 | 22 | } |
23 | 23 | } |
24 | 24 | } | ... | ... |
lib/Converter.php
lib/ConverterInterface.php
lib/CsvParser.php
... | ... | @@ -2,13 +2,13 @@ |
2 | 2 | /** |
3 | 3 | |
4 | 4 | */ |
5 | -namespace artweb\yii_multiparser; | |
5 | +namespace yii\multiparser; | |
6 | 6 | use common\components\CustomVarDamp; |
7 | 7 | |
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Class CsvParser |
11 | - * @package artweb\yii_multiparser | |
11 | + * @package yii\multiparser | |
12 | 12 | * @todo - перевести на анг. яз. |
13 | 13 | */ |
14 | 14 | class CsvParser extends TableParser | ... | ... |
lib/DynamicFormHelper.php
lib/Encoder.php
lib/ObjectCreator.php
lib/Parser.php
lib/ParserHandler.php
lib/TableParser.php
lib/XlsxParser.php
... | ... | @@ -6,7 +6,7 @@ |
6 | 6 | * Time: 15:44 |
7 | 7 | */ |
8 | 8 | |
9 | -namespace artweb\yii_multiparser; | |
9 | +namespace yii\multiparser; | |
10 | 10 | |
11 | 11 | |
12 | 12 | use common\components\CustomVarDamp; |
... | ... | @@ -14,7 +14,7 @@ use common\components\CustomVarDamp; |
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Class XlsxParser |
17 | - * @package artweb\yii_multiparser | |
17 | + * @package yii\multiparser | |
18 | 18 | */ |
19 | 19 | class XlsxParser extends TableParser { |
20 | 20 | ... | ... |
lib/XmlParser.php
lib/YiiConverter.php
lib/YiiMultiparser.php
lib/YiiParserHandler.php
lib/config.php