forked from quidage/php8-iptc-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) 路 1 KB
/
Copy pathcomposer.json
File metadata and controls
38 lines (38 loc) 路 1 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
{
"name": "quidage/php8-iptc-manager",
"description": "Allows to manipulate IPTC tags from PHP8.*",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"iBudasov\\Iptc\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"iBudasov\\Iptc\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"friendsofphp/php-cs-fixer": "^2.9",
"phpunit/phpunit": "^8.0"
},
"authors": [
{
"name": "Igor Budasov, Christian Hansen",
"email": "christian@herrhansen.com"
}
],
"scripts": {
"fix": [
"vendor/bin/php-cs-fixer fix src --rules=@Symfony",
"vendor/bin/php-cs-fixer fix tests --rules=@Symfony"
],
"test": "./vendor/bin/phpunit tests",
"test:coverage": "vendor/bin/phpunit tests --coverage-html=var/test-coverage --coverage-clover=clover.xml"
}
}