Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Releases: ReactMVC/API-Monster

1.9.0

10 Jan 07:56
@ReactMVC ReactMVC
e2756de
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

Added support for arrays in .env
Added loading tailwindcss

Assets 2
Loading
TSheylock reacted with thumbs up emoji
1 person reacted

1.8.0

10 Oct 12:23
@ReactMVC ReactMVC
b0c7510
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

fix
Loading

1.7.8

04 Oct 11:51
@ReactMVC ReactMVC
d5a4720
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

add getBody
Loading

1.7.7

01 Oct 09:55
@ReactMVC ReactMVC
865e61e
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

fix
Loading

1.7.6

14 Sep 06:51
@ReactMVC ReactMVC
c8e8983
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

fix
Loading

1.7.5

11 Sep 10:55
@ReactMVC ReactMVC
c1f4683
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

fix Validation
Loading

1.7.4

11 Sep 08:17
@ReactMVC ReactMVC
ef441aa
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

Add Data Validation

<?php
namespace Monster\App\Controllers;
use Monster\App\Models\Validation;
class HomeController
{
 public function index()
 {
 $data = [
 'name' => 'John Doe',
 'email' => 'john.doe@example.com',
 'age' => 19
 ];
 $rules = [
 'name' => 'required',
 'email' => 'required|email',
 'age' => 'number|min:1|max:3'
 ];
 $validator = new Validation($data, $rules, 'en');
 if ($validator->validate()) {
 echo 'Data is valid!';
 } else {
 $errors = $validator->getErrors();
 print_r($errors);
 }
 }
}
Loading

1.7.3

10 Sep 14:33
@ReactMVC ReactMVC
2505cd3
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

Update README.md
Loading

1.7.2

09 Sep 17:48
@ReactMVC ReactMVC
5f9e4f7
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

Update README.md
Loading

1.7.1

09 Sep 17:46
@ReactMVC ReactMVC
74cf99d
This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GPG key ID: 4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.

Choose a tag to compare

Update README.md
Loading
Previous 1 3 4
Previous

AltStyle によって変換されたページ (->オリジナル) /