-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.86 KB
/
Copy pathcomposer.json
File metadata and controls
71 lines (71 loc) · 1.86 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "pionect/visma-sdk",
"license": "MIT",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "path",
"url": "../saloon-sdk-generator"
}
],
"authors": [
{
"name": "Tomas van Rijsse",
"email": "tomas@pionect.nl"
}
],
"require": {
"nesbot/carbon": "^2.0 || ^3.0",
"saloonphp/laravel-plugin": "^4.0",
"saloonphp/pagination-plugin": "^2.3",
"saloonphp/saloon": "^4.0",
"spatie/laravel-data": "^4.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.48",
"fakerphp/faker": "^1.23",
"larastan/larastan": "^3.0",
"laravel/boost": "^1.8",
"laravel/pint": "^1.0",
"orchestra/testbench": "^8.0 || ^9.0 || ^10.0",
"pestphp/pest": "^2.0 || ^3.0",
"phpunit/phpunit": "^10.0 || ^11.0",
"timatic/saloon-sdk-generator": "dev-main"
},
"bin": [
"bin/generate-sdk"
],
"autoload": {
"psr-4": {
"Pionect\\VismaSdk\\": "src/",
"Pionect\\VismaSdk\\Factories\\": "Factories/",
"Pionect\\VismaSdk\\Generator\\": "generator/"
}
},
"autoload-dev": {
"psr-4": {
"Pionect\\VismaSdk\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Pionect\\VismaSdk\\Providers\\VismaServiceProvider"
]
}
},
"scripts": {
"analyse": "phpstan analyse --memory-limit=2G",
"coverage": "pest --coverage --coverage-clover coverage.xml",
"format": "pint",
"test": "pest"
}
}