-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
40 lines (40 loc) · 1.02 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
{
"name": "timacdonald/alfresco",
"license": "MIT",
"authors": [
{
"name": "Tim MacDonald",
"email": "[email protected]"
}
],
"require": {
"php": "8.3.*",
"illuminate/config": "^11",
"illuminate/container": "^11",
"illuminate/filesystem": "^11",
"illuminate/support": "^11",
"illuminate/translation": "^11",
"laravel/pint": "^1.18",
"laravel/serializable-closure": "^1.3",
"spatie/shiki-php": "^1.3",
"symfony/process": "^7.1",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"symfony/var-dumper": "^6.2",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"autoload": {
"psr-4": {
"Alfresco\\": "src"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}