-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.6 KB
/
Copy pathcomposer.json
File metadata and controls
60 lines (60 loc) · 1.6 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "echron/io",
"description": "IO library for PHP",
"homepage": "https://github.com/EchronHQ/IO",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Stijn Duynslaeger"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.9.2",
"echron/tools": "^1.7.0",
"attlaz/adapter-base": "^1.9.10 | dev-develop",
"psr/simple-cache": "^3.0.0",
"psr/log": "^2.0 || ^3.0"
},
"suggest": {
"kunalvarma05/dropbox-php-sdk": "Use the Dropbox client",
"google/apiclient": "Use the Google Drive client",
"aws/aws-sdk-php": "Use the AWS client",
"symfony/cache": "Use Symfony cache clients",
"league/flysystem-ftp": "Use FTP client"
},
"autoload": {
"psr-4": {
"Echron\\IO\\": "src/Echron/IO"
}
},
"require-dev": {
"phpunit/phpunit": "^10.5.28",
"kunalvarma05/dropbox-php-sdk": "^v0.4.1",
"sempro/phpunit-pretty-print": "*",
"phpmd/phpmd": "^2.15.0",
"phpstan/phpstan": "^1.11.8",
"thecodingmachine/phpstan-safe-rule": "^v1.2.0",
"friendsofphp/php-cs-fixer": "^v3.60.0"
},
"require-disabled": {
"google/apiclient": "^v2.12.6"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"process-timeout": 0
},
"repositories": [
{
"type": "composer",
"url": "https://repo.attlaz.com/"
}
],
"scripts": {
"lint:fix": " ./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php",
"phpstan": " ./vendor/bin/phpstan analyse --memory-limit=512M",
"phpstan:generate-baseline": " ./vendor/bin/phpstan analyse --generate-baseline --memory-limit=512M"
}
}