Skip to content

Commit 77c929f

Browse files
initial commit
1 parent 9b20679 commit 77c929f

File tree

10 files changed

+4868
-0
lines changed

10 files changed

+4868
-0
lines changed

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
indent_style = space
9+
indent_size = 4
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
indent_style = tab
14+
15+
[*.{yml,yaml}]
16+
indent_size = 2
17+

.gitattributes

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
* text=auto eol=lf
2+
*.php diff=php
3+
*.md diff=markdown
4+
*.xml diff=xml
5+
6+
/.gitignore export-ignore
7+
/.gitattributes export-ignore
8+
/.editorconfig export-ignore
9+
/.github/ export-ignore
10+
/tests/ export-ignore
11+
/composer.lock export-ignore
12+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

CHANGELOG.md

Whitespace-only changes.

composer.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "sushilk/codeigniter-api",
3+
"description": "CodeIgniter 4 API",
4+
"type": "library",
5+
"require": {
6+
"php": "^8.1",
7+
"codeigniter4/framework": "^4.6",
8+
"firebase/php-jwt": "^7.0"
9+
},
10+
"require-dev": {
11+
"phpunit/phpunit": "^12.5",
12+
"phpstan/phpstan": "^2.1",
13+
"friendsofphp/php-cs-fixer": "^3.93",
14+
"squizlabs/php_codesniffer": "^4.0",
15+
"rector/rector": "^2.3",
16+
"phpstan/phpstan-phpunit": "^2.0",
17+
"phpstan/phpstan-deprecation-rules": "^2.0"
18+
},
19+
"license": "MIT",
20+
"autoload": {
21+
"psr-4": {
22+
"Sushilk\\CodeigniterApi\\": "src/"
23+
}
24+
},
25+
"authors": [
26+
{
27+
"name": "Sushil Kumar",
28+
"email": "[email protected]"
29+
}
30+
],
31+
"minimum-stability": "dev",
32+
"prefer-stable": true
33+
}

0 commit comments

Comments
 (0)