-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
61 lines (61 loc) · 1.45 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": "braze/sdk",
"type": "library",
"description": "Track users, send messages, export data, and more with Braze API.",
"keywords": [
"braze",
"api",
"sdk",
"rest",
"appboy",
"php"
],
"homepage": "https://github.com/braze-community/braze-php",
"license": "MIT",
"authors": [
{
"name": "Mark",
"email": "[email protected]",
"homepage": "https://remarkablemark.org",
"role": "Developer"
}
],
"require": {
"jane-php/open-api-runtime": "7.8.1",
"php": ">=8.0"
},
"require-dev": {
"jane-php/open-api-3": "7.8.1",
"nyholm/psr7": "^1.8",
"friendsofphp/php-cs-fixer": "^3.22",
"pestphp/pest": "^1.23 || ^2.0",
"php-http/guzzle7-adapter": "^1.0",
"symfony/http-kernel": "^6.4"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"pestphp/pest-plugin": true
}
},
"autoload": {
"psr-4": {
"Braze\\": "lib/"
}
},
"scripts": {
"build": [
"composer update",
"vendor/bin/jane-openapi generate",
"cp src/Braze.php lib/Braze.php"
],
"clean": [
"rm -rf lib/"
],
"test": [
"composer dumpautoload",
"vendor/bin/pest"
]
},
"version": "2.2.2"
}