Skip to content

Commit 9578952

Browse files
committed
Run generator
1 parent c5bad8e commit 9578952

31 files changed

+14053
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/vendor/
2+
.idea/
3+
4+
# PHPUnit cache
5+
.phpunit.result.cache
6+

.openapi-generator-ignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md
24+
25+
.gitignore
26+
.php-cs-fixer.dist.php
27+
.travis.yml
28+
git_push.sh
29+
README.md
30+
docs/
31+
composer.json
32+
phpunit.xml.dist
33+
.phplint.yml
34+
tests/**

.openapi-generator/FILES

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
src/Api/BuildsApi.php
2+
src/Api/ProjectsApi.php
3+
src/Api/UsersApi.php
4+
src/ApiException.php
5+
src/Configuration.php
6+
src/FormDataProcessor.php
7+
src/HeaderSelector.php
8+
src/Model/Build.php
9+
src/Model/BuildListResponse.php
10+
src/Model/BuildMapResponse.php
11+
src/Model/BuildResponse.php
12+
src/Model/ErrorResponse.php
13+
src/Model/ModelInterface.php
14+
src/Model/Project.php
15+
src/Model/ProjectDefaultReleaseChannel.php
16+
src/Model/ProjectListResponse.php
17+
src/Model/ProjectResponse.php
18+
src/Model/SearchRequest.php
19+
src/Model/SuccessResponse.php
20+
src/Model/User.php
21+
src/Model/UserResponse.php
22+
src/ObjectSerializer.php

.openapi-generator/VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
7.14.0

composer.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name": "aternos/blob-build",
3+
"type": "library",
4+
"description": "PHP client for the blob.build API. This client is based on OpenAPI.",
5+
"keywords": [
6+
"blob.build",
7+
"slimefun",
8+
"php",
9+
"api"
10+
],
11+
"homepage": "https://github.com/aternosorg/php-blob-build-api",
12+
"license": "MIT",
13+
"authors": [
14+
{
15+
"name": "Aternos GmbH",
16+
"homepage": "https://aternos.gmbh"
17+
}
18+
],
19+
"require": {
20+
"php": "^8.3",
21+
"ext-curl": "*",
22+
"ext-json": "*",
23+
"ext-mbstring": "*",
24+
"guzzlehttp/guzzle": "^7.4.5",
25+
"guzzlehttp/psr7": "^2.0"
26+
},
27+
"require-dev": {
28+
"phpunit/phpunit": "^12.3"
29+
},
30+
"autoload": {
31+
"psr-4": { "Aternos\\BlobBuild\\" : "src/" }
32+
},
33+
"autoload-dev": {
34+
"psr-4": { "Aternos\\BlobBuild\\Test\\" : "tests/" }
35+
}
36+
}

0 commit comments

Comments
 (0)