Skip to content
This repository was archived by the owner on Aug 15, 2023. It is now read-only.

Commit 3ef9680

Browse files
committed
Merge pull request #17 from oliverklee/master
[TASK] Add a .gitignore file and version restrictions in ext_emconf
2 parents e600fac + bdea169 commit 3ef9680

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#########################
2+
# global ignore file
3+
########################
4+
# ignoring temporary files (left by e.g. vim)
5+
# ignoring by common IDE's used directories/files
6+
# dont ignore .rej and .orig as we want to see/clean files after conflict resolution
7+
#
8+
# for local exclude patterns please edit .git/info/exclude
9+
#
10+
*~
11+
*.bak
12+
*.idea
13+
*.project
14+
*.swp
15+
.buildpath
16+
.cache
17+
.project
18+
.session
19+
.settings
20+
.TemporaryItems
21+
.webprj
22+
nbproject
23+

ext_emconf.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
'version' => '0.0.1',
2121
'constraints' => array(
2222
'depends' => array(
23-
'cms' => '',
24-
'extbase' => '',
25-
'fluid' => '',
23+
'typo3' => '4.5.0-6.1.99',
24+
'extbase' => '1.3.0-6.1.99',
25+
'fluid' => '1.3.0-6.1.99',
2626
),
2727
'conflicts' => array(
2828
),

0 commit comments

Comments
 (0)