From 0005d445ff04a3c2413ec5c7654920de2da2325a Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 14 Apr 2024 14:32:04 +0900 Subject: [PATCH 1/7] =?UTF-8?q?=E3=83=91=E3=83=95=E3=82=A9=E3=83=BC?= =?UTF-8?q?=E3=83=9E=E3=83=B3=E3=82=B9=E3=82=92=E7=9F=AD=E3=81=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manuals/1.0/en/index.md | 10 ++-------- manuals/1.0/ja/index.md | 9 +-------- 2 files changed, 3 insertions(+), 16 deletions(-) diff --git a/manuals/1.0/en/index.md b/manuals/1.0/en/index.md index 11759ce6..8bf32a28 100644 --- a/manuals/1.0/en/index.md +++ b/manuals/1.0/en/index.md @@ -64,15 +64,9 @@ The resource-oriented architecture of BEAR.Sunday naturally lends itself to dist - **Fault tolerance**: The adoption of event-driven content enables a system based on permanent CDN caching. Even if PHP or the database goes down, content remains available, enhancing resilience. -## Performance +Performance -BEAR.Sunday strikes a balance between flexibility and performance, with a design focused on efficiency: - -- **Injection and Compilation**: By performing dependency injection at compile time, runtime overhead is minimized, resulting in faster application startup and execution. - -- **Caching**: Resource-oriented architecture enables CDN-centric caching, minimizing PHP execution and database access. - -- **Fast Boot**: Compiling framework functionality into a root object optimizes the bootstrap process, enabling ultra-fast responses when used with runtimes like Swoole. +BEAR.Sunday is designed with a focus on performance and efficiency while ensuring maximum flexibility. By compiling the framework's functionality into a root object and resolving dependencies during compilation, it achieves an optimized bootstrap process. This compilation step results in improved startup times and overall execution speed. ## Because Everything is a Resource diff --git a/manuals/1.0/ja/index.md b/manuals/1.0/ja/index.md index 0d636662..0ce0688c 100644 --- a/manuals/1.0/ja/index.md +++ b/manuals/1.0/ja/index.md @@ -73,14 +73,7 @@ BEAR.Sundayは、Webアプリケーションを超えて、さまざまなクラ ## パフォーマンス BEAR.Sundayは、最大限の柔軟性を確保しながらもパフォーマンスと効率性に重点を置いて設計されています。 - -- **インジェクションとコンパイル**: 依存関係の注入をコンパイル時に行うことで、実行時のオーバーヘッドを最小限に抑え、アプリケーションの起動と実行を高速化します。 - -- **キャッシング**: - リソース指向アーキテクチャにより、CDNを中心としたキャッシングが可能になり、PHP の実行やデータベースアクセスを最小限に抑えます。 - -- **高速起動**: - フレームワークの機能をルートオブジェクトとしてコンパイルすることで、最適化されたブートストラップを実現し、Swooleなどのランタイムを使用した超高速なレスポンスを可能にします。 +フレームワークの機能をルートオブジェクトとしてコンパイルすることと、コンパイル時に依存解決を行いPHPコードをコンパイルすることで、最適化されたブートストラップを実現します。 ## Because Everything is a Resource From 58ebdafbf9f6541a6d64b61e71a002205ecd1f7f Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 14 Apr 2024 14:47:39 +0900 Subject: [PATCH 2/7] =?UTF-8?q?=E3=82=A4=E3=83=B3=E3=83=88=E3=83=AD?= =?UTF-8?q?=E3=83=80=E3=82=AF=E3=82=B7=E3=83=A7=E3=83=B3=E6=A0=A1=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit claude3 --- manuals/1.0/ja/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manuals/1.0/ja/index.md b/manuals/1.0/ja/index.md index 0ce0688c..b7b98d88 100644 --- a/manuals/1.0/ja/index.md +++ b/manuals/1.0/ja/index.md @@ -13,7 +13,7 @@ BEAR.Sundayは、クリーンなオブジェクト指向設計と、Webの基本 BEAR.Sundayは3つのフレームワークで構成されています。 -`Ray.Di`は[依存関係逆転の原則](http://en.wikipedia.org/wiki/Dependency_inversion_principle)に基づいてオブジェクトの依存をインターフェイスで結びます。 +`Ray.Di`は[依存性逆転の原則](http://en.wikipedia.org/wiki/Dependency_inversion_principle)に基づいてオブジェクトの依存をインターフェイスで結びます。 `Ray.Aop`は[アスペクト指向プログラミング](http://en.wikipedia.org/wiki/Aspect-oriented_programming)で本質的関心と横断的関心を結びます。 @@ -33,7 +33,7 @@ BEAR.Sundayは、フレームワークとライブラリの違いを"不易流 ## アーキテクチャ -BEAR.Sundayは、従来のMVC(Model-View-Controller)アーキテクチャとは異なり、リソース指向アーキテクチャ(ROA)を採用しています。こアーキテクチャでは、アプリケーションの設計において、データとビジネスロジックを統一されたリソースとして扱い、それらに対するリンクと操作を中心に設計を行います。リソース指向アーキテクチャはREST APIの設計で広く使用されていますが、BEAR.SundayはそれをWebアプリケーション全体の設計にも適用しています。 +BEAR.Sundayは、従来のMVC(Model-View-Controller)アーキテクチャとは異なり、リソース指向アーキテクチャ(ROA)を採用しています。こアーキテクチャでは、アプリケーションの設計において、データとビジネスロジックを統一してリソースとして扱い、それらに対するリンクと操作を中心に設計を行います。リソース指向アーキテクチャはREST APIの設計で広く使用されていますが、BEAR.SundayはそれをWebアプリケーション全体の設計にも適用しています。 ## 長期的な視点 @@ -53,7 +53,7 @@ BEAR.Sundayは、Webアプリケーションを超えて、さまざまなクラ HTTPを使用して全てのリソースにアクセスすることが可能です。MVCのモデルやコントローラーと違い、BEAR.Sundayのリソースはクライアントから直接のアクセスが可能です。 - **composerパッケージ**: - composerでvednor下にインストールしたアプリケーションのリソースを直接呼び出す事ができます。マイクロサービスを使うことになしに複数のアプリケーションを協調する事ができます。 + composerでvendor下にインストールしたアプリケーションのリソースを直接呼び出す事ができます。マイクロサービスを使うことになしに複数のアプリケーションを協調する事ができます。 - **多言語フレームワーク**: BEAR.Thriftを使用して、PHP以外の言語や異なるバージョンのPHPとの連携を可能にします。 @@ -62,7 +62,7 @@ BEAR.Sundayは、Webアプリケーションを超えて、さまざまなクラ リソース指向アーキテクチャは、Web本来の分散キャッシングを可能にします。BEAR.Sundayの設計思想はWebの基本原則に沿っており、CDNを中心とした分散キャッシュシステムを活用することで、現代のWebアプリケーションに求められる高いパフォーマンスと可用性を実現します。 -- **分散キャッシュ**: キャッシュをクライアント、CDN、サーバーサイドに保存することで、CPU コストとネットワークコストの双方を削減します。 +- **分散キャッシュ**: キャッシュをクライアント、CDN、サーバーサイドに保存することで、CPU コストとネットワークコストの両方を削減します。 - **同一性確認**: ETagを使用してキャッシュされたコンテンツの同一性を確認し、コンテンツの変更があった場合にのみ再取得することで、ネットワーク効率を向上させます。 From f07cb724c54b0067ce8c83bbbc276134e689e683 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 14 Apr 2024 14:48:00 +0900 Subject: [PATCH 3/7] =?UTF-8?q?claude3=E3=81=AB=E3=82=88=E3=82=8Bminor?= =?UTF-8?q?=E3=81=AA=E8=A8=80=E3=81=84=E6=8F=9B=E3=81=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manuals/1.0/en/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/manuals/1.0/en/index.md b/manuals/1.0/en/index.md index 8bf32a28..ee28c45d 100644 --- a/manuals/1.0/en/index.md +++ b/manuals/1.0/en/index.md @@ -20,13 +20,13 @@ BEAR.Sunday consists of three frameworks. `BEAR.Resource` connects application data and functionality with resources with [REST constraints](https://en.wikipedia.org/wiki/Representational_state_transfer). -The framework provides constraints and design principles that guide the entire application, promoting consistent design and implementation, resulting in high-quality, clean code. +The framework provides constraints and design principles that guide the entire application, promoting consistent design and implementation, and resulting in high-quality, clean code. ## Libraries Unlike full-stack frameworks, BEAR.Sunday does not include its own libraries for specific tasks like authentication or database management. Instead, it favors the use of high-quality third-party libraries. -This approach is rooted in two key design philosophies: firstly, the belief that "frameworks remain, libraries change," acknowledging that while the framework provides a stable foundation, libraries evolve to meet changing needs over time. Secondly, it empowers "application architects with the right and responsibility to choose libraries" that best fit their application's requirements, constraints, and goals. +This approach is based on two key design philosophies: firstly, the belief that "frameworks remain, libraries change," acknowledging that while the framework provides a stable foundation, libraries evolve to meet changing needs over time. Secondly, it empowers "application architects with the right and responsibility to choose libraries" that best fit their application's requirements, constraints, and goals. BEAR.Sunday draws a clear distinction between frameworks and libraries, emphasizing the role of the framework as an application constraint. @@ -40,7 +40,7 @@ BEAR.Sunday is designed with a long-term view, focusing on application maintaina - **Constraints**: The consistent application constraints imposed by DI, AOP, and REST remain unchanged over time. -- **Eternal 1.x**:Since its 1.0 release in 2015, BEAR.Sunday has not introduced any backward-incompatible changes. This freedom from the debt of compatibility fixes and their associated tests is a significant advantage. Applications can always be upgraded to the latest version without the burden of compatibility fixes or additional testing. +- **Eternal 1.x**:Since its 1.0 release in 2015, BEAR.Sunday has not introduced any backward-incompatible changes. This eliminates the debt of compatibility fixes and their associated tests, providing a significant advantage. Applications can always be upgraded to the latest version without the burden of compatibility fixes or additional testing. - **Standards Compliance**: BEAR.Sunday adheres to various standards, including HTTP, JsonSchema, and others. For DI, it follows Google Guice, and for AOP, it aligns with the Java Aop Alliance. @@ -52,7 +52,7 @@ BEAR.Sunday transcends traditional web applications, offering seamless integrati - **composer package**: Resources from applications installed under the vendor directory via Composer can be invoked directly, enabling coordination between multiple applications without resorting to microservices. -- **Multilingual framework**: BEAR.Thrift facilitates efficient interoperability with other languages and PHP versions. +- **Multilingual framework**: BEAR.Thrift facilitates seamless and efficient interoperability with other languages and PHP versions. ## Web Cache @@ -60,13 +60,13 @@ The resource-oriented architecture of BEAR.Sunday naturally lends itself to dist - **Distributed Caching**: By caching on the client, CDN, and server-side, both CPU and network costs are minimized. -- **IDENTIFICATION**: ETag-based verification ensures that only modified content is retrieved, enhancing network efficiency. +- **Identification**: ETag-based verification ensures that only modified content is retrieved, enhancing network efficiency. - **Fault tolerance**: The adoption of event-driven content enables a system based on permanent CDN caching. Even if PHP or the database goes down, content remains available, enhancing resilience. Performance -BEAR.Sunday is designed with a focus on performance and efficiency while ensuring maximum flexibility. By compiling the framework's functionality into a root object and resolving dependencies during compilation, it achieves an optimized bootstrap process. This compilation step results in improved startup times and overall execution speed. +BEAR.Sunday is designed with a focus on performance and efficiency while ensuring maximum flexibility. By compiling the framework's functionality into a root object and resolving dependencies during compilation, it achieves an optimized bootstrap process. This compilation step improves startup times and overall execution speed. ## Because Everything is a Resource From 38c39a6782f19eea1615b443fc6c6442f5140741 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 14 Apr 2024 15:12:15 +0900 Subject: [PATCH 4/7] =?UTF-8?q?=E6=B0=B8=E9=81=A0=E3=81=AE1.x=E3=82=92?= =?UTF-8?q?=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manuals/1.0/en/index.md | 2 +- manuals/1.0/ja/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manuals/1.0/en/index.md b/manuals/1.0/en/index.md index ee28c45d..3149a362 100644 --- a/manuals/1.0/en/index.md +++ b/manuals/1.0/en/index.md @@ -40,7 +40,7 @@ BEAR.Sunday is designed with a long-term view, focusing on application maintaina - **Constraints**: The consistent application constraints imposed by DI, AOP, and REST remain unchanged over time. -- **Eternal 1.x**:Since its 1.0 release in 2015, BEAR.Sunday has not introduced any backward-incompatible changes. This eliminates the debt of compatibility fixes and their associated tests, providing a significant advantage. Applications can always be upgraded to the latest version without the burden of compatibility fixes or additional testing. +- **Eternal 1.x**:The System That Never Breaks Backward Compatibility. Since its initial release in 2015, BEAR.Sunday has continuously evolved without introducing any backward-incompatible changes. This steadfast approach eliminates the need for compatibility fixes and their associated testing, thereby preventing future technical debt. The system remains cutting-edge, ensuring easy upgrades and access to the latest features without compatibility concerns. - **Standards Compliance**: BEAR.Sunday adheres to various standards, including HTTP, JsonSchema, and others. For DI, it follows Google Guice, and for AOP, it aligns with the Java Aop Alliance. diff --git a/manuals/1.0/ja/index.md b/manuals/1.0/ja/index.md index b7b98d88..7bd3bb4a 100644 --- a/manuals/1.0/ja/index.md +++ b/manuals/1.0/ja/index.md @@ -41,7 +41,7 @@ BEAR.Sunday は、アプリケーションの長期的な維持を念頭に置 - **制約**: DI、AOP、RESTの制約に従った一貫したアプリケーション制約は、時間の経過とともに変わることがありません。 -- **永遠の1.x**: 2015年の1.0リリース以来、後方互換性の破壊を伴う変更はありません。定期的な互換性対応の改修とそのテストが必要という負債がありません。アプリケーションは常に最新バージョンにアップグレードでき、互換性のための改修やテストの負債はありません。 +- **永遠の1.x**: 2015年の最初のリリース以来、BEAR.Sundayは後方互換性のない変更を導入することなく、継続的に進化してきました。開発者にはフレームワークの定期的な互換性破壊への対応とそのテストが必要という将来の技術負債がありません。 - **標準準拠**:HTTP標準、JsonSchema などの標準に従い、DIはGoogle Guice、AOPはJavaのAop Allianceに基づいています。 From 22b564d18682505c274b57e2760fbfd13a36b61e Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 14 Apr 2024 15:58:10 +0900 Subject: [PATCH 5/7] =?UTF-8?q?=E3=83=91=E3=83=95=E3=82=A9=E3=83=BC?= =?UTF-8?q?=E3=83=9E=E3=83=B3=E3=82=B9=E3=82=92=E6=A0=A1=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manuals/1.0/en/index.md | 4 ++-- manuals/1.0/ja/index.md | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/manuals/1.0/en/index.md b/manuals/1.0/en/index.md index 3149a362..c34bf0ff 100644 --- a/manuals/1.0/en/index.md +++ b/manuals/1.0/en/index.md @@ -64,9 +64,9 @@ The resource-oriented architecture of BEAR.Sunday naturally lends itself to dist - **Fault tolerance**: The adoption of event-driven content enables a system based on permanent CDN caching. Even if PHP or the database goes down, content remains available, enhancing resilience. -Performance +## Performance -BEAR.Sunday is designed with a focus on performance and efficiency while ensuring maximum flexibility. By compiling the framework's functionality into a root object and resolving dependencies during compilation, it achieves an optimized bootstrap process. This compilation step improves startup times and overall execution speed. +BEAR.Sunday is designed with a focus on performance and efficiency while maintaining maximum flexibility. This approach enables a highly optimized bootstrap, positively impacting both user experience and system resources. Performance is always one of the primary concerns for BEAR.Sunday, playing a central role in our design and development decisions. ## Because Everything is a Resource diff --git a/manuals/1.0/ja/index.md b/manuals/1.0/ja/index.md index 7bd3bb4a..235eb3a3 100644 --- a/manuals/1.0/ja/index.md +++ b/manuals/1.0/ja/index.md @@ -72,8 +72,9 @@ BEAR.Sundayは、Webアプリケーションを超えて、さまざまなクラ ## パフォーマンス -BEAR.Sundayは、最大限の柔軟性を確保しながらもパフォーマンスと効率性に重点を置いて設計されています。 -フレームワークの機能をルートオブジェクトとしてコンパイルすることと、コンパイル時に依存解決を行いPHPコードをコンパイルすることで、最適化されたブートストラップを実現します。 +BEAR.Sundayは、最大限の柔軟性を保ちながら、パフォーマンスと効率性に重点を置いて設計されています。 +極めて最適化されたブートストラップが実現され、ユーザー体験とシステムリソースの両方に好影響を与えています。 +パフォーマンスはいつもBEAR.Sundayの最大関心事の一つであり、設計と開発の決定において常に中心的な役割を果たしています。 ## Because Everything is a Resource From 08630dd714f3a6049f823e3ff029a3369357854a Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 14 Apr 2024 16:09:43 +0900 Subject: [PATCH 6/7] =?UTF-8?q?Web=20Cache=E3=82=92=E6=A0=A1=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manuals/1.0/en/index.md | 2 +- manuals/1.0/ja/index.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/manuals/1.0/en/index.md b/manuals/1.0/en/index.md index c34bf0ff..08465b9c 100644 --- a/manuals/1.0/en/index.md +++ b/manuals/1.0/en/index.md @@ -56,7 +56,7 @@ BEAR.Sunday transcends traditional web applications, offering seamless integrati ## Web Cache -The resource-oriented architecture of BEAR.Sunday naturally lends itself to distributed caching, inherent to the Web. By adhering to Web fundamentals, BEAR.Sunday leverages CDN-centric distributed cache systems to achieve the high performance and availability demanded by modern web applications. +By integrating resource-oriented architecture with modern CDN technology, we achieve distributed caching that surpasses traditional server-side TTL caching. BEAR.Sunday's design philosophy adheres to the fundamental principles of the Web, utilizing a CDN-centered distributed caching system to ensure high performance and availability. - **Distributed Caching**: By caching on the client, CDN, and server-side, both CPU and network costs are minimized. diff --git a/manuals/1.0/ja/index.md b/manuals/1.0/ja/index.md index 235eb3a3..6a8d5aee 100644 --- a/manuals/1.0/ja/index.md +++ b/manuals/1.0/ja/index.md @@ -29,11 +29,11 @@ BEAR.Sunday はフルスタック フレームワークとは異なり、認証 2つ目は「ライブラリを選択する権利と責任はアプリケーションアーキテクトにある」というものです。アプリケーションアーキテクトは、アプリケーションの要件、制約、および目的に最も適したライブラリを選択する能力と責任を委ねられています。 -BEAR.Sundayは、フレームワークとライブラリの違いを"不易流行"として明確に区別し、アプリケーション制約としてのフレームワークの役割を重視します。 +BEAR.Sundayは、フレームワークとライブラリの違いを"不易流行"(変わらぬ基本原則と時代と共に進化する要素)として明確に区別し、アプリケーション制約としてのフレームワークの役割を重視します。 ## アーキテクチャ -BEAR.Sundayは、従来のMVC(Model-View-Controller)アーキテクチャとは異なり、リソース指向アーキテクチャ(ROA)を採用しています。こアーキテクチャでは、アプリケーションの設計において、データとビジネスロジックを統一してリソースとして扱い、それらに対するリンクと操作を中心に設計を行います。リソース指向アーキテクチャはREST APIの設計で広く使用されていますが、BEAR.SundayはそれをWebアプリケーション全体の設計にも適用しています。 +BEAR.Sundayは、従来のMVC(Model-View-Controller)アーキテクチャとは異なり、リソース指向アーキテクチャ(ROA)を採用しています。このアーキテクチャでは、アプリケーションの設計において、データとビジネスロジックを統一してリソースとして扱い、それらに対するリンクと操作を中心に設計を行います。リソース指向アーキテクチャはREST APIの設計で広く使用されていますが、BEAR.SundayはそれをWebアプリケーション全体の設計にも適用しています。 ## 長期的な視点 @@ -53,14 +53,14 @@ BEAR.Sundayは、Webアプリケーションを超えて、さまざまなクラ HTTPを使用して全てのリソースにアクセスすることが可能です。MVCのモデルやコントローラーと違い、BEAR.Sundayのリソースはクライアントから直接のアクセスが可能です。 - **composerパッケージ**: - composerでvendor下にインストールしたアプリケーションのリソースを直接呼び出す事ができます。マイクロサービスを使うことになしに複数のアプリケーションを協調する事ができます。 + composerでvendor下にインストールしたアプリケーションのリソースを直接呼び出す事ができます。マイクロサービスを使わずに複数のアプリケーションを協調する事ができます。 - **多言語フレームワーク**: BEAR.Thriftを使用して、PHP以外の言語や異なるバージョンのPHPとの連携を可能にします。 ## Webキャッシュ -リソース指向アーキテクチャは、Web本来の分散キャッシングを可能にします。BEAR.Sundayの設計思想はWebの基本原則に沿っており、CDNを中心とした分散キャッシュシステムを活用することで、現代のWebアプリケーションに求められる高いパフォーマンスと可用性を実現します。 +リソース指向アーキテクチャとモダンなCDNの技術を組み合わせることにより、従来のサーバーサイドのTTLキャッシュを超えるWeb本来の分散キャッシングを実現します。BEAR.Sundayの設計思想は、Webの基本原則に沿っており、CDNを中心に配置した分散キャッシュシステムを活用することで、高いパフォーマンスと可用性を実現します。 - **分散キャッシュ**: キャッシュをクライアント、CDN、サーバーサイドに保存することで、CPU コストとネットワークコストの両方を削減します。 From 12a496087585d8f160f9c5899f71db2f0cc7d53a Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 14 Apr 2024 16:14:13 +0900 Subject: [PATCH 7/7] =?UTF-8?q?BEAR.Sunday=E3=81=A8=E3=81=AF=E3=82=92?= =?UTF-8?q?=E6=A0=A1=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manuals/1.0/en/index.md | 3 +-- manuals/1.0/ja/index.md | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manuals/1.0/en/index.md b/manuals/1.0/en/index.md index 08465b9c..ce3749e6 100644 --- a/manuals/1.0/en/index.md +++ b/manuals/1.0/en/index.md @@ -7,8 +7,7 @@ permalink: /manuals/1.0/en/ # What is BEAR.Sunday -BEAR.Sunday is a PHP application framework that combines a clean object-oriented design with a resource-oriented architecture that follows the basic principles of the Web. It emphasizes standards compliance, long-term perspective, high efficiency, flexibility, self-description, and simplicity. - +BEAR.Sunday is a PHP application framework that combines clean object-oriented design with a resource-oriented architecture aligned with the fundamental principles of the web. This framework emphasizes compliance with standards, a long-term perspective, high efficiency, flexibility, self-description, and importantly, simplicity. ## Framework diff --git a/manuals/1.0/ja/index.md b/manuals/1.0/ja/index.md index 6a8d5aee..72ae44ed 100644 --- a/manuals/1.0/ja/index.md +++ b/manuals/1.0/ja/index.md @@ -7,7 +7,8 @@ permalink: /manuals/1.0/ja/ # BEAR.Sundayとは -BEAR.Sundayは、クリーンなオブジェクト指向設計と、Webの基本原則に沿ったリソース指向アーキテクチャを組み合わせたPHPのアプリケーションフレームワークです。標準準拠、長期的視点、高効率、柔軟性、自己記述、それに加えてシンプルである事を重視します。 +BEAR.Sundayは、クリーンなオブジェクト指向設計と、Webの基本原則に沿ったリソース指向アーキテクチャを組み合わせたPHPのアプリケーションフレームワークです。 +このフレームワークは標準への準拠、長期的な視点、高効率、柔軟性、自己記述性に加え、シンプルさを重視します。 ## フレームワーク