Skip to content

Commit 78b73f1

Browse files
committed
Initial Commit
0 parents  commit 78b73f1

11 files changed

+4195
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea
2+
vendor

composer.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "kubex/c4",
3+
"type": "library",
4+
"config": {
5+
"optimize-autoloader": true,
6+
"preferred-install": "dist",
7+
"sort-packages": true
8+
},
9+
"prefer-stable": true,
10+
"require": {
11+
"cubex/framework": "^4.0",
12+
"kubex/definitions": "^0.12.5"
13+
},
14+
"require-dev": {
15+
"phpunit/phpunit": "^10.3.3"
16+
},
17+
"autoload": {
18+
"psr-4": {
19+
"Kubex\\C4\\": "src/",
20+
"Kubex\\C4\\Tests\\": "tests/"
21+
}
22+
}
23+
}

0 commit comments

Comments
 (0)