-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
94 lines (94 loc) · 2.46 KB
/
Copy pathcomposer.json
File metadata and controls
94 lines (94 loc) · 2.46 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "scell/sdk",
"description": "SDK PHP officiel pour l'API Scell.io - Facturation electronique (Factur-X/UBL/CII) et signature electronique (eIDAS EU-SES)",
"keywords": [
"scell",
"facturx",
"ubl",
"cii",
"eidas",
"signature",
"invoice",
"api",
"sdk",
"france",
"b2b",
"electronic-invoice"
],
"homepage": "https://scell.io",
"license": "MIT",
"type": "library",
"readme": "README.md",
"authors": [
{
"name": "Scell.io Team",
"email": "dev@scell.io",
"homepage": "https://scell.io"
}
],
"support": {
"email": "support@scell.io",
"issues": "https://github.com/scell-io/sdk-php/issues",
"source": "https://github.com/scell-io/sdk-php",
"docs": "https://docs.scell.io"
},
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.0",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"mockery/mockery": "^1.6",
"orchestra/testbench": "^9.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.0"
},
"suggest": {
"illuminate/support": "Required for Laravel integration (^11.0 || ^12.0)"
},
"autoload": {
"psr-4": {
"Scell\\Sdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Scell\\Sdk\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Scell\\Sdk\\Laravel\\ScellServiceProvider"
],
"aliases": {
"Scell": "Scell\\Sdk\\Laravel\\Facades\\Scell"
}
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"analyse": "phpstan analyse --configuration=phpstan.neon.dist",
"check": [
"@analyse",
"@test"
]
},
"scripts-descriptions": {
"test": "Run PHPUnit tests",
"test-coverage": "Run tests with HTML coverage report",
"analyse": "Run PHPStan static analysis",
"check": "Run all checks (analyse + test)"
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}