-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
74 lines (72 loc) · 1.88 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
{
"name": "fval/springy",
"description": "Springy",
"license": "MIT",
"type": "project",
"config": {
"vendor-dir": "vendor"
},
"authors": [
{
"name": "Fernando Val",
"homepage": "http://fval.com.br",
"role": "Developer"
}
],
"extra": {
"installer-paths": {
"vendor/{$name}": ["vendor/package"]
},
"post-install": {
"components/jquery": {
"target": "www/assets/jquery",
"files": "jquery.min.js"
},
"twbs/bootstrap": {
"target": "www/assets/bootstrap",
"files": [
"dist/css/*",
"dist/js/*",
"dist/fonts/*"
]
}
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "~10.5"
},
"require": {
"php": ">=8.1",
"smarty/smarty": "^4.3",
"twig/twig": "^2.15",
"ircmaxell/password-compat": "^1.0",
"matthiasmullie/minify": "^1.3",
"sendgrid/sendgrid": "^7.8",
"phpmailer/phpmailer": "^6.0",
"vlucas/phpdotenv": "^5.6",
"components/jquery": "~3.1"
},
"autoload": {
"files": ["springy/Core/helpers.php"],
"psr-4": {
"App\\": "app/",
"Springy\\": "springy/"
}
},
"scripts": {
"components": "php -f components.php",
"phpcs": "phpcs",
"phpcbf" : "phpcbf app",
"phpunit" : "phpunit",
"phpmd" : "phpmd . html codesize.xml > phpmd.html",
"test": [
"@phpcs",
"@phpmd",
"@phpunit"
],
"read-me": "Adds @components post-install-cmd and post-update-cmd if needed"
},
"repositories": []
}