-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.58 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.58 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "codevelopers/fullstack",
"type": "project",
"license": "MIT",
"description": "WordPress stack developed with symfony packages and integrated with Composer",
"homepage": "https://github.com/egarofalo/fullstack",
"authors": [
{
"name": "Lic. Edgardo Garofalo",
"email": "egarofalo83@gmail.com",
"homepage": "https://github.com/egarofalo",
"role": "Developer"
}
],
"keywords": [
"symfony",
"wordpress"
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": "^7.2",
"johnpbloch/wordpress": "^5.7.2",
"wpackagist-theme/twentytwentyone": "^1.3"
},
"require-dev": {
"symfony/console": "^4.4.10",
"symfony/process": "^4.4.10",
"symfony/filesystem": "^4.4.10",
"symfony/finder": "^4.4.10",
"cocur/slugify": "^4.0.0"
},
"extra": {
"wordpress-install-dir": "public/wp",
"installer-paths": {
"public/content/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"public/content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"public/content/themes/{$name}/": [
"type:wordpress-theme"
]
}
},
"autoload": {
"psr-4": {
"Codevelopers\\Fullstack\\Config\\": "config",
"Codevelopers\\Fullstack\\Console\\": "console"
}
},
"scripts": {
"post-create-project-cmd": "Codevelopers\\Fullstack\\Config\\ComposerSetup::postCreateProject",
"post-install-cmd": "Codevelopers\\Fullstack\\Config\\ComposerSetup::postInstall",
"post-update-cmd": "Codevelopers\\Fullstack\\Config\\ComposerSetup::postUpdate"
}
}