packagist.org网站镜像代码

Jordi Boggiano b0e6d1b905 Ignore branches which can not be parsed as constraints 5 年之前
.github e74980402c Create FUNDING.yml 5 年之前
app fbe18a041a Add a way for users to delete their own account if they have no packages 5 年之前
src 3150f30ba9 Always bump the crawl date even if update failure was already notified 5 年之前
web b232562746 Handle ELB headers 6 年之前
.gitignore 5ae0c04d33 Add cs cache to gitignore 9 年之前
.travis.yml 2f54ba18c6 Update travis build target 6 年之前
LICENSE 4c7b8e0226 Initial commit 13 年之前
README.md 8a601df4f9 Merge branch 'master' into feature/dev-setup 5 年之前
composer.json 4aa3b70387 Merge remote-tracking branch 'colinodell/feature/2fa' 5 年之前
composer.lock b0e6d1b905 Ignore branches which can not be parsed as constraints 5 年之前
phpunit.xml.dist 5c426e3f25 Fix test suite deprecation 6 年之前

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
    
  6. Run a CRON job app/console packagist:run-workers to make sure packages update.

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