PHPackages                             ycloudyusa/yusaopeny-project - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. ycloudyusa/yusaopeny-project

ActiveProject

ycloudyusa/yusaopeny-project
============================

Project template for YMCA Website Services (Former OpenY) projects with composer

4.1.0(2mo ago)221.2k↓44.7%6[4 issues](https://github.com/YCloudYUSA/yusaopeny-project/issues)[11 PRs](https://github.com/YCloudYUSA/yusaopeny-project/pulls)GPL-2.0-or-laterShell

Since Apr 28Pushed 2mo ago3 watchersCompare

[ Source](https://github.com/YCloudYUSA/yusaopeny-project)[ Packagist](https://packagist.org/packages/ycloudyusa/yusaopeny-project)[ RSS](/packages/ycloudyusa-yusaopeny-project/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (14)Versions (95)Used By (0)

 [ ![The YMCA logo](https://camo.githubusercontent.com/4edf75c251dd12ad03cb37904bf6f662967d4dc3ce1e6eec0a1419c6f3b18a66/68747470733a2f2f7777772e796d63616e6f7274682e6f72672f7468656d65732f637573746f6d2f796d63612f696d672f796d63612d6c6f676f2e737667) ](https://ycloud.y.org/open-y-association-websites)

 Y USA Open YMCA
=================

[](#--y-usa-open-ymca)

 An open source platform for YMCAs, by YMCAs built on [Drupal](https://drupal.org).

 [![](https://camo.githubusercontent.com/383ff7420498aa4b7124cd977ca178f4b1835f4819ff9a8b4bcffd784bb4533b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f79636c6f7564797573612f797573616f70656e792d70726f6a6563742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ycloudyusa/yusaopeny-project) [![](https://camo.githubusercontent.com/0a1d672eeb4298a7b6dbb76ebd960e2f38d9aa3af74dff949a10373b73830afa/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646d2f79636c6f7564797573612f797573616f70656e792d70726f6a6563742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ycloudyusa/yusaopeny-project)

---

The [Y USA Open Y Project](https://ycloud.y.org/open-y-association-websites) is a composer based installer for the [Y USA Open Y distribution](https://github.com/YCloudYUSA/yusaopeny).

Requirements
------------

[](#requirements)

### Composer

[](#composer)

If you do not have [Composer](http://getcomposer.org/), you may install it by following the [official instructions](https://getcomposer.org/download/). For usage, see [the documentation](https://getcomposer.org/doc/).

Installation
------------

[](#installation)

### Latest STABLE version

[](#latest-stable-version)

```
composer create-project ycloudyusa/yusaopeny-project MY_PROJECT --no-interaction
cd MY_PROJECT

```

### BETA version install

[](#beta-version-install)

If you need to install beta, you should provide exact version to get it locally

Example:

```
composer create-project ycloudyusa/yusaopeny-project:^4.1.0@beta MY_BETA_PROJECT --no-interaction
cd MY_BETA_PROJECT

```

### Latest DEVELOPMENT version (Drupal 10 2.x)

[](#latest-development-version-drupal-10-2x)

```
composer create-project ycloudyusa/yusaopeny-project:10.2.x-development-dev MY_PROJECT --no-interaction --no-dev
cd MY_PROJECT

```

This command will build project based on the [**Drupal 10 development branch**](https://github.com/ycloudyusa/yusaopeny/commits/10.2.x) release.

See [our how to video](https://youtu.be/jRlinjpTl0c) for the whole process of this command usage.

Development environments
------------------------

[](#development-environments)

You should use composer command without `--no-dev` if you would like to get environment that was configured especially for OpenY development.

```
composer create-project ycloudyusa/yusaopeny-project:10.2.x-development-dev MY_PROJECT --no-interaction
cd MY_PROJECT

```

### CIBox VM

[](#cibox-vm)

[CIBox VM](http://cibox.tools) allows you to make a contribution into OpenY in a few minutes. Just follow steps and then you'll know how to do it.

- [Pre Requirements](https://github.com/ymcatwincities/openy-cibox-vm#pre-requirements)
- [Installation](https://github.com/ymcatwincities/openy-cibox-vm#usage)
- [Local build](https://github.com/ymcatwincities/openy-cibox-vm#reinstall-options)

Read more details on [CIBox VM](https://github.com/ymcatwincities/openy-cibox-vm) repo.

### Docksal

[](#docksal)

[Docksal](http://docksal.io) is a tool for defining and managing development environments.

- [How to develop](https://github.com/ymcatwincities/openy-docksal#how-to-develop)
- [How to run behat tests](https://github.com/ymcatwincities/openy-docksal#how-to-run-behat-tests)

Read more details on [Docksal](https://github.com/ymcatwincities/openy-docksal) repo.

Use Fork for the development
----------------------------

[](#use-fork-for-the-development)

All development happens in the [YUSA Open Y Drupal 10 installation profile](https://github.com/YCloudYUSA/yusaopeny). In order to start development:

1. Create fork of [Open Y installation profile](https://github.com/YCloudYUSA/yusaopeny)
2. Add your repository to `composer.json`

    ```
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/GITHUB_USERNAME/yusaopeny"
        }
    ]

    ```
3. Change a version for `ycloudyusa/yusaopeny` to `dev-10.2.x` or any other branch. E.g.:

    - branch name "bugfix" - version name `dev-bugfix`
    - branch name "feature/workflow" - version name `dev-feature/workflow`

    ```
    "require": {
        "ycloudyusa/yusaopeny": "dev-10.2.x",
    }

    ```

    ```
    "require": {
        "ycloudyusa/yusaopeny": "dev-feature/workflow",
    }

    ```
4. Run `composer update` to update packages
5. Add and commits changes in `docroot/profiles/contrib/openy`. Now it should be pointed to your fork.

Directory structure
-------------------

[](#directory-structure)

DirectoryPurpose[**Y USA Open Y**](https://github.com/ycloudyusa/yusaopeny)`docroot/`Contains Drupal core`docroot/profiles/contrib/openy/`Contains Open Y distribution`vendor/`Contains Y USA Open Y distribution`composer.json`Contains Y USA Open Y distribution[**CIBox VM**](https://github.com/ymcatwincities/openy-cibox-vm) + [**CIBox Build**](https://github.com/ymcatwincities/openy-cibox-build)`cibox/`Contains CIBox libraries`docroot/devops/`DevOps scripts for the installation process`provisioning/`Vagrant configuration`docroot/*.sh`Bash scripts to trigger reinstall scripts`docroot/*.yml`YAML playbooks for the installation process`Vagrantfile`Vagrant index file[**Docksal**](https://github.com/ymcatwincities/openy-docksal)`.docksal/`Docksal configuration`build.sh`Build script for Docksal environmentDocumentation
-------------

[](#documentation)

Documentation about Open Y is available at [ds-docs.y.org](https://sd-docs.y.org). For details please visit .

License
-------

[](#license)

Y USA OpenY Project is licensed under the [GPL-3.0](https://www.gnu.org/licenses/gpl-3.0-standalone.en.html). See the [License file](https://github.com/YCloudYUSA/yusaopeny-project/blob/main/LICENSE) for details.

###  Health Score

53

—

FairBetter than 97% of packages

Maintenance65

Regular maintenance activity

Popularity31

Limited adoption so far

Community26

Small or concentrated contributor base

Maturity79

Established project with proven stability

 Bus Factor1

Top contributor holds 59% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~59 days

Recently: every ~26 days

Total

55

Last Release

76d ago

Major Versions

1.0.10 → 2.0.02019-02-12

2.7 → 9.2.x-dev2022-07-06

3.0 → 10.2.x-dev2023-06-13

3.2.5 → 4.0.0-beta12025-09-23

### Community

Maintainers

![](https://www.gravatar.com/avatar/dbb2bef886bbfabeb180d0a630f4e24b02314277a3ad7aea89f520a2bf2d4f9d?d=identicon)[sanchiz](/maintainers/sanchiz)

![](https://www.gravatar.com/avatar/bf41cdf9f0975a3cc5997aaaff41046eac88c85c7dbcd8410b8b09e35f55c11d?d=identicon)[danylevskyi](/maintainers/danylevskyi)

![](https://www.gravatar.com/avatar/1388b312dca2d4c24fb3474c71a6729b13b255860ff0188b0286013bc703bf5a?d=identicon)[podarok](/maintainers/podarok)

![](https://www.gravatar.com/avatar/6d5c1bf40e232e1ad5826eafb2f06813b331e50d1fd6c0af1f84206cd98d946f?d=identicon)[ymcacodeshare](/maintainers/ymcacodeshare)

![](https://www.gravatar.com/avatar/b9ec36c90ff11b1d55a4429eb5722631c882df30df3cd7106588fb4c1b375bbd?d=identicon)[svicervlad](/maintainers/svicervlad)

---

Top Contributors

[![podarok](https://avatars.githubusercontent.com/u/563412?v=4)](https://github.com/podarok "podarok (209 commits)")[![alexschedrov](https://avatars.githubusercontent.com/u/1316234?v=4)](https://github.com/alexschedrov "alexschedrov (63 commits)")[![svicervlad](https://avatars.githubusercontent.com/u/26228931?v=4)](https://github.com/svicervlad "svicervlad (27 commits)")[![ddrozdik](https://avatars.githubusercontent.com/u/6285570?v=4)](https://github.com/ddrozdik "ddrozdik (12 commits)")[![AndreyMaximov](https://avatars.githubusercontent.com/u/5453109?v=4)](https://github.com/AndreyMaximov "AndreyMaximov (9 commits)")[![ygerasimov](https://avatars.githubusercontent.com/u/294265?v=4)](https://github.com/ygerasimov "ygerasimov (6 commits)")[![afi13](https://avatars.githubusercontent.com/u/2179416?v=4)](https://github.com/afi13 "afi13 (5 commits)")[![duozersk](https://avatars.githubusercontent.com/u/2128648?v=4)](https://github.com/duozersk "duozersk (3 commits)")[![Kerby70](https://avatars.githubusercontent.com/u/5031409?v=4)](https://github.com/Kerby70 "Kerby70 (3 commits)")[![kolesnikoff](https://avatars.githubusercontent.com/u/2058068?v=4)](https://github.com/kolesnikoff "kolesnikoff (3 commits)")[![rahulusagility](https://avatars.githubusercontent.com/u/62141247?v=4)](https://github.com/rahulusagility "rahulusagility (3 commits)")[![AleksandrPrykhodkoDev](https://avatars.githubusercontent.com/u/18702600?v=4)](https://github.com/AleksandrPrykhodkoDev "AleksandrPrykhodkoDev (3 commits)")[![froboy](https://avatars.githubusercontent.com/u/238201?v=4)](https://github.com/froboy "froboy (2 commits)")[![ivan-berezhnov](https://avatars.githubusercontent.com/u/10132087?v=4)](https://github.com/ivan-berezhnov "ivan-berezhnov (2 commits)")[![NightHunterSV](https://avatars.githubusercontent.com/u/5138333?v=4)](https://github.com/NightHunterSV "NightHunterSV (1 commits)")[![anprok](https://avatars.githubusercontent.com/u/16559938?v=4)](https://github.com/anprok "anprok (1 commits)")[![ppbot](https://avatars.githubusercontent.com/u/8455902?v=4)](https://github.com/ppbot "ppbot (1 commits)")[![anpolimus](https://avatars.githubusercontent.com/u/3023950?v=4)](https://github.com/anpolimus "anpolimus (1 commits)")

---

Tags

drupalopenyyusa

### Embed Badge

![Health badge](/badges/ycloudyusa-yusaopeny-project/health.svg)

```
[![Health](https://phpackages.com/badges/ycloudyusa-yusaopeny-project/health.svg)](https://phpackages.com/packages/ycloudyusa-yusaopeny-project)
```

###  Alternatives

[farmos/farmos

A web-based farm record keeping application.

1.2k6.7k1](/packages/farmos-farmos)[civicrm/civicrm-core

Open source constituent relationship management for non-profits, NGOs and advocacy organizations.

728272.9k20](/packages/civicrm-civicrm-core)[thunder/thunder-distribution

The thunder distribution

50634.8k3](/packages/thunder-thunder-distribution)[lullabot/drainpipe

An automated build tool to allow projects to have a set standardized operations scripts.

41716.4k2](/packages/lullabot-drainpipe)[acquia/cohesion

Site Studio

271.6M7](/packages/acquia-cohesion)[acquia/orca

A tool for testing a company's software packages together in the context of a realistic, functioning, best practices Drupal build

32902.4k](/packages/acquia-orca)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
