-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
75 lines (74 loc) · 2.28 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
{
"name": "wiejakp/image-crop",
"description": "Image cropping helper for PHP.",
"type": "library",
"keywords": ["php", "library", "image"],
"homepage": "https://github.com/wiejakp/ImageCrop",
"license": "MIT",
"authors": [
{
"name": "Przemek Wiejak",
"email": "[email protected]",
"homepage": "https://www.wiejak.app"
}
],
"support": {
"docs": "https://wiejakp.github.io/ImageCrop/",
"issues": "https://github.com/wiejakp/ImageCrop/issues",
"rss": "https://github.com/wiejakp/ImageCrop/releases.atom",
"source": "https://github.com/wiejakp/ImageCrop.git",
"wiki": "https://github.com/wiejakp/ImageCrop/wiki"
},
"require": {
"php": ">=7.2.0",
"data-uri/data-uri": "^0.2.5"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3.9",
"jakub-onderka/php-parallel-lint": "^1",
"mockery/mockery": "^1",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-mockery": "^0.11",
"phpunit/phpunit": "^8.3",
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"psr-4": {
"wiejakp\\ImageCrop\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"wiejakp\\ImageCrop\\Test\\": "tests/"
}
},
"scripts": {
"lint": "parallel-lint src tests",
"phpcs": [
"phpcs --config-set installed_paths vendor/escapestudios/symfony2-coding-standard",
"phpcs src tests --standard=symfony -sp --colors"
],
"phpstan": [
"phpstan analyse src -c phpstan.neon --level max --no-progress",
"phpstan analyse tests -c phpstan.neon --level 4 --no-progress"
],
"phpunit": "phpunit --verbose --colors=always",
"phpunit-ci": "phpunit --verbose --coverage-clover build/logs/clover.xml",
"phpunit-coverage": "phpunit --verbose --colors=always --coverage-html build/coverage",
"test": [
"@lint",
"@phpcs",
"@phpstan",
"@phpunit"
],
"test-ci": [
"@lint",
"@phpcs",
"@phpstan",
"@phpunit-ci"
]
},
"config": {
"sort-packages": true
}
}