-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·54 lines (44 loc) · 1.18 KB
/
composer.json
File metadata and controls
executable file
·54 lines (44 loc) · 1.18 KB
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
{
"name": "germania-kg/geodata",
"description": "Interfaces and traits for geo data",
"license": "MIT",
"authors": [
{
"name": "Carsten Witt",
"email": "admin@germania-kg.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Germania\\GeoData\\": "src"
}
},
"require": {
"php": "^7.4|^8.0",
"guzzlehttp/guzzle": "^6.0|^7.0"
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/src"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0|^3.0",
"php-coveralls/php-coveralls": "^2.0",
"phpunit/phpunit": "^8.0|^9.0",
"phpspec/prophecy-phpunit": "^2.0",
"spatie/phpunit-watcher": "^1.8",
"phpstan/phpstan": "^1.9"
},
"scripts": {
"phpcs": "php-cs-fixer fix --verbose --diff --dry-run src/",
"phpcs:apply": "php-cs-fixer fix --verbose --diff src/",
"phpunit" : "phpunit --testdox",
"watch" : "phpunit-watcher watch --testsuite unit --testdox",
"test": [
"@phpcs",
"@phpunit"
]
}
}