-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
95 lines (95 loc) · 2.59 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "mjaschen/collmex",
"description": "Collmex PHP SDK",
"license": "MIT",
"keywords": [
"collmex",
"api"
],
"authors": [
{
"name": "Marcus Jaschen",
"email": "[email protected]",
"homepage": "https://marcusjaschen.de/",
"role": "maintainer and developer"
},
{
"name": "Oliver Klee",
"email": "[email protected]",
"homepage": "https://www.oliverklee.de/",
"role": "developer"
}
],
"support": {
"issues": "https://github.com/mjaschen/collmex/issues",
"source": "https://github.com/mjaschen/collmex"
},
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-zip": "*",
"symfony/finder": "^5.4 || ^6.4 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.4 || ^7.0",
"symfony/mime": "^5.4 || ^6.4 || ^7.0",
"symfony/string": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"dereuromark/composer-prefer-lowest": "^0.1.10",
"ergebnis/composer-normalize": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"laravel/framework": ">=7.2",
"mockery/mockery": "^1.6",
"moneyphp/money": "^4.0",
"phpunit/phpunit": "^10.0",
"rector/rector": "^1.0.3",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^5.0"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"MarcusJaschen\\Collmex\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MarcusJaschen\\Collmex\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"preferred-install": {
"*": "dist"
}
},
"extra": {
"laravel": {
"providers": [
"MarcusJaschen\\Collmex\\CollmexServiceProvider"
]
}
},
"scripts": {
"ci": [
"@ci:static",
"@ci:dynamic"
],
"ci:dynamic": [
"@ci:tests"
],
"ci:lint": "find config src tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:psalm": "./vendor/bin/psalm",
"ci:sniff": "./vendor/bin/phpcs config/ src/ tests/",
"ci:static": [
"@ci:lint",
"@ci:sniff",
"@ci:psalm"
],
"ci:tests": "./vendor/bin/phpunit tests/",
"fix:php-cs": "./vendor/bin/php-cs-fixer fix"
}
}