-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 3.53 KB
/
Copy pathcomposer.json
File metadata and controls
84 lines (84 loc) · 3.53 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "geo6/batch-geocoder",
"type": "project",
"description": "Allows you to geocode your dataset of addresses (CSV format)",
"license": "GPL-3.0-or-later",
"require": {
"php": "^7.2 || ^8.0",
"geo6/geocoder-php-bpost-provider": "^1.3",
"geo6/geocoder-php-geo6-provider": "^2.1",
"geo6/geocoder-php-geopunt-provider": "^1.2",
"geo6/geocoder-php-spw-provider": "^1.3",
"geo6/geocoder-php-urbis-provider": "^1.2",
"geo6/php-text-tools": "^1.0",
"geocoder-php/common-http": "^4.3",
"laminas/laminas-component-installer": "^2.3",
"laminas/laminas-config": "^3.3",
"laminas/laminas-config-aggregator": "^1.3",
"laminas/laminas-db": "^2.11",
"laminas/laminas-dependency-plugin": "^2.1",
"laminas/laminas-diactoros": "^2.4",
"laminas/laminas-filter": "^2.9",
"laminas/laminas-i18n": "^2.10",
"laminas/laminas-servicemanager": "^3.5",
"laminas/laminas-validator": "^2.13",
"mezzio/mezzio": "^3.2",
"mezzio/mezzio-fastroute": "^3.0",
"mezzio/mezzio-flash": "^1.0",
"mezzio/mezzio-helpers": "^5.3",
"mezzio/mezzio-platesrenderer": "^2.2",
"mezzio/mezzio-session": "^1.3",
"mezzio/mezzio-session-ext": "^1.7",
"php-http/guzzle6-adapter": "^2.0",
"php-http/message": "^1.11",
"phpoffice/phpspreadsheet": "^1.16"
},
"require-dev": {
"filp/whoops": "^2.2",
"laminas/laminas-development-mode": "^3.2",
"squizlabs/php_codesniffer": "^3.3"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-create-project-cmd": [
"@development-enable",
"@init:sql",
"@gettext:mo"
],
"clear-config-cache": "php bin/clear-config-cache.php",
"clear-data": "php bin/clear-data.php*",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"development-disable": "laminas-development-mode disable",
"development-enable": "laminas-development-mode enable",
"development-status": "laminas-development-mode status",
"gettext": [
"@gettext:po:fr",
"@gettext:po:nl"
],
"gettext:mo": [
"@gettext:mo:fr",
"@gettext:mo:nl"
],
"gettext:mo:fr": "msgfmt -c -o data/locale/fr/messages.mo data/locale/fr/messages.po",
"gettext:mo:nl": "msgfmt -c -o data/locale/nl/messages.mo data/locale/nl/messages.po",
"gettext:po:fr": "mkdir -p data/locale/fr && find templates/ -iname \"*.phtml\" | xargs xgettext --from-code=utf-8 --no-location --sort-by-file --join-existing --keyword=translate --keyword=translatePlural:1,2 --language=PHP --output-dir=data/locale/fr",
"gettext:po:nl": "mkdir -p data/locale/nl && find templates/ -iname \"*.phtml\" | xargs xgettext --from-code=utf-8 --no-location --sort-by-file --join-existing --keyword=translate --keyword=translatePlural:1,2 --language=PHP --output-dir=data/locale/nl",
"init:sql": [
"sudo -u postgres createuser --pwprompt geocode",
"sudo -u postgres psql -f scripts/create-database.sql",
"sudo -u postgres psql -f scripts/create-extension.sql geocode",
"sudo -u postgres psql -f scripts/create-validation.sql geocode"
],
"serve": "php -S 0.0.0.0:8080 -t public/ -d display_errors=1"
}
}