-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.06 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "mopolo/cv",
"type": "project",
"description": "My portfolio",
"license": "MIT",
"authors": [
{
"name": "Nathan Boiron",
"email": "nathan.boiron@gmail.com"
}
],
"require": {
"php": "8.3.*",
"ext-intl": "*",
"ext-json": "*",
"cuyz/valinor": "1.17.0",
"filp/whoops": "^2.18.4",
"intervention/image": "^3.11.6",
"league/commonmark": "^2.8.0",
"spatie/commonmark-shiki-highlighter": "^2.5.2",
"symfony/config": "^7.4.1",
"symfony/finder": "^7.4.0",
"symfony/translation": "^7.4.0",
"symfony/yaml": "^7.4.1",
"twig/intl-extra": "^3.22.1",
"twig/string-extra": "^3.22.1",
"twig/twig": "^3.22.2"
},
"autoload": {
"psr-4": {
"Mopolo\\Cv\\": "src"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"require-dev": {
"phpstan/phpstan": "2.1.33",
"phpstan/phpstan-strict-rules": "2.0.7"
}
}