Skip to content

Commit d2bd684

Browse files
committed
Initial commit
1 parent c1e2f90 commit d2bd684

File tree

7 files changed

+2948
-0
lines changed

7 files changed

+2948
-0
lines changed

composer.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"name": "cubicl/php-object-graph-generator",
3+
"description": "A sorting library for PHP",
4+
"homepage": "https://github.com/cubicldev/php-object-graph-generator",
5+
"type": "library",
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "Christian Blank",
10+
"email": "christian@cubicl.de",
11+
"homepage": "https://cubicl.de"
12+
}
13+
],
14+
"minimum-stability": "beta",
15+
"require-dev": {
16+
"phpunit/phpunit": "^9.0",
17+
"pestphp/pest": "^0.1.5",
18+
"phpstan/phpstan": "^0.12.25"
19+
},
20+
"scripts": {
21+
"check": ["@analyze", "@test"],
22+
"test": "pest tests",
23+
"analyze": "phpstan analyse --level max src"
24+
},
25+
26+
"autoload": {
27+
"psr-4": {
28+
"Cubicl\\ObjectGraphGenerator\\": [
29+
"src"
30+
],
31+
"Cubicl\\ObjectGraphGenerator\\Tests\\": [
32+
"tests"
33+
]
34+
}
35+
},
36+
"require": {
37+
"fzaninotto/faker": "^1.9",
38+
"symfony/property-info": "^5.1@RC"
39+
}
40+
}

0 commit comments

Comments
 (0)