Skip to content

Commit 963246f

Browse files
committed
init commit
0 parents  commit 963246f

45 files changed

Lines changed: 10161 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/node_modules
2+
/public/build
3+
/public/hot
4+
/public/storage
5+
/storage/*.key
6+
/vendor
7+
.env
8+
.env.backup
9+
.phpunit.result.cache
10+
Homestead.json
11+
Homestead.yaml
12+
auth.json
13+
npm-debug.log
14+
yarn-error.log
15+
/.idea
16+
/.vscode
17+
.env.testing
18+
.php-cs-fixer.cache

composer.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "dev1437/model-parser",
3+
"description": "Parse Laravel Models",
4+
"autoload": {
5+
"psr-4": {
6+
"Dev1437\\ModelParser\\": "src/"
7+
}
8+
},
9+
"autoload-dev": {
10+
"psr-4": {
11+
"Dev1437\\ModelParser\\Tests\\": "tests/"
12+
}
13+
},
14+
"require-dev": {
15+
"phpunit/phpunit": "^9.5.10",
16+
"orchestra/testbench": "^7.0",
17+
"laravel/sanctum": "^3.0",
18+
"doctrine/dbal": "^3.4"
19+
},
20+
"require": {
21+
"php": "^8.1"
22+
}
23+
}

0 commit comments

Comments
 (0)