Skip to content
  • Sponsor CodeWithSushil/json-db

  • Notifications You must be signed in to change notification settings
  • Fork 1

Commit dfd752a

Browse files
committedJan 20, 2025
Json db
1 parent 1966c2b commit dfd752a

6 files changed

+1977
-0
lines changed
 

‎.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
<<<<<<< HEAD
12
composer.phar
23
/vendor/
34

45
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
56
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
67
# composer.lock
8+
=======
9+
/vendor/
10+
data.json
11+
index.php
12+
>>>>>>> 2c4b1f2 (Json db)

‎composer.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "jsondb/jsondb",
3+
"description": "JSON DB as a Database for Testing APIs and minimalist project",
4+
"type": "library",
5+
"keywords": ["jsondb", "database"],
6+
"require": {
7+
"ext-json": "*"
8+
},
9+
"require-dev": {
10+
"phpstan/phpstan": "^2.1",
11+
"phpunit/phpunit": "^11.5"
12+
},
13+
"license": "MIT",
14+
"autoload": {
15+
"psr-4": {
16+
"App\\": "src/"
17+
}
18+
},
19+
"autoload-dev": {
20+
"psr-4": {
21+
"Tests\\": "tests/"
22+
}
23+
},
24+
"authors": [
25+
{
26+
"name": "Sushil Kumar",
27+
"email": "sushilkumbhar77@gmail.com"
28+
}
29+
],
30+
"minimum-stability": "dev",
31+
"prefer-stable": true
32+
}

0 commit comments

Comments
 (0)
Please sign in to comment.