This repository was archived by the owner on Dec 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 2.09 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 2.09 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
{
"name": "bzcoding/bz-contact-php",
"description": "A simple contact form manager for static sites and landing pages",
"keywords": ["form","landing page"],
"homepage": "https://github.com/BZCoding/bz-contact-php",
"license": "MIT",
"authors": [
{
"name": "Vito Tardia / BZ Coding Ltd",
"email": "info@bzcoding.com",
"homepage": "http://bzcoding.com/"
}
],
"scripts": {
"server": "php -S 0.0.0.0:8080 -t app/public app/public/index.php",
"lint": "phpcs --standard=PSR2 --colors --ignore=app/themes/*/assets app tests",
"test": "phpunit",
"assets:install": "app/bin/install/assets",
"post-install-cmd": "@composer assets:install",
"post-update-cmd": "@composer assets:install"
},
"autoload": {
"psr-4": {
"BZContact\\": "app/lib/BZContact",
"MailChimp\\": "app/lib/MailChimp"
}
},
"require": {
"php": "~5.6 || ~7.0",
"ext-mongodb": "^1.0",
"slim/slim": "^3",
"slim/php-view": "^2",
"monolog/monolog": "^1",
"adamwathan/form": "^0.9",
"michelf/php-markdown": "^1",
"vlucas/valitron": "^1",
"akrabat/rka-ip-address-middleware": "^0.4.0",
"symfony/event-dispatcher": "^3",
"swiftmailer/swiftmailer": "^5",
"vlucas/phpdotenv": "^2",
"php-amqplib/php-amqplib": "^2",
"drewm/mailchimp-api": "^2",
"guzzlehttp/guzzle": "^6",
"slim/csrf": "^0.7.0",
"rollbar/rollbar": "~1.1",
"mongodb/mongodb": "^1.1"
},
"archive": {
"exclude": [
".vagrant", "ansible", "coverage", "share", "vendor", "wapiti",
".codeclimate.yml", ".csslintrc", ".DS_Store", "*.log", ".eslintrc",
".eslintignore", ".gitignore", ".slugignore", ".travis.yml", "Vagrantfile"
]
},
"require-dev": {
"squizlabs/php_codesniffer": "^2",
"phpunit/phpunit": "~5.0 || ~6.0",
"heroku/heroku-buildpack-php": "^121",
"codeclimate/php-test-reporter": "^0.4"
}
}