-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
43 lines (43 loc) · 969 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
41
42
43
{
"name": "thephpf/thephp.foundation",
"description": "A website thephp.foundation",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "PHP Foundation",
"email": "[email protected]",
"homepage": "https://thephp.foundation"
}
],
"require": {
"php": "^8.3",
"ext-gd": "*",
"ext-dom": "*",
"sculpin/sculpin": "3.3.0-alpha3",
"symfony/process": "^6.4|^7.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"scripts": {
"sculpin-watch": [
"Composer\\Config::disableProcessTimeout",
"sculpin generate --watch --server"
],
"npx-watch": [
"Composer\\Config::disableProcessTimeout",
"npx tailwind -i assets/css/app.css -o source/assets/css/app.css --watch"
]
},
"config": {
"allow-plugins": {
"sculpin/sculpin-theme-composer-plugin": true
}
},
"autoload": {
"psr-4": {
"App\\": "app/src"
}
}
}