-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 2.03 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "ducargo/laravel-unlocodes",
"description": "World-wide UNLOCODE data and management",
"type": "laravel-package",
"authors": [
{
"name": "Alexander Hofstede",
"homepage": "https://ducargo.com",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Dc\\Unlocodes\\": "src/",
"Dc\\Unlocodes\\Seeds\\": "src/database/seeds/"
}
},
"autoload-dev": {
"psr-4": {
"Dc\\Unlocodes\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4.0|^8.0",
"flynsarmy/csv-seeder": "^2.0.2",
"illuminate/support": ">6",
"frictionlessdata/datapackage": "^1.0.0",
"datasets/un-locode": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^8.2.3",
"mockery/mockery": "^1.2.0",
"orchestra/testbench": "^6.23.2",
"php-coveralls/php-coveralls": "^2.1"
},
"repositories": [
{
"type": "package",
"package": {
"name": "datasets/un-locode",
"version": "dev-master",
"source": {
"url": "https://github.com/datasets/un-locode.git",
"type": "git",
"reference": "master"
}
}
}
],
"extra": {
"laravel": {
"providers": [
"Dc\\Unlocodes\\UnlocodesServiceProvider"
],
"aliases": {
"Unlocode": "Dc\\Unlocodes\\Facades\\Unlocode"
}
}
},
"scripts": {
"test": "php ./vendor/phpunit/phpunit/phpunit --configuration ./phpunit.xml",
"test-coverage": "php ./vendor/phpunit/phpunit/phpunit --configuration ./phpunit.xml --coverage-clover coverage/coverage-clover.xml",
"test-coverage-report": "php ./vendor/phpunit/phpunit/phpunit --configuration ./phpunit.xml --coverage-html 'clover_html'"
},
"minimum-stability": "dev",
"prefer-stable": true
}