-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.02 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": "dnj/isomaker",
"description": "A library for make ISO files customize",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"dnj\\IsoMaker\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"dnj\\IsoMaker\\tests\\": "tests"
}
},
"require": {
"php": "^7.4|^8.0",
"symfony/process": "^5.1.4",
"dnj/tmp-filesystem": "^1.0",
"spatie/enum": "^3.9",
"psr/log": "^1|^2|^3"
},
"require-dev": {
"phpstan/phpstan": "^0.12.85",
"phpunit/phpunit": "^9.5",
"dnj/tmp-filesystem": "^1.0",
"friendsofphp/php-cs-fixer": "^3.1"
},
"scripts": {
"test:types": "./vendor/bin/phpstan analyse",
"test:phpunit": "vendor/bin/phpunit",
"test:codestyle": "vendor/bin/php-cs-fixer fix -v --dry-run --stop-on-violation --using-cache=no",
"test": [
"@test:types",
"@test:phpunit",
"@test:codestyle"
]
}
}