-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.45 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.45 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "localgod/karla",
"description": "ImageMagick wrapper",
"type": "library",
"authors": [
{
"name": "Johannes Skov Frandsen",
"email": "jsf@greenoak.dk",
"homepage": "https://github.com/localgod",
"role": "Lead"
}
],
"keywords": [
"imagemagick",
"image",
"image-processing",
"image-manipulation",
"graphics",
"php"
],
"scripts": {
"test": "@unit",
"unit": "phpunit --testdox --configuration ./tests/unit/phpunit.xml",
"cs": "phpcs",
"cs-fix": "phpcbf",
"phpstan": "phpstan analyse",
"clean": [
"@php -r \"file_exists('junit.xml') && unlink('junit.xml');\"",
"@php -r \"file_exists('clover.xml') && unlink('clover.xml');\"",
"@php -r \"is_dir('html-coverage') && rmdir('html-coverage');\""
]
},
"homepage": "https://localgod.github.io/karla/",
"license": "MIT",
"require": {
"php": "^8.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^4.0"
},
"autoload": {
"psr-4": {
"Karla\\": "src/Karla/"
}
},
"autoload-dev": {
"psr-4": {
"Karla\\Tests\\": "tests/unit/"
}
},
"minimum-stability": "stable",
"support": {
"source": "https://github.com/localgod/karla",
"issues": "https://github.com/localgod/karla/issues",
"wiki": "https://github.com/localgod/karla/wiki"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist",
"bin-dir": "bin/",
"vendor-dir": "vendor/"
}
}