originphp / app
OriginPHP Application
Installs: 261
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=7.3.0
- originphp/cache: ^2.0
- originphp/collection: ^2.0
- originphp/commands: ^3.0
- originphp/filesystem: ^3.0
- originphp/framework: ^3.24
- originphp/log: ^2.0
- originphp/storage: ^3.0
- originphp/text: ^2.0
Requires (Dev)
- originphp/debug-plugin: ^2.0
- originphp/generate: ^3.0
- phpunit/phpunit: ^9.2
- dev-master
- 3.22.1
- 3.22.0
- 3.21.0
- 3.20.1
- 3.20.0
- 3.19.1
- 3.19.0
- 3.18.2
- 3.18.1
- 3.18.0
- 3.17.0
- 3.16.1
- 3.16.0
- 3.15.0
- 3.14.0
- 3.13.0
- 3.12.0
- 3.11.1
- 3.11.0
- 3.10.2
- 3.10.1
- 3.10.0
- 3.9.1
- 3.9.0
- 3.8.1
- 3.8.0
- 3.7.2
- 3.7.1
- 3.7.0
- 3.6.1
- 3.6.0
- 3.5.0
- 3.4.0
- 3.3.0
- 3.2.0
- 3.1.0
- 3.0.1
- 3.0.0
- 2.2.6
- 2.2.4
- 2.2.3
- 2.2.2
- 2.2.0
- 2.1.0
- 2.0.0
- 1.15.0
- 1.14.0
- 1.12.2
- 1.12.1
- 1.12.0
- 1.10.0
- 1.9.1
- 1.9.0
- 1.8.4
- 1.8.3
- 1.8.2
- 1.8.1
- 1.8.0
- 1.7.1
- 1.7.0
- 1.6.1
- 1.6.0
- 1.5.1
- 1.5.0
- 1.4.4
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.0
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2024-11-11 16:14:55 UTC
README
This is the application template for OriginPHP.
Installation
Download and install Composer, then run the following command to create your new OriginPHP project.
$ composer create-project originphp/app [project_name]
OriginPHP comes with a dockerized development environment.
Install Docker Desktop then build the docker containers, this must be done from within the project folder. The build process only needs to be done once or if you change anything in the Dockerfile
.
$ cd [project_name]
$ docker-compose build
The container only needs to be built once, after this you will use the up and down commands to start and stop the docker container.
If you just want a web server then run the docker-compose
command
$ docker-compose up
Then you will now be able to access your app at https://localhost/.
To shut down the server
$ docker-compose down
If you want to start the docker container with extra services including MySQL, Redis, Minio, MailHog then run the script
$ bin/docker up
$ bin/docker down
To shutdown the containers hit CTRL C
, this will close the docker container and additional services.
To learn how to remove or add services such as Postwoman, Elasticsearch, Memcached and PostgreSQL, see Dockerized Development Environment