https://github.com/dcsg/phplx-how-to-build-console-app
Source code of my talk at phplx
https://github.com/dcsg/phplx-how-to-build-console-app
Last synced: 11 months ago
JSON representation
Source code of my talk at phplx
- Host: GitHub
- URL: https://github.com/dcsg/phplx-how-to-build-console-app
- Owner: dcsg
- License: mit
- Created: 2013-10-13T15:53:36.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-10-20T10:10:01.000Z (over 12 years ago)
- Last Synced: 2025-07-06T01:02:46.213Z (11 months ago)
- Language: PHP
- Homepage:
- Size: 133 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# How to build Console Applications
[](https://travis-ci.org/danielcsgomes/phplx-how-to-build-console-app)
The source code of my talk at [phplx October 2013 meetup](http://phplx.net)
## Disclaimer
The code in this repository is only for demonstration purposes.
## Slides
The slides of this talk are available [here](https://speakerdeck.com/danielcsgomes/how-to-build-console-applications).
## Installation
```
git clone git@github.com:danielcsgomes/phplx-how-to-build-console-app.git
cd phplx-how-to-build-console-app
# Install using composer with development dependencies:
curl -sS https://getcomposer.org/installer | php
# Then, using the `composer.phar` file:
php composer.phar install --dev
```
## Usage
```
# Run the application
php app.php
# Run the examples
php examples//.php
# Run tests:
./vendor/bin/phpunit
```
## License
The code is licensed under the [MIT License](https://github.com/danielcsgomes/phplx-how-to-build-console-app/blob/master/LICENSE)