-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 1.88 KB
/
composer.json
File metadata and controls
76 lines (76 loc) · 1.88 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
{
"name": "lanos/php-bfl",
"description": "PHP SDK for Black Forest Labs' FLUX API - Professional image generation toolkit",
"type": "library",
"license": "MIT",
"keywords": [
"black-forest-labs",
"flux",
"ai",
"image-generation",
"api",
"sdk",
"php"
],
"homepage": "https://github.com/l4nos/php-bfl",
"authors": [
{
"name": "Lanos",
"homepage": "https://github.com/l4nos"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-client": "^1.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7",
"friendsofphp/php-cs-fixer": "^3.0",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Lanos\\PHPBFL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lanos\\PHPBFL\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"phpstan": "phpstan analyse src --level=max",
"cs-fix": "php-cs-fixer fix",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"security-audit": "composer audit --no-dev",
"check-all": [
"@test",
"@phpstan",
"@cs-check"
],
"fix-all": [
"@cs-fix"
]
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
}
}
}