generated from spatie/package-skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
61 lines (61 loc) · 1.67 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
{
"name": "seisigmasrl/lemonsqueezy-php",
"description": "Lemon Squeezy API client for PHP",
"keywords": [
"seisigmasrl",
"ricardov03",
"lemonsqueezy-php"
],
"homepage": "https://github.com/seisigmasrl/lemonsqueezy.php",
"license": "MIT",
"authors": [
{
"name": "Ricardo Vargas",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"nyholm/psr7": "^1.5",
"php-http/client-common": "^2.6",
"php-http/discovery": "^1.15",
"php-http/httplug": "^2.3",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*",
"psr/http-message": "^1.0",
"symfony/http-client": "^6.2",
"symfony/polyfill-php82": "^1.27"
},
"require-dev": {
"pestphp/pest": "^2.0",
"friendsofphp/php-cs-fixer": "^3.13",
"spatie/ray": "^1.28"
},
"autoload": {
"psr-4": {
"LemonSqueezy\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LemonSqueezy\\LemonSqueezy\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}