From df102e907115749b1d934c3dbc90e0c6076a0f2f Mon Sep 17 00:00:00 2001 From: bidi Date: Wed, 4 Oct 2023 13:58:01 +0300 Subject: [PATCH] added first files --- .gitignore | 39 ++++++++++++++++++++++++++++ api-doc/customize.md | 0 api-doc/intro.md | 0 api-doc/swagger.md | 0 api-primer/content-negotiation.md | 0 api-primer/content-validation.md | 0 api-primer/error-reporting.md | 0 api-primer/halprimer.md | 0 api-primer/http-negotiation.md | 0 api-primer/representation-formats.md | 0 api-primer/versioning.md | 0 api-primer/what-is-an-api.md | 0 auth/authentication-about.md | 0 auth/authentication-http-basic.md | 0 auth/authentication-oauth2.md | 0 auth/authorization.md | 0 auth/intro.md | 0 auth/user-differentiation.md | 0 content-negotiation/index.md | 0 content-validation/advanced.md | 0 content-validation/basic-usage.md | 0 content-validation/filtering.md | 0 content-validation/intro.md | 0 content-validation/validating.md | 0 deployment/intro.md | 0 intro/first-rest-service.md | 0 intro/getting-started.md | 0 intro/installation.md | 0 28 files changed, 39 insertions(+) create mode 100644 .gitignore create mode 100644 api-doc/customize.md create mode 100644 api-doc/intro.md create mode 100644 api-doc/swagger.md create mode 100644 api-primer/content-negotiation.md create mode 100644 api-primer/content-validation.md create mode 100644 api-primer/error-reporting.md create mode 100644 api-primer/halprimer.md create mode 100644 api-primer/http-negotiation.md create mode 100644 api-primer/representation-formats.md create mode 100644 api-primer/versioning.md create mode 100644 api-primer/what-is-an-api.md create mode 100644 auth/authentication-about.md create mode 100644 auth/authentication-http-basic.md create mode 100644 auth/authentication-oauth2.md create mode 100644 auth/authorization.md create mode 100644 auth/intro.md create mode 100644 auth/user-differentiation.md create mode 100644 content-negotiation/index.md create mode 100644 content-validation/advanced.md create mode 100644 content-validation/basic-usage.md create mode 100644 content-validation/filtering.md create mode 100644 content-validation/intro.md create mode 100644 content-validation/validating.md create mode 100644 deployment/intro.md create mode 100644 intro/first-rest-service.md create mode 100644 intro/getting-started.md create mode 100644 intro/installation.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2b4aea1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +clover.xml +coveralls-upload.json +phpunit.xml + +# Created by .ignore support plugin (hsz.mobi) +### JetBrains template +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# Admin-specific stuff: +.idea + +## File-based project format: +*.iws + +## Plugin-specific files: + +# IntelliJ +/out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +### Composer template +composer.phar +/vendor/ + +# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file +# composer.lock diff --git a/api-doc/customize.md b/api-doc/customize.md new file mode 100644 index 0000000..e69de29 diff --git a/api-doc/intro.md b/api-doc/intro.md new file mode 100644 index 0000000..e69de29 diff --git a/api-doc/swagger.md b/api-doc/swagger.md new file mode 100644 index 0000000..e69de29 diff --git a/api-primer/content-negotiation.md b/api-primer/content-negotiation.md new file mode 100644 index 0000000..e69de29 diff --git a/api-primer/content-validation.md b/api-primer/content-validation.md new file mode 100644 index 0000000..e69de29 diff --git a/api-primer/error-reporting.md b/api-primer/error-reporting.md new file mode 100644 index 0000000..e69de29 diff --git a/api-primer/halprimer.md b/api-primer/halprimer.md new file mode 100644 index 0000000..e69de29 diff --git a/api-primer/http-negotiation.md b/api-primer/http-negotiation.md new file mode 100644 index 0000000..e69de29 diff --git a/api-primer/representation-formats.md b/api-primer/representation-formats.md new file mode 100644 index 0000000..e69de29 diff --git a/api-primer/versioning.md b/api-primer/versioning.md new file mode 100644 index 0000000..e69de29 diff --git a/api-primer/what-is-an-api.md b/api-primer/what-is-an-api.md new file mode 100644 index 0000000..e69de29 diff --git a/auth/authentication-about.md b/auth/authentication-about.md new file mode 100644 index 0000000..e69de29 diff --git a/auth/authentication-http-basic.md b/auth/authentication-http-basic.md new file mode 100644 index 0000000..e69de29 diff --git a/auth/authentication-oauth2.md b/auth/authentication-oauth2.md new file mode 100644 index 0000000..e69de29 diff --git a/auth/authorization.md b/auth/authorization.md new file mode 100644 index 0000000..e69de29 diff --git a/auth/intro.md b/auth/intro.md new file mode 100644 index 0000000..e69de29 diff --git a/auth/user-differentiation.md b/auth/user-differentiation.md new file mode 100644 index 0000000..e69de29 diff --git a/content-negotiation/index.md b/content-negotiation/index.md new file mode 100644 index 0000000..e69de29 diff --git a/content-validation/advanced.md b/content-validation/advanced.md new file mode 100644 index 0000000..e69de29 diff --git a/content-validation/basic-usage.md b/content-validation/basic-usage.md new file mode 100644 index 0000000..e69de29 diff --git a/content-validation/filtering.md b/content-validation/filtering.md new file mode 100644 index 0000000..e69de29 diff --git a/content-validation/intro.md b/content-validation/intro.md new file mode 100644 index 0000000..e69de29 diff --git a/content-validation/validating.md b/content-validation/validating.md new file mode 100644 index 0000000..e69de29 diff --git a/deployment/intro.md b/deployment/intro.md new file mode 100644 index 0000000..e69de29 diff --git a/intro/first-rest-service.md b/intro/first-rest-service.md new file mode 100644 index 0000000..e69de29 diff --git a/intro/getting-started.md b/intro/getting-started.md new file mode 100644 index 0000000..e69de29 diff --git a/intro/installation.md b/intro/installation.md new file mode 100644 index 0000000..e69de29