This repository has been archived by the owner on Sep 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
80 lines (80 loc) · 2.56 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "jbelien/mailchimp-osm",
"type": "project",
"description": "",
"keywords": [],
"license": "GPL-3.0-or-later",
"require": {
"php": "^7.1",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "6.5.5",
"jhut89/mailchimp3php": "3.2.3",
"laminas/laminas-component-installer": "2.3.2",
"laminas/laminas-config-aggregator": "1.3.0",
"laminas/laminas-dependency-plugin": "^1.0",
"laminas/laminas-diactoros": "2.4.1",
"laminas/laminas-servicemanager": "3.5.2",
"laminas/laminas-stdlib": "3.2.1",
"mezzio/mezzio": "3.2.2",
"mezzio/mezzio-fastroute": "3.0.3",
"mezzio/mezzio-helpers": "5.3.0",
"mezzio/mezzio-twigrenderer": "2.6.1"
},
"require-dev": {
"filp/whoops": "^2.1.12",
"laminas/laminas-development-mode": "^3.1",
"mezzio/mezzio-tooling": "^1.0",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^7.0.1",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.3.2"
},
"config": {
"sort-packages": true
},
"extra": {
"zf": {
"component-whitelist": [
"mezzio/mezzio",
"mezzio/mezzio-helpers",
"mezzio/mezzio-router",
"laminas/laminas-httphandlerrunner",
"mezzio/mezzio-fastroute",
"mezzio/mezzio-twigrenderer"
]
}
},
"autoload": {
"psr-4": {
"App\\": "src/App/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/"
}
},
"scripts": {
"post-create-project-cmd": [
"@development-enable"
],
"analyze": "phpstan analyze -l max -c ./phpstan.installer.neon ./src ./config",
"check": [
"@cs-check",
"@test",
"@analyze"
],
"clear-config-cache": "php bin/clear-config-cache.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",
"expressive": "expressive --ansi",
"serve": "php -S 0.0.0.0:8080 -t public/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"update-data-cache": "php bin/update-data-cache.php"
}
}