Download the PHP package covaleski/intraphp without Composer

On this page you can find all versions of the php package covaleski/intraphp. 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 intraphp

IntraPHP

Experimental PHP desktop emulation library.

For now, this is a simple library that runs local PHP projects like desktop apps. It uses Chromium and aims to produce results similar to what Electron does with JavaScript.

Read Security and use it for development purposes only. Plans are to improve performance and security in the future.

Installation

Require the library using Composer.

Usage

Check requirements

You must have Chromium and PHP installed in your system. Check platform requirements using:

If something is flagged as "not found", install it, add a installed package to your PATH or change the library executable using environment variables.

Simplest setup

Just add your index.php file to your project root directory and run the command:

See below if you want to set a different public directory and other parameters.

Custom setups

You can set a custom public directory and other settings using a bootstrap file.

Create a file named boostrap.php in your project root directory and add the code you want to run before starting your application.

The example above sets the folder public as the public directory and tells the library to use php8.1 to setup the server.

Run the intraphp command to start your application.

Test configuration

To see the result of your configuration without running your application, use:

Environment

The library uses the following environment variables to setup the application:

Variable Description Default value
APP_BOOTSTRAP Bootstrap script location. Project root boostrap.php.
APP_DOCROOT Directory containing your index.php. Project root.
APP_HOMEPAGE Web application initial path. /
APP_SERVER_HOST Application host name. localhost
APP_SERVER_PORT Port to serve the application. 8888
APP_SERVER_PROTOCOL Protocol to use in URLs. http
CHROMIUM_EXECUTABLE Chromium executable. chromium
PHP_EXECUTABLE PHP executable. php

Security

This library is a simple experiment and has critical security weaknesses for now:

There are plans to make it suitable for production by replacing localhost by Unix domain sockets, using file permissions and encryption for protection, setting INI directives and other measures.


All versions of intraphp with dependencies

PHP Build Version
Package Version
Requires symfony/process Version ^7.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 covaleski/intraphp contains the following files

Loading the files please wait ....