This repository has been archived by the owner on Feb 10, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Anton Medvedev
committed
Dec 23, 2014
1 parent
eaa2497
commit abe4177
Showing
26 changed files
with
445 additions
and
509 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
vendor/ | ||
.idea/ | ||
pages/ | ||
composer.lock | ||
pure.phar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<phpunit bootstrap="test/bootstrap.php"> | ||
<testsuites> | ||
<testsuite name="Source"> | ||
<directory>test/</directory> | ||
</testsuite> | ||
</testsuites> | ||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,10 @@ | ||
#!/usr/bin/env php | ||
<?php | ||
require __DIR__ . '/vendor/autoload.php'; | ||
|
||
error_reporting(0); | ||
Symfony\Component\Debug\ErrorHandler::register(false); | ||
|
||
$console = new Symfony\Component\Console\Application('PurePHP', '0.2.1'); | ||
|
||
$console = new Symfony\Component\Console\Application('PurePHP', '1.0.0'); | ||
$console->add(new Pure\Console\StartCommand()); | ||
$console->add(new Pure\Console\ClientCommand()); | ||
|
||
$updateCommand = new KevinGH\Amend\Command('update'); | ||
$updateCommand->setDescription('Updates pure.phar to the latest version.'); | ||
$updateCommand->setManifestUri('https://raw.github.com/elfet/purephp/master/manifest.json'); | ||
$console->add($updateCommand); | ||
$console->getHelperSet()->set(new KevinGH\Amend\Helper()); | ||
|
||
$console->run(); | ||
$console->run(); |
Oops, something went wrong.