-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.17 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
{
"name": "madebyraygun/pssst",
"description": "A lightweight single-user application to securely submit and retrieve information via the web.",
"version": "0.1.0",
"type": "project",
"keywords" : ["password", "security", "privacy", "php", "web", "application"],
"license" : "MIT",
"require": {
"php": ">=8.2.0",
"vlucas/phpdotenv": "^5.6",
"mailgun/mailgun-php": "^4.3",
"symfony/http-client": "^7.1",
"nyholm/psr7": "^1.8",
"jiripudil/otp": "^1.0",
"bramus/router": "^1.6",
"twig/twig": "^3.0",
"picocss/pico": "^2.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example.dev', '.env');\""
]
},
"support": {
"docs": "https://github.com/madebyraygun/psst/blob/dev/README.md",
"issues": "https://github.com/madebyraygun/psst/issues",
"source": "https://github.com/madebyraygun/psst"
},
"autoload": {
"psr-4": {
"madebyraygun\\pssst\\": "src"
}
}
}