-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
55 lines (55 loc) · 1.54 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
{
"name": "alexgiuvara/imgproxy",
"description": "Laravel Service Provider for imgproxy: Resize your images instantly and securely",
"keywords": ["laravel","resize","image","proxy","imgproxy","micro-service"],
"homepage": "https://github.com/alexgiuvara/imgproxy",
"license" : "MIT",
"authors": [
{
"name": "Alex Giuvara",
"homepage": "https://github.com/alexgiuvara",
"role": "Developer"
}
],
"require": {
"php": ">=7.0"
},
"require-dev": {
"orchestra/testbench": "^3.5",
"phpspec/phpspec": "^4.3",
"karriere/phpspec-matchers": "^2.0",
"mockery/mockery": "^1.0",
"friendsofphp/php-cs-fixer": "^2.10"
},
"autoload": {
"psr-0": {
"AlexGiuvara\\ImgProxy": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": [
"vendor/bin/phpspec run --format=pretty",
"vendor/bin/phpunit --color=always"
],
"circle-ci": [
"vendor/bin/phpspec run --format=pretty",
"vendor/bin/phpunit --color=always --log-junit ~/phpunit/junit.xml --coverage-html ./report tests"
],
"fmt": "vendor/bin/php-cs-fixer fix --diff --ansi src"
},
"extra": {
"laravel": {
"providers": [
"AlexGiuvara\\ImgProxy\\ImgProxyServiceProvider"
]
}
}
}