Skip to content

Commit 50ed406

Browse files
committed
ilk commit
1 parent 62ade24 commit 50ed406

23 files changed

+3190
-0
lines changed

.gitignore

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
### JetBrains template
2+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
3+
4+
*.iml
5+
6+
## Directory-based project format:
7+
.idea/
8+
# if you remove the above rule, at least ignore the following:
9+
10+
# User-specific stuff:
11+
# .idea/workspace.xml
12+
# .idea/tasks.xml
13+
# .idea/dictionaries
14+
15+
# Sensitive or high-churn files:
16+
# .idea/dataSources.ids
17+
# .idea/dataSources.xml
18+
# .idea/sqlDataSources.xml
19+
# .idea/dynamic.xml
20+
# .idea/uiDesigner.xml
21+
22+
# Gradle:
23+
# .idea/gradle.xml
24+
# .idea/libraries
25+
26+
# Mongo Explorer plugin:
27+
# .idea/mongoSettings.xml
28+
29+
## File-based project format:
30+
*.ipr
31+
*.iws
32+
33+
## Plugin-specific files:
34+
35+
# IntelliJ
36+
/out/
37+
38+
# mpeltonen/sbt-idea plugin
39+
.idea_modules/
40+
41+
# JIRA plugin
42+
atlassian-ide-plugin.xml
43+
44+
# Crashlytics plugin (for Android Studio and IntelliJ)
45+
com_crashlytics_export_strings.xml
46+
crashlytics.properties
47+
crashlytics-build.properties
48+
49+
# Created by .ignore support plugin (hsz.mobi)
50+
51+
vendor

composer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "ifyazilim/ifsistem-php-sdk-v2",
3+
"description": "php ile ifsistem'i entegre yapmak için kullanılır.",
4+
"require": {
5+
"nesbot/carbon": "1.22.*",
6+
"php-di/php-di": "5.4.*",
7+
"symfony/var-dumper": "3.4.*",
8+
"doctrine/annotations": "1.4.*",
9+
"illuminate/support": "5.5.*",
10+
"guzzlehttp/guzzle": "6.3.*"
11+
},
12+
"require-dev": {
13+
"mockery/mockery": "1.0.*",
14+
"phpunit/phpunit": "6.5.*"
15+
},
16+
"autoload": {
17+
"psr-4": {
18+
"SystemApi\\": "src/SystemApi"
19+
}
20+
}
21+
}

0 commit comments

Comments
 (0)