-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 1.01 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
{
"name": "femtopixel/crop",
"description": "PHP Component to resize images from a configuration file",
"require": {
"php": "^8.0"
},
"require-dev": {
"phpmd/phpmd": "^2.4",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.0",
"sebastian/phpcpd": "^6.0",
"phploc/phploc": "^7.0",
"codeclimate/php-test-reporter": "^0.4"
},
"autoload": {
"psr-4": {
"FemtoPixel\\Crop\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FemtoPixel\\Crop\\Tests\\": "tests/"
}
},
"scripts": {
"phpunit": "phpunit",
"phpcs": "phpcs src --standard=PSR2 --report-checkstyle=build/logs/checkstyle.xml",
"phploc": "phploc src --log-csv build/logs/phploc.csv",
"phpmd": "phpmd src xml codesize,controversial,cleancode,design,naming,unusedcode --reportfile build/logs/checkstyle.xml",
"phpcpd": "phpcpd src --log-pmd=build/logs/cpd.xml"
},
"license": "MIT",
"authors": [
{
"name": "Jay MOULIN",
"email": "[email protected]"
}
]
}