From c406736f9a68ecfae8f6a20cf87a24be018e3fa3 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Mon, 11 Sep 2023 22:45:20 +0900 Subject: [PATCH] Remove from Testing section from README --- README.ja.md | 17 +++-------------- README.md | 12 ------------ 2 files changed, 3 insertions(+), 26 deletions(-) diff --git a/README.ja.md b/README.ja.md index da436d8e..a5c5a5a1 100644 --- a/README.ja.md +++ b/README.ja.md @@ -259,11 +259,6 @@ $class = $invocation->getMethod()->getDeclaringClass(); このメソッドインターセプターのAPIは[AOPアライアンス](http://aopalliance.sourceforge.net/doc/org/aopalliance/intercept/MethodInterceptor.html)の部分実装です。 -## 要件 - -* PHP 5.6+ -* hhvm - ## インストール Ray.Aopの推奨インストール方法は、[Composer](https://github.com/composer/composer)でのインストールです。 @@ -273,17 +268,11 @@ Ray.Aopの推奨インストール方法は、[Composer](https://github.com/comp $ composer require ray/aop ~2.0 ``` -## Ray.Aopのテスト +## パフォーマンス -Ray.Aopをソースからインストールし、ユニットテストとデモを実行するには次のようにします。 +AOP -```bash -git clone https://github.com/ray-di/Ray.Aop.git -cd Ray.Aop -composer install -vendor/bin/phpunit -php demo/run.php -``` +## DI Framework DIとAOPを統合したDIフレームワーク[Ray.Di](https://github.com/ray-di/Ray.Di)もご覧ください。 diff --git a/README.md b/README.md index da0cdef2..0209b5c0 100644 --- a/README.md +++ b/README.md @@ -262,18 +262,6 @@ The recommended way to install Ray.Aop is through [Composer](https://github.com/ $ composer require ray/aop ^2.0 ``` -## Testing Ray.Aop - -Here's how to install Ray.Aop from source and run the unit tests and demos. - -```bash -git clone https://github.com/ray-di/Ray.Aop.git -cd Ray.Aop -composer install -composer test -php demo/run.php -``` - ## Integrated DI framework * See also the DI framework [Ray.Di](https://github.com/ray-di/Ray.Di) which integrates DI and AOP.