You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `helixphp/cycle-orm` package has been successfully updated to use the published version of `helixphp/core` from Packagist instead of a local path dependency.
8
+
9
+
### 🔧 Changes Made
10
+
11
+
#### composer.json Updates
12
+
```diff
13
+
- "repositories": [
14
+
- {
15
+
- "type": "path",
16
+
- "url": "../helixphp-core"
17
+
- }
18
+
- ],
19
+
"require": {
20
+
"php": "^8.1",
21
+
- "helixphp/core": "@dev",
22
+
+ "helixphp/core": "^1.0",
23
+
"cycle/orm": "^2.10",
24
+
...
25
+
},
26
+
- "minimum-stability": "dev",
27
+
+ "minimum-stability": "stable",
28
+
```
29
+
30
+
### ✅ Test Results
31
+
32
+
```
33
+
PHPUnit 10.5.47
34
+
Tests: 67, Assertions: 242
35
+
Status: ✅ ALL TESTS PASSING
36
+
```
37
+
38
+
### 📦 Dependencies Installed
39
+
40
+
-**helixphp/core**: v1.0.0 (from Packagist)
41
+
-**cycle/orm**: v2.10.1
42
+
-**All other dependencies**: Successfully resolved
43
+
44
+
### 🎯 Benefits
45
+
46
+
1.**Production Ready**: No longer depends on local development paths
47
+
2.**CI/CD Compatible**: Works in any environment without local dependencies
0 commit comments