Skip to content

Commit 69f84cb

Browse files
committed
Last changes.
1 parent dc0fc2d commit 69f84cb

File tree

5 files changed

+49
-45
lines changed

5 files changed

+49
-45
lines changed

bin/cli.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
$dispatcher = new Dispatcher($container);
2626

2727
$application = new Application(
28-
'Factorio Item Browser Export',
29-
'alpha',
28+
$config['name'],
29+
$config['version'],
3030
$config['routes'],
3131
Console::getInstance(),
3232
$dispatcher

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"require": {
1616
"php": "^7.2",
1717
"bluepsyduck/common": "^1.0",
18-
"factorio-item-browser/export-data": "dev-master",
18+
"factorio-item-browser/export-data": "^1.1",
1919
"zendframework/zend-config-aggregator": "^1.0",
2020
"zendframework/zend-i18n": "^2.7",
2121
"zendframework/zend-servicemanager": "^3.3",

composer.lock

Lines changed: 42 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/autoload/export.global.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,7 @@
2525
'instancesDirectory' => __DIR__ . '/../../factorio/instances',
2626
'numberOfAttempts' => 2,
2727
'numberOfInstances' => 4
28-
]
28+
],
29+
'name' => 'Factorio Item Browser Export',
30+
'version' => '1.0.0'
2931
];

src/Exception/ExportException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* The base exception thrown by the export classes.
99
*
1010
* @author BluePsyduck <[email protected]>
11-
* @license http://opensource.org/licenses/GPL-2.0 GPL v2
11+
* @license http://opensource.org/licenses/GPL-3.0 GPL v3
1212
*/
1313
class ExportException extends Exception {
1414

0 commit comments

Comments
 (0)