-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.1 KB
/
Copy pathcomposer.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"name": "rachyharkov/codeigniter4-media",
"description": "Codeigniter 4 library for managing file or media and handling upload behavior",
"keywords": [
"codeigniter",
"codeigniter4",
"php7",
"php8",
"php-library",
"codeigniter upload",
"upload media",
"library media",
"media management",
"media handler",
"media upload",
"media"
],
"homepage": "https://github.com/rachyharkov/codeigniter4-media",
"require": {
"php": ">=7.3"
},
"require-dev": {
"codeigniter4/framework": "^4"
},
"license": "MIT",
"authors": [
{
"name": "Rachmad Nur Hayat",
"email": "rachmadnurhayat@gmail.com",
"homepage": "https://rachmad.dev",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Rachyharkov\\CodeigniterMedia\\": "src"
}
},
"scripts" : {
"post-update-cmd": [
"composer dump-autoload",
"php spark migrate:latest -n all"
]
}
}