https://github.com/germdz/alamedablog
BLog desde SymfonyDemo
https://github.com/germdz/alamedablog
api blog php proyecto symfony
Last synced: 8 months ago
JSON representation
BLog desde SymfonyDemo
- Host: GitHub
- URL: https://github.com/germdz/alamedablog
- Owner: gerMdz
- License: mit
- Created: 2022-01-02T19:59:22.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-29T20:30:47.000Z (11 months ago)
- Last Synced: 2025-04-29T21:32:54.813Z (11 months ago)
- Topics: api, blog, php, proyecto, symfony
- Language: PHP
- Homepage:
- Size: 2.03 MB
- Stars: 13
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
AlamedaBLOG
BLog desde SymfonyDemo
========================
The "Symfony Demo Application" is a reference application created to show how
to develop applications following the [Symfony Best Practices][1].
Requirements
------------
* PHP 7.3 or higher;
* PDO-SQLite PHP extension enabled;
* and the [usual Symfony application requirements][2].
Installation
------------
[Download Symfony][4] to install the `symfony` binary on your computer and run
this command:
```bash
$ symfony new --demo my_project
```
Alternatively, you can use Composer:
```bash
$ composer create-project symfony/symfony-demo my_project
```
Usage
-----
There's no need to configure anything to run the application. If you have
[installed Symfony][4] binary, run this command:
```bash
$ cd my_project/
$ symfony serve
```
Then access the application in your browser at the given URL ( by default).
If you don't have the Symfony binary installed, run `php -S localhost:8000 -t public/`
to use the built-in PHP web server or [configure a web server][3] like Nginx or
Apache to run the application.
Tests
-----
Execute this command to run tests:
```bash
$ cd my_project/
$ ./bin/phpunit
```
[1]: https://symfony.com/doc/current/best_practices.html
[2]: https://symfony.com/doc/current/reference/requirements.html
[3]: https://symfony.com/doc/current/cookbook/configuration/web_server_configuration.html
[4]: https://symfony.com/download