-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.6 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.6 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
{
"name": "litebase/litebase-php",
"description": "Litebase PHP SDK",
"homepage": "https://litebase.com",
"license": "MIT",
"authors": [
{
"name": "Litebase",
"email": "dev@litebase.com"
}
],
"autoload": {
"psr-4": {
"Litebase\\": "src/",
"Litebase\\OpenAPI\\": "api/src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.4",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.9",
"guzzlehttp/psr7": "^1.7 || ^2.0",
"ramsey/uuid": "^4.9"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.5",
"illuminate/database": "^11.0|^12.0",
"laravel/pint": "^1.25",
"mockery/mockery": "^1.6.10",
"pestphp/pest": "^4.1",
"phpstan/phpstan": "^2.1"
},
"scripts": {
"generate_open_api": "openapi-generator-cli generate -c openapi_config.yaml",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon --memory-limit=512M src tests",
"pint": "vendor/bin/pint --no-interaction",
"test": "vendor/bin/pest tests/Unit",
"test-integration": "vendor/bin/pest tests/Integration",
"test-coverage": "vendor/bin/pest --coverage-html coverage"
}
}