forked from timacdonald/alfresco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1001 Bytes
/
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": "hello@timacdonald.me"
}
],
"require": {
"php": "8.3.*",
"illuminate/config": "^10.48",
"illuminate/container": "^10.48",
"illuminate/support": "^10.6",
"spatie/once": "^3.1",
"spatie/shiki-php": "^1.3",
"thecodingmachine/safe": "^2.5"
},
"autoload": {
"psr-4": {
"Alfresco\\": "src"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"pestphp/pest": "^2.5",
"phpstan/phpstan": "^1.10",
"symfony/var-dumper": "^6.2",
"thecodingmachine/phpstan-safe-rule": "^1.2"
}
}