-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.03 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.03 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
{
"name": "complex-heart/contracts",
"description": "Common interfaces for PHP Complex Heart SDK.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Unay Santisteban",
"email": "usantisteban@othercode.io"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2"
},
"require-dev": {
"phpstan/phpstan": "^1.0",
"phpstan/extension-installer": "^1.3",
"laravel/pint": "^1.25",
"pestphp/pest": "^3.8.4",
"pestphp/pest-plugin-arch": "^3.1.1"
},
"autoload": {
"psr-4": {
"ComplexHeart\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/pest --configuration=phpunit.xml --coverage --coverage-clover=coverage.xml --log-junit=test.xml",
"analyse": "vendor/bin/phpstan analyse src --no-progress --memory-limit=4G --level=9",
"pint-test": "vendor/bin/pint --preset=psr12 --test",
"pint": "vendor/bin/pint --preset=psr12"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
}
}