-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
115 lines (115 loc) · 3.07 KB
/
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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "bluzphp/skeleton",
"description": "Skeleton application for Bluz, a lightweight PHP framework",
"minimum-stability": "dev",
"type": "library",
"require": {
"php": ">=7.4",
"ext-gd": "*",
"ext-json": "*",
"bluzphp/bluzman": "~2.5",
"bluzphp/framework": "~7.13",
"bluzphp/composer-plugin": "~2.4",
"phpmailer/phpmailer": "~6.5",
"zircote/swagger-php": "~3.2",
"twbs/bootstrap": "~5.1",
"robmorgan/phinx": "~0.12",
"public/bootstrap-icons": "dev-master",
"public/swagger-ui": "dev-master",
"public/jquery": "dev-master"
},
"require-dev": {
"codeception/codeception": "~4.1",
"codeception/module-asserts": "~1.3",
"codeception/module-phpbrowser": "~1.0",
"codeception/module-rest": "dev-master",
"laminas/laminas-dom": "~2.13",
"php-coveralls/php-coveralls": "~2.4",
"squizlabs/php_codesniffer": "~3.6"
},
"repositories": [
{
"type": "package",
"package": {
"name": "public/swagger-ui",
"version": "dev-master",
"license": "Apache-2.0",
"dist":{
"url":"https://github.com/swagger-api/swagger-ui/archive/refs/tags/v4.1.3.zip",
"type":"zip"
},
"extra": {
"any":"value"
}
}
},
{
"type": "package",
"package": {
"name": "public/bootstrap-icons",
"version": "dev-master",
"license": "MIT",
"dist":{
"url":"https://github.com/twbs/icons/archive/refs/tags/v1.7.2.zip",
"type":"zip"
},
"extra": {
"any":"value"
}
}
},
{
"type": "package",
"package": {
"name": "public/jquery",
"version": "dev-master",
"license": "MIT",
"dist": {
"url": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js",
"type": "file"
}
}
}
],
"config": {
"allow-plugins": {
"bluzphp/composer-plugin": true
},
"vendor-dir": "vendor"
},
"autoload": {
"psr-4": {
"": "application/library",
"Application\\": "application/models"
},
"files": [
"application/_functions.php",
"application/_loader.php"
]
},
"scripts": {
"post-create-project-cmd": "php bin/install.php",
"serve": "php -S 0.0.0.0:8080 -t ./public ./public/routing.php"
},
"extra": {
"copy-files": {
"twbs/bootstrap/dist/": "public/vendor/bootstrap",
"public/swagger-ui/dist/": "public/api/",
"public/jquery/": "public/vendor/jquery",
"public/require/": "public/vendor/require",
"public/bootstrap-icons/font/bootstrap-icons.css": "public/vendor/bootstrap/css/bootstrap-icons.css",
"public/bootstrap-icons/font/fonts": "public/vendor/bootstrap/css/fonts"
}
},
"authors": [
{
"name": "Bluz Skeleton Contributors",
"homepage": "https://github.com/bluzphp/skeleton/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/bluzphp/skeleton/issues",
"wiki": "https://github.com/bluzphp/skeleton/wiki"
},
"license": "MIT"
}