Skip to content

Commit bc6b96d

Browse files
committed
minor updates for testing and meta data
1 parent cb1719c commit bc6b96d

File tree

3 files changed

+24
-13
lines changed

3 files changed

+24
-13
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
vendor
22
composer.lock
3-
.idea
3+
.idea
4+
/tests/report

composer.json

+21-11
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,26 @@
11
{
22
"name": "awes-io/localization-helper",
3-
"description": ":description",
4-
"license": "GPL-3.0-only",
3+
"description": "Package for convenient work with Laravel's localization features",
4+
"type": "library",
5+
"license": "MIT",
56
"authors": [
6-
{
7-
"name": "AwesCRM",
8-
"email": "[email protected]",
9-
"homepage": "https://awescrm.de/"
10-
}
11-
],
12-
"homepage": "https://www.awes.io/packages/localizationhelper",
13-
"keywords": ["Laravel", "LocalizationHelper"],
7+
{
8+
"name": "Awescode GmbH",
9+
"email": "[email protected]",
10+
"homepage": "https://www.awescode.de",
11+
"role": "Owner"
12+
},
13+
{
14+
"name": "Galymzhan Begimov",
15+
"email": "[email protected]",
16+
"homepage": "https://github.com/begimov"
17+
}
18+
],
19+
"support": {
20+
"email": "[email protected]"
21+
},
22+
"homepage": "https://github.com/awes-io/localization-helper",
23+
"keywords": ["Laravel", "php", "localization", "language", "locale", "translation"],
1424
"require": {
1525
"illuminate/support": "~5"
1626
},
@@ -32,7 +42,7 @@
3242
}
3343
},
3444
"scripts": {
35-
"test": "vendor/bin/phpunit --colors=always"
45+
"test": "vendor/bin/phpunit --colors=always --configuration phpunit.xml.dist --debug"
3646
},
3747
"extra": {
3848
"laravel": {

tests/UsageTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class StringUsageTest extends TestCase
1717
/**
1818
* set up test environmemt
1919
*/
20-
public function setUp()
20+
public function setUp() :void
2121
{
2222
parent::setUp();
2323

0 commit comments

Comments
 (0)