-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 820 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 820 Bytes
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
{
"name": "fabiodalez-dev/cimaise",
"description": "Minimalist photography CMS (PHP 8.2, Slim 4, Twig, MySQL, Vite, Tailwind, GSAP)",
"type": "project",
"license": "GPL-3.0-only",
"require": {
"php": "^8.2",
"symfony/console": "^6.4",
"vlucas/phpdotenv": "^5.6",
"slim/slim": "^4.12",
"slim/psr7": "^1.6",
"slim/twig-view": "^3.3",
"geoip2/geoip2": "^3.2",
"icamys/php-sitemap-generator": "^5.0",
"google/recaptcha": "^1.3",
"fileeye/pel": "^0.12.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers.php"
]
},
"scripts": {
"test": "phpunit -c phpunit.xml",
"phpstan": "phpstan analyse",
"analyse": "@phpstan"
}
}