-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (41 loc) · 1.09 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
{
"name": "photopress/core",
"description": "WordPress for Photographers",
"keywords": ["WordPress","photpress","photo","photography"],
"homepage": "https://www.photopressdev.com",
"license": "GPL-3.0",
"authors": [
{
"name": "The PhotoPress Team",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"repositories": [
{
"type": "package",
"package": {
"name": "philharvey/exiftool",
"version": "12.30",
"dist": {
"url": "https://exiftool.org/Image-ExifTool-12.30.tar.gz",
"type": "tar"
}
}
}
],
"require": {
"philharvey/exiftool": "12.*"
},
"autoload": {
"psr-4": {"PhotoPress\\": ["./"]},
"classmap": ["framework/"]
},
"scripts": {
"post-install-cmd": [
"php -r \"chmod( __DIR__ . '/vendor/philharvey/exiftool/exiftool', 0755);\""
]
}
}