File tree 3 files changed +69
-0
lines changed
3 files changed +69
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Autodetect text files
2
+ * text =auto
3
+
4
+ # ...Unless the name matches the following overriding patterns
5
+
6
+ # Sources
7
+ * .php text
8
+ * .css text
9
+ * .js text
10
+ * .txt text
11
+ * .md text
12
+ * .xml text
13
+ * .json text
14
+ * .bat text
15
+ * .sql text
16
+ * .xml text
17
+ * .yml text
18
+
19
+ # Images
20
+ * .png binary
21
+ * .jpg binary
22
+ * .gif binary
23
+ * .ttf binary
24
+
25
+ # Ignore all test and documentation for archive
26
+ /.editorconfig export-ignore
27
+ /.gitattributes export-ignore
28
+ /.gitignore export-ignore
29
+ /.codeclimate.yml export-ignore
30
+ /.scrutinizer.yml export-ignore
31
+ /.travis.yml export-ignore
32
+ /.styleci.yml export-ignore
33
+ /tests export-ignore
34
+ /docs export-ignore
Original file line number Diff line number Diff line change
1
+ # netbeans project files
2
+ /nbproject /
3
+
4
+ # composer vendor dir
5
+ /vendor /
6
+
7
+ # composer.lock in applications is ignored since it's automatically created by composer when application is installed
8
+ /composer.lock
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " dzarezenko/poloniex-api" ,
3
+ "description" : " PHP wrapper for the Poloniex API." ,
4
+ "type" : " library" ,
5
+ "keywords" : [" poloniex" , " api" ],
6
+ "license" : " MIT" ,
7
+ "authors" : [
8
+ {
9
+ "name" : " Dmytro Zarezenko" ,
10
+ "email" : " dmytro.zarezenko@gmail.com" ,
11
+ "homepage" : " https://github.com/dzarezenko" ,
12
+ "role" : " Development"
13
+ }
14
+ ],
15
+ "support" : {
16
+ "email" : " dmytro.zarezenko@gmail.com"
17
+ },
18
+ "minimum-stability" : " dev" ,
19
+ "require" : {
20
+ "php" : " >=5.4.0"
21
+ },
22
+ "autoload" : {
23
+ "psr-4" : {
24
+ "poloniex\\ api\\ " : " src/"
25
+ }
26
+ }
27
+ }
You can’t perform that action at this time.
0 commit comments