Download the PHP package jdomenechb/reactphp-symfony-server without Composer

On this page you can find all versions of the php package jdomenechb/reactphp-symfony-server. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package reactphp-symfony-server

ReactPHP Symfony Server

This library wraps a ReactPHP server over a Symfony 4 project installation.

Installation (using composer)

After running this command, be sure to define an APP_PORT environment variable prior to running the server. If the Symfony project uses DotEnv in an specific environment, it will take the value from the .env file.

Usage

From the root of your project, run:

The server will inform of the port it is running.

FAQ

Q. How does it work?

The library takes the public/index.php file from the project root, and reads it until the point the Symfony kernel is created. Then, from this point, it takes control in order to provide the ReactPHP server.

Once executed, requests are made directly to the server and translated to Symfony requests, which are dealt then by the Symfony Kernel. The Kernel provides afterwards a response, which is translated back to a response the ReactPHP server can understand.

Q. Which versions of PHP and Symfony are supported?

PHP >= 7.1 and Symfony 4.*.

Q. Does it serve static assets too?

Yes, the library has basic support for serving static assets, like images, CSS ans JS under the public folder of your project.

However, you might consider using another web server (like Nginx or Apache) to serve them, as they are more dedicated to this matter. This library focus mainly on serving PHP requests.

Q. Can I use another web server after I install this library?

Yes, the library is prepared to not modify at all your project, so you can run another server if needed in top of your code.

Q. Will it work with all kind of Symfony installations?

Unfortunately, there is no way to assure that. The library has been tested with a public/index.php file from a Symfony 4 skeleton, and the more a public/index.php has been modified, the most likely is the library to fail.

For this reason, I strongly encourage you to contribute to the project in whatever mean you can.

Q. Can I develop or modify code while using the server?

If you do so, you might encounter that your changes are not being displayed after refreshing the page. This is due to the fact that, once a class has been loaded in memory during server execution, it will remain unchanged in the app memory.

In order to see your changes, you should restart the server.

Contributing

Feel free to contribute to the project by submitting pull requests, or by opening issues you might find. I am eager to receive your feedback and improve the quality and features of the library.


All versions of reactphp-symfony-server with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1
react/http Version ^0.8.0
symfony/http-foundation Version ^4.0
symfony/console Version ^4.0|^5.0
symfony/http-kernel Version ^4.0|^5.0
ralouphie/mimey Version ^2.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jdomenechb/reactphp-symfony-server contains the following files

Loading the files please wait ....