-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 1003 Bytes
/
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
{
"name": "bahiazul/spanish-guest-report-generator",
"type": "library",
"description": "\"Spanish Guest Report Generator\" is an utility for hotels and other hospitality establishments to generate a report of all its newly arrived guests, that must be handed daily to the Spanish National Police or Civil Guard, as mandated by law.",
"keywords": [
"parte-viajeros",
"guardia-civil",
"hospederia",
"policia",
"hoteles"
],
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": ">= 5.6.0"
},
"require-dev": {
"phpunit/phpunit": "5.5.*",
"phpunit/php-invoker": "*",
"mikey179/vfsstream": "~1"
},
"authors": [
{
"name": "Javier Zapata",
"email": "[email protected]",
"homepage": "https://javi.io/"
}
],
"autoload": {
"psr-4": {
"SpanishGuestReportGenerator\\": "src/"
}
}
}