packagist.org网站镜像代码

Jordi Boggiano 8fd9c849ff Make a minimal lock file change vor 5 Jahren
app 2afcff7cf3 Fix timestamp returned when doing full dumps vor 5 Jahren
src 85478b015c Fix deprecation notice causing failed tests vor 5 Jahren
web b232562746 Handle ELB headers vor 6 Jahren
.gitignore 5ae0c04d33 Add cs cache to gitignore vor 9 Jahren
.travis.yml 2f54ba18c6 Update travis build target vor 6 Jahren
LICENSE 4c7b8e0226 Initial commit vor 13 Jahren
README.md ae8439ae09 Update the readme to give more detailed development instructions vor 5 Jahren
composer.json 6f571266f9 Add composer parameter handler for prompts on first install vor 5 Jahren
composer.lock 8fd9c849ff Make a minimal lock file change vor 5 Jahren
phpunit.xml.dist 5c426e3f25 Fix test suite deprecation vor 6 Jahren

README.md

Packagist

Package Repository Website for Composer, see the about page on packagist.org for more.

This project is not meant for re-use.

It is open source to make it easy to contribute. We provide no support if you want to run your own, and will do breaking changes without notice.

Check out Private Packagist if you want to host your own packages.

Development

These steps are provided for development purposes only.

Requirements

  • PHP for the web app
  • Symfony CLI to run the web server
  • MySQL for the main data store
  • Redis for some functionality (favorites, download statistics)
  • git / svn / hg depending on which repositories you want to support

Installation

  1. Clone the repository
  2. Create 2 databases:
    • packagist - for the web app
    • packagist_test - for running the tests
  3. Install dependencies:

    composer install
    

    The composer install will prompt you for the database connection details on first install.

  4. Setup the database:

    app/console doctrine:schema:create
    
  5. Start the web server:

    symfony serve
    

You should now be able to access the site, create a user, etc.