-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 2.68 KB
/
composer.json
File metadata and controls
96 lines (96 loc) · 2.68 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "solsoft/phpmyadmin-boilerplate",
"description": "Boilerplate for deploying new phpMyAdmin projects",
"keywords": [ "phpmyadmin", "boilerplate", "composer" ],
"homepage": "http://sol-soft.org/",
"support": {
"source": "https://github.com/solsoft/phpmyadmin-boilerplate",
"docs": "https://github.com/solsoft/phpmyadmin-boilerplate/wiki",
"wiki": "https://github.com/solsoft/phpmyadmin-boilerplate/wiki",
"issues": "https://github.com/solsoft/phpmyadmin-boilerplate/issues",
"email": "info@sol-soft.org"
},
"type": "project",
"license": [
"GPL-3.0+"
],
"authors": [
{
"name": "Luís Pedro Algarvio",
"email": "lp.algarvio@gmail.com",
"homepage": "http://lp.algarvio.org",
"role": "DevOps"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"vendor-dir": "vendor",
"preferred-install": "dist",
"secure-http": true,
"github-protocols": [ "https", "git", "ssh" ]
},
"extra": {
"merge-plugin": {
"include": [
"app/composer.json",
"composer/composer.local.json"
],
"recurse": false,
"replace": false,
"merge-dev": true,
"merge-extra": true,
"merge-scripts": true
},
"installer-paths": {
"app/": ["phpmyadmin/phpmyadmin"]
},
"preserve-paths": [
"app/config.inc.php"
]
},
"scripts": {
"post-install-cmd": [
"if [ -d vendor/ ]; then find vendor/ -type d | grep .git | xargs rm -Rf; fi",
"if [ -d app/ ]; then find app/ -type d | grep .git | xargs rm -Rf; fi"
],
"post-update-cmd": [
"if [ -d vendor/ ]; then find vendor/ -type d | grep .git | xargs rm -Rf; fi",
"if [ -d app/ ]; then find app/ -type d | grep .git | xargs rm -Rf; fi"
],
"post-create-project-cmd": [
"mv LICENSE LICENSE.composer",
"mv README.md README.composer.md",
"rm -f .gitignore; mv .gitignore.example .gitignore",
"mv composer/composer.local.example.json composer/composer.local.json"
],
"cleanup-project": [
"rm -f composer.lock",
"if [ -d vendor/ ]; then rm vendor/ -Rf; fi",
"if [ -d app/ ]; then rm app/ -Rf; fi"
],
"run": [
"php -S localhost:8080 -t app"
]
},
"autoload": {
},
"repositories": {
"composer": {
"type": "composer",
"url": "https://www.phpmyadmin.net"
}
},
"require": {
"cweagans/composer-patches": "^1.6",
"wikimedia/composer-merge-plugin": "^1.4",
"composer/installers": "^1.2",
"mnsami/composer-custom-directory-installer": "^1.1",
"derhasi/composer-preserve-paths": "^0.1",
"phpmyadmin/phpmyadmin": "^4.7"
},
"require-dev": {
},
"require-disabled": {
}
}