-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.56 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
{
"name": "geekcell/imagekit-bundle",
"description": "A Symfony bundle for Imagekit integration",
"type": "symfony-bundle",
"version": "1.0.4",
"license": "MIT",
"authors": [
{
"name": "Christian Kappen",
"email": "christian.kappen@geekcell.io",
"homepage": "https://geekcell.io"
},
{
"name": "Pascal Cremer",
"email": "pascal.cremer@geekcell.io",
"homepage": "https://geekcell.io"
}
],
"require": {
"imagekit/imagekit": "^3.0",
"symfony/http-kernel": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/config": "^6.0",
"symfony/string": "^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"mockery/mockery": "^1.5",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-mockery": "^1.1",
"phpunit/phpunit": "^9.5",
"symfony/framework-bundle": "^6.0",
"symfony/yaml": "^6.0"
},
"autoload": {
"psr-4": {
"GeekCell\\ImagekitBundle\\": "src/",
"GeekCell\\ImagekitBundle\\Tests\\": "tests/",
"ImageKit\\": "vendor/imagekit/imagekit/src/ImageKit"
}
},
"scripts": {
"gc:tests": "phpunit --testdox --colors=always",
"gc:cs-lint": "php-cs-fixer fix --config .php-cs-fixer.php --diff -vvv --dry-run",
"gc:cs-fix": "php-cs-fixer fix --config .php-cs-fixer.php -vvv || true",
"gc:phpstan": "phpstan analyse --memory-limit=2G --no-progress --level=8"
}
}