Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.

Commit 838d29b

Browse files
committed
Merge pull request #284 from PhileCMS/develop
Develop
2 parents 8465bf1 + 650743a commit 838d29b

96 files changed

Lines changed: 5770 additions & 4788 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,14 @@
11
# EditorConfig is awesome: http://EditorConfig.org
22

3-
# top-most EditorConfig file
43
root = true
5-
charset = utf-8
6-
# Get rid of whitespace to avoid diffs with a bunch of EOL changes
7-
trim_trailing_whitespace = true
84

9-
# Unix-style newlines with a newline ending every file
105
[*]
6+
charset = utf-8
117
end_of_line = lf
8+
indent_style = space
9+
indent_size = 2
10+
trim_trailing_whitespace = true
1211
insert_final_newline = true
1312

14-
# Tab indentation
15-
[*.js]
16-
indent_style = tab
17-
indent_size = 4
18-
19-
# Indentation for PHP files
2013
[*.php]
21-
indent_style = tab
2214
indent_size = 4

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
build.xml export-ignore
2+
/CONTRIBUTING.md export-ignore
23
Icon.png export-ignore
34
phing export-ignore
45
tests/ export-ignore
6+
.github/ export-ignore
57
.gitattributes export-ignore
68
.gitignore export-ignore
79
.editorconfig export-ignore

.github/CONTRIBUTING.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## Contributing
2+
3+
Help make PhileCMS better by checking out the GitHub repository and submitting pull requests.
4+
5+
Fork and make pull requests to the `develop` branch.
6+
7+
[See Phile wiki for detailed info.](https://github.com/PhileCMS/Phile/wiki/%5BDEVELOPER%5D-Developer-Guidelines)
8+
9+
If you create a plugin please add it to the [Plugin Wiki](https://github.com/PhileCMS/Phile/wiki/%5BCOMMUNITY%5D-Plugins).

.github/ISSUE_TEMPLATE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Please report your issue with the following information:
2+
3+
### Excpected behavior
4+
5+
### Actual behavior
6+
7+
### Steps to reproduce the behavior
8+
9+
### Additional information

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[TASK|BUGFIX|FEATURE] A meaningfull first line of your pull request
2+
3+
Fixes: # .
4+
5+
Changes proposed in this pull request:
6+
7+
8+
@PhileCMS/Phile please review this pull request

.travis.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
sudo: false
2+
13
# Env
24
env:
35
global:
@@ -7,10 +9,15 @@ language: php
79
php:
810
- 5.4
911
- 5.5
10-
- 5.6
12+
13+
env:
14+
global:
15+
- PHPCS=0
1116

1217
matrix:
1318
include:
19+
- php: 5.6
20+
env: PHPCS=1
1421
- php: hhvm
1522
env: HHVM=1
1623

@@ -33,6 +40,8 @@ before_script:
3340
- sh -c "if [ '$HHVM' = '1' ]; then echo 'session.gc_probability = 0' >> /etc/hhvm/php.ini; fi"
3441
- composer selfupdate --quiet
3542
- composer install -n --prefer-source --no-dev
43+
44+
- sh -c "if [ '$PHPCS' = '1' ]; then composer install --prefer-dist --no-interaction; fi"
3645
script:
3746
- |
3847
echo;
@@ -45,3 +54,4 @@ script:
4554
exit 99;
4655
fi
4756
"
57+
- sh -c "if [ '$PHPCS' = '1' ]; then lib/vendor/bin/phpcs --standard=PSR2 -p --extensions=php --ignore=lib/vendor/ lib/ plugins/phile/ .; fi"

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ composer create-project --no-dev phile-cms/phile
5757

5858
Copy it to your server web root. Open the root of PhileCMS on you web server. If you are using the default MAMP install, that would be [http://localhost:8888/Phile](http://localhost:8888/Phile). Using WAMP, [http://localhost/Phile](http://localhost/Phile). If you are using something else, you probably know how to run a typical PHP site.
5959

60-
On first run you will hit a setup page. **Follow the instructions on the [setup page](https://github.com/PhileCMS/Phile/blob/master/content/setup.md) to complete the installation**.
60+
On first run you will hit a setup page. **Follow the instructions on the [setup page](https://github.com/PhileCMS/Phile/blob/master/plugins/phile/setupCheck/setup.md) to complete the installation**.
6161

6262
[For detailed instructions please see the Installation wiki page](https://github.com/PhileCMS/Phile/wiki/%5BHOW-TO%5D-Installation).
6363

@@ -98,6 +98,7 @@ Issues with plugins should be reported **on the offending plugins homepage** thi
9898
## Contributing
9999

100100
Help make PhileCMS better by checking out the GitHub repository and submitting pull requests.
101+
See [developer guildlines](https://github.com/PhileCMS/Phile/wiki/%5BDEVELOPER%5D-Developer-Guidelines) for more information.
101102

102103
If you create a plugin please add it to the [Plugin Wiki](https://github.com/PhileCMS/Phile/wiki/%5BCOMMUNITY%5D-Plugins).
103104

0 commit comments

Comments
 (0)