objective-php / starter-kit
Objective PHP Project Template
Installs: 271
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 7
Forks: 5
Open Issues: 12
Type:skeleton
Requires
- php: >=7.0
- objective-php/application: ^2.0
- objective-php/cli: ^2.0.0-beta
- objective-php/phtml-action: ^2.0
- objective-php/rest-action: ^2.0
- objective-php/services-factory: ^2.0
Requires (Dev)
- dev-master
- v2.0.2
- v2.0.1
- v2.0.0
- v1.1.8
- v1.1.7
- v1.1.6
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0
- dev-dependabot/npm_and_yarn/qs-6.3.3
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/loader-utils-1.4.2
- dev-dependabot/npm_and_yarn/node-sass-7.0.0
- dev-dependabot/npm_and_yarn/shelljs-0.8.5
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/y18n-3.2.2
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/jquery-3.5.0
- dev-dependabot/npm_and_yarn/acorn-5.7.4
This package is auto-updated.
Last update: 2024-11-07 14:01:02 UTC
README
Project topic
Typical Objective PHP project arborescence, with minimal workflow and configuration implementation.
This is where to start your own Objective PHP project.
How to make it work
A few simple steps are needed to get this application up and running:
The next step assumes that composer is available in your PATH
# install the project and its dependencies
composer create-project objective-php/starter-kit [project-name]
cd [project-name]
# run a local web server
php -S localhost:8001 -t public
You can then open http://localhost:8001 to access your brand new project. Note that the framework will show itself much more efficient when using a production grade web server (as Apache or Nginx), while the PHP built-in server will allow you to make the starter kit running within seconds.