-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 925 Bytes
/
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
{
"name": "phant/file",
"description": "Manage file easily",
"license": "MIT",
"keywords": ["file manager", "file loader", "file reader", "csv file", "csv reader"],
"authors": [
{
"name": "Lenny ROUANET",
"email": "lennyrouanet@users.noreply.github.com"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.*",
"phpstan/phpstan": "1.*",
"phpunit/phpunit": "9.*"
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix ./ --rules=@PSR12",
"analyse": "vendor/bin/phpstan analyse component --memory-limit=4G",
"test": "vendor/bin/phpunit test --testdox",
"coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html .public/code-coverage"
},
"autoload": {
"psr-4": {
"Phant\\File\\": "component/"
}
}
}