Skip to content

Commit f3a8705

Browse files
authored
Merge pull request #553 from armanist/issue/repo-metadata-transition
Issue/repo metadata transition
2 parents 3c99dd9 + fcf17ac commit f3a8705

3 files changed

Lines changed: 17 additions & 18 deletions

File tree

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,26 @@ Thanks for your interest in contributing to Quantum PHP Framework 💡 Whether y
1717

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

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

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

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

2626
```bash
27-
git clone https://github.com/your-username/quantum-php-core.git
28-
cd quantum-php-core
27+
git clone https://github.com/your-username/framework.git
28+
cd framework
2929
composer install
3030
vendor/bin/phpunit --stderr
3131
```
3232

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

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

3737
```bash
38-
git clone https://github.com/softberg/quantum-php-project.git
39-
cd quantum-php-project
38+
git clone https://github.com/quantum-php/project.git
39+
cd project
4040
composer install
4141
php qt serve
4242
```
@@ -98,7 +98,7 @@ Notes:
9898

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

101-
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.
101+
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.
102102

103103
---
104104

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010
</p>
1111

1212
<p align="center">
13-
<a href="https://github.com/softberg/quantum-php-core/actions/workflows/php.yml" >
14-
<img src="https://github.com/softberg/quantum-php-core/actions/workflows/php.yml/badge.svg">
13+
<a href="https://github.com/quantum-php/framework/actions/workflows/php.yml" >
14+
<img src="https://github.com/quantum-php/framework/actions/workflows/php.yml/badge.svg">
1515
</a>
16-
<a href="https://codecov.io/gh/softberg/quantum-php-core" >
17-
<img src="https://codecov.io/gh/softberg/quantum-php-core/branch/master/graph/badge.svg"/>
16+
<a href="https://codecov.io/gh/quantum-php/framework" >
17+
<img src="https://codecov.io/gh/quantum-php/framework/branch/master/graph/badge.svg"/>
1818
</a>
1919
<a href="https://scrutinizer-ci.com/g/softberg/quantum-php-core">
2020
<img src="https://scrutinizer-ci.com/g/softberg/quantum-php-core/badges/quality-score.png?b=master"/>
2121
</a>
22-
<a href="https://github.com/softberg/quantum-php-core/blob/master/LICENSE">
23-
<img src="https://img.shields.io/github/license/softberg/quantum-php-core"/>
22+
<a href="https://github.com/quantum-php/framework/blob/master/LICENSE">
23+
<img src="https://img.shields.io/github/license/quantum-php/framework"/>
2424
</a>
2525
<a href="https://packagist.org/packages/quantum/framework">
2626
<img src="https://img.shields.io/packagist/v/quantum/framework"/>
@@ -48,7 +48,7 @@ php qt serve
4848
<h2>Quick Demo</h2>
4949
<img src="https://quantumphp.io/assets/img/qt_demo.gif"/>
5050

51-
> **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).
51+
> **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).
5252
5353
<h2>Give it a star if you like the project</h2>
5454
<img width="100" src="https://i.imgur.com/YaY5arh.gif">
@@ -64,5 +64,4 @@ Please also review our [Code of Conduct](CODE_OF_CONDUCT.md).
6464

6565
<h2>License</h2>
6666

67-
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.
68-
67+
Quantum PHP is licensed under the [MIT License](https://github.com/quantum-php/framework/blob/master/LICENSE). See the LICENSE file for more details.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"license": "MIT",
1010
"homepage": "https://quantumphp.io",
1111
"support": {
12-
"issues": "https://github.com/softberg/quantum-core/issues",
13-
"source": "https://github.com/softberg/quantum-core"
12+
"issues": "https://github.com/quantum-php/framework/issues",
13+
"source": "https://github.com/quantum-php/framework"
1414
},
1515
"authors": [
1616
{

0 commit comments

Comments
 (0)