forked from ThePHPF/thephp.foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 950 Bytes
/
composer.json
File metadata and controls
46 lines (46 loc) · 950 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "thephpf/thephp.foundation",
"description": "A website thephp.foundation",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "PHP Foundation",
"email": "contact@thephp.foundation",
"homepage": "https://thephp.foundation"
}
],
"require": {
"php": "^8.0",
"sculpin/sculpin": "^3.1",
"twig/twig": "2.15.3",
"ext-gd": "*",
"ext-dom": "*"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"scripts": {
"publish": [
"./publish.sh"
],
"sculpin-watch": [
"Composer\\Config::disableProcessTimeout",
"sculpin generate --watch --server"
],
"yarn-watch": [
"Composer\\Config::disableProcessTimeout",
"yarn encore dev --watch"
]
},
"config": {
"allow-plugins": {
"sculpin/sculpin-theme-composer-plugin": true
}
},
"autoload": {
"psr-4": {
"App\\": "app/src"
}
}
}