-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
88 lines (88 loc) · 2.44 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
81
82
83
84
85
86
87
88
{
"name": "publicwhip/publicwhip",
"description": "Publicwhip v2 website",
"type": "project",
"homepage": "https://www.publicwhip.org.uk/",
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-pdo": "*",
"ext-sodium": "*",
"ext-ctype": " *",
"erusev/parsedown": "^1.7",
"illuminate/container": "^5.8",
"illuminate/contracts": "^5.8",
"illuminate/database": "^5.1",
"illuminate/events": "^5.1",
"illuminate/support": "^5.8",
"maximebf/debugbar": "^1.15",
"monolog/monolog": "^1.24",
"php-di/invoker": "^2.0.0",
"php-di/php-di": "^6.0",
"psr/container": "^1",
"psr/http-message": "^1.0",
"psr/log": "^1",
"slim/csrf": "^0.8",
"slim/flash": "^0.4",
"slim/http-cache": "^0.4.0",
"slim/slim": "^3",
"slim/twig-view": "^2",
"swiftmailer/swiftmailer": "^6.2",
"twig/twig": "^2"
},
"require-dev": {
"ext-xdebug": "*",
"doctrine/coding-standard": "^6.0",
"infection/infection": "^0.12",
"jakub-onderka/php-parallel-lint": "^1.0",
"maglnet/composer-require-checker": "^1",
"phpmd/phpmd": "^2",
"phpro/grumphp": "^0.15",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-deprecation-rules": "^0.11.0",
"phpstan/phpstan-phpunit": "^0.11.0",
"phpstan/phpstan-strict-rules": "^0.11",
"phpunit/phpunit": "^8",
"roave/security-advisories": "dev-master",
"sebastian/phpcpd": "^4",
"sensiolabs/security-checker": "^5",
"sirbrillig/phpcs-variable-analysis": "^2.6",
"slevomat/coding-standard": "^5.0",
"squizlabs/php_codesniffer": "^3"
},
"scripts": {
"phpcs": "phpcs --standard=./phpcs.xml -s",
"test": "phpunit",
"phpstan": "phpstan analyse -l 7 -c ./phpstan.neon src",
"phpcbf": "phpcbf --standard=./phpcs.xml",
"phpmd": "phpmd src/,tests/ text ./phpmd.xml",
"grumphp": "grumphp run"
},
"license": "MIT",
"authors": [
{
"name": "Richard Bairwell",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/publicwhip/publicwhipv2/issues",
"docs": "https://github.com/publicwhip/publicwhip/tree/master/docs",
"email": "[email protected]"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"PublicWhip\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PublicWhip\\Tests\\": "tests/",
"PublicWhip\\v1migrationUtils\\": "v1migrationUtils/"
}
},
"minimum-stability": "stable"
}