1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00

Change namespace to AsyncInterop

This commit is contained in:
Niklas Keller 2017-01-07 11:47:58 +01:00
parent 06ea46effb
commit 0c77b964fe
2 changed files with 8 additions and 8 deletions

View File

@ -5,12 +5,12 @@
"license": "MIT", "license": "MIT",
"require": { "require": {
"php": ">=5.4.0", "php": ">=5.4.0",
"async-interop/promise": "^0.3|dev-master", "async-interop/promise": "^0.3",
"phpunit/phpunit": "^4|^5" "phpunit/phpunit": "^4|^5"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Interop\\Async\\Promise\\": "src" "AsyncInterop\\Promise\\": "src"
} }
} }
} }

View File

@ -1,8 +1,8 @@
<?php <?php
namespace Interop\Async\Promise; namespace AsyncInterop\Promise;
use Interop\Async\Promise; use AsyncInterop\Promise;
abstract class Test extends \PHPUnit_Framework_TestCase { abstract class Test extends \PHPUnit_Framework_TestCase {
/** /**