-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
109 lines (109 loc) · 3.7 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
{
"name": "imbo/imbo",
"type": "project",
"description": "RESTful image server that handles image storage/transformations and metadata",
"keywords": [ "image storage", "image transformation", "image metadata" ],
"homepage": "http://imbo.io/",
"license": "MIT",
"authors": [
{
"name": "Christer Edvartsen",
"email": "[email protected]",
"role": "Project lead",
"homepage": "https://github.com/christeredvartsen"
}, {
"name": "Contributors",
"homepage": "https://github.com/imbo/imbo/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/imbo/imbo/issues",
"irc": "irc://irc.freenode.net/imbo",
"source": "https://github.com/imbo/imbo",
"docs": "http://docs.imbo.io"
},
"require": {
"php": ">=7.4",
"ext-imagick": "^3.4",
"symfony/http-foundation": "^4.3",
"symfony/console": "^5.1",
"ramsey/uuid": "^3.9",
"guzzlehttp/psr7": "^1.6"
},
"require-dev": {
"ext-mongodb": "^1.6",
"phpunit/phpunit": "^9.2",
"mongodb/mongodb": "^1.6",
"imbo/behat-api-extension": "^2.2",
"doctrine/dbal": "^2.10",
"micheh/psr7-cache": "^0.5",
"christeredvartsen/testfs": "^0.3.0",
"imbo/imbo-filesystem-adapters": "dev-main"
},
"suggest": {
"ext-mongodb": "Enables usage of MongoDB and GridFS as database and image storage. version: ^1.6",
"mongodb/mongodb": "Enables usage of MongoDB and GridFS as database and image storage. Recommended version: ^1.5",
"imbo/imbo-metadata-cache": "Enabled caching of metadata through an event listener. Recommended version ^1.0",
"doctrine/dbal": "Enables usage of using RDMS for storing data (and optionally images). Recommended version: ^2.9",
"imbo/imbo-s3-adapters": "Enables usage of AWS S3 for storing images",
"imbo/imbo-b2-adapters": "Enables usage of Backblaze B2 for storing images",
"imbo/imbo-filesystem-adapters": "Enables usage of a (local) filesystem for storing images",
"imbo/imbo-mongodb-adapters": "Enables usage of MongoDB for storing images"
},
"autoload": {
"psr-4": {
"Imbo\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"features/bootstrap/imbo-configs",
"tests/Storage"
],
"psr-4": {
"Imbo\\": "tests/",
"Imbo\\Behat\\": "features/bootstrap"
}
},
"bin": [
"bin/imbo"
],
"scripts": {
"lint": "for file in `git ls-files '*php'`; do php -l $file; done",
"prepare": [
"rm -rf build",
"mkdir build",
"mkdir build/coverage",
"mkdir build/logs",
"mkdir build/docs"
],
"test:phpunit": "vendor/bin/phpunit --colors=always --verbose",
"test:phpunit:coverage": [
"rm -rf build/coverage",
"mkdir -p build/coverage",
"vendor/bin/phpunit --colors=always --verbose --coverage-html build/coverage --coverage-text"
],
"test:behat": [
"@test:behat:mongodb-gridfs",
"@test:behat:mongodb-filesystem",
"@test:behat:doctrine-sqlite-filesystem",
"@test:behat:doctrine-mysql-filesystem"
],
"test:behat:mongodb-gridfs": "vendor/bin/behat --colors --strict --suite=mongodb-gridfs",
"test:behat:mongodb-filesystem": "vendor/bin/behat --strict --suite=mongodb-filesystem",
"test:behat:doctrine-sqlite-filesystem": "vendor/bin/behat --strict --suite=doctrine-sqlite-filesystem",
"test:behat:doctrine-mysql-filesystem": "vendor/bin/behat --strict --suite=doctrine-mysql-filesystem",
"test": [
"@test:phpunit",
"@test:behat"
],
"docs": [
"cd docs; make spelling",
"cd docs; make html"
],
"dev": [
"mkdir -p build/logs",
"php -S localhost:8080 -t ./public features/bootstrap/router.php > build/logs/httpd.log 2>&1 &"
]
}
}