Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,26 @@ Thanks for your interest in contributing to Quantum PHP Framework 💡 Whether y

Quantum consists of **two repositories** that serve different purposes:

🧩 1. `quantum-php-core` **(The core framework)**
🧩 1. `framework` **(The core framework)**

If your goal is to contribute to the core framework (e.g., routing, DI, ORM, view engine, etc.):

1. Fork the repository on GitHub and clone your fork locally:

```bash
git clone https://github.com/your-username/quantum-php-core.git
cd quantum-php-core
git clone https://github.com/your-username/framework.git
cd framework
composer install
vendor/bin/phpunit --stderr
```

🚀 2. `quantum-php-project` **(Starter Project)**
🚀 2. `project` **(Starter Project)**

If you want to run Quantum project locally, see how modules work, or test the framework in action, use the starter project:

```bash
git clone https://github.com/softberg/quantum-php-project.git
cd quantum-php-project
git clone https://github.com/quantum-php/project.git
cd project
composer install
php qt serve
```
Expand Down Expand Up @@ -98,7 +98,7 @@ Notes:

- If your change affects behavior, public APIs, or compatibility (especially breaking changes), update `CHANGELOG.md` in the same branch/PR.

7. Open a Pull Request from your fork → `softberg/quantum-php-core`. Describe **what** you changed, **why**, and **how** to test it. Reference any related issues. Always work in a branch, never directly on `main` of your fork.
7. Open a Pull Request from your fork → `quantum-php/framework`. Describe **what** you changed, **why**, and **how** to test it. Reference any related issues. Always work in a branch, never directly on `main` of your fork.

---

Expand Down
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
</p>

<p align="center">
<a href="https://github.com/softberg/quantum-php-core/actions/workflows/php.yml" >
<img src="https://github.com/softberg/quantum-php-core/actions/workflows/php.yml/badge.svg">
<a href="https://github.com/quantum-php/framework/actions/workflows/php.yml" >
<img src="https://github.com/quantum-php/framework/actions/workflows/php.yml/badge.svg">
</a>
<a href="https://codecov.io/gh/softberg/quantum-php-core" >
<img src="https://codecov.io/gh/softberg/quantum-php-core/branch/master/graph/badge.svg"/>
<a href="https://codecov.io/gh/quantum-php/framework" >
<img src="https://codecov.io/gh/quantum-php/framework/branch/master/graph/badge.svg"/>
</a>
<a href="https://scrutinizer-ci.com/g/softberg/quantum-php-core">
<img src="https://scrutinizer-ci.com/g/softberg/quantum-php-core/badges/quality-score.png?b=master"/>
</a>
<a href="https://github.com/softberg/quantum-php-core/blob/master/LICENSE">
<img src="https://img.shields.io/github/license/softberg/quantum-php-core"/>
<a href="https://github.com/quantum-php/framework/blob/master/LICENSE">
<img src="https://img.shields.io/github/license/quantum-php/framework"/>
</a>
<a href="https://packagist.org/packages/quantum/framework">
<img src="https://img.shields.io/packagist/v/quantum/framework"/>
Expand Down Expand Up @@ -48,7 +48,7 @@ php qt serve
<h2>Quick Demo</h2>
<img src="https://quantumphp.io/assets/img/qt_demo.gif"/>

> **Note:** This repository contains the core code of the Quantum framework. If you want to start a new project visit the main [Quantum PHP Project repository](https://github.com/softberg/quantum-php-project).
> **Note:** This repository contains the core code of the Quantum framework. If you want to start a new project visit the main [Quantum PHP Project repository](https://github.com/quantum-php/project).

<h2>Give it a star if you like the project</h2>
<img width="100" src="https://i.imgur.com/YaY5arh.gif">
Expand All @@ -64,5 +64,4 @@ Please also review our [Code of Conduct](CODE_OF_CONDUCT.md).

<h2>License</h2>

Quantum PHP is licensed under the [MIT License](https://github.com/softberg/quantum-php-core/blob/master/LICENSE). See the LICENSE file for more details.

Quantum PHP is licensed under the [MIT License](https://github.com/quantum-php/framework/blob/master/LICENSE). See the LICENSE file for more details.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"license": "MIT",
"homepage": "https://quantumphp.io",
"support": {
"issues": "https://github.com/softberg/quantum-core/issues",
"source": "https://github.com/softberg/quantum-core"
"issues": "https://github.com/quantum-php/framework/issues",
"source": "https://github.com/quantum-php/framework"
},
"authors": [
{
Expand Down
Loading