-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
43 lines (43 loc) · 1.11 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
{
"name": "pierrehenry/buy-me-acoffee-clone",
"description": "Lightweight item promotion crowdfunding Web application.",
"type": "project",
"license": "MIT",
"homepage": "https://pierrehenry.be",
"authors": [
{
"name": "Pierre-Henry Soria",
"email": "hi@ph7.me"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"require": {
"php": ">= 8.0",
"ph-7/materialize-css": "^1.0",
"ph-7/ph2gravatar": "^2.0",
"symfony/dotenv": "^6.0",
"symfony/mailer": "^6.0",
"symfony/templating": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"GetMeALatteLike\\": "src"
},
"files": ["src/helpers.php"]
},
"scripts": {
"post-cmd": [
"cp -Rf vendor/ph-7/materialize-css/dist/* assets/materialize"
],
"post-install-cmd": ["@post-cmd"],
"post-update-cmd": ["@post-cmd"],
"test": "vendor/bin/phpunit"
}
}