Skip to content

Commit aa24278

Browse files
author
Greg Bowler
committed
Add dependencies
1 parent d0d487f commit aa24278

File tree

5 files changed

+2948
-3
lines changed

5 files changed

+2948
-3
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.idea
2+
/vendor
3+
/style/.sass-cache
4+
/www

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The PHP.Gt website.
2-
===================
1+
The www.php.gt website.
2+
=======================
33

4-
This repository holds the source code for the official PHP.Gt website.
4+
This repository holds the source code for the official PHP.Gt website and documentation.

composer.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"repositories": [
3+
{
4+
"type": "path",
5+
"url": "/home/g105b/Code/PhpGt/*"
6+
}
7+
],
8+
"minimum-stability": "dev",
9+
10+
"name": "phpgt/website",
11+
"description": "The public www.php.gt website and documentation",
12+
13+
"require": {
14+
"phpgt/webengine": "dev-master"
15+
},
16+
17+
"autoload": {
18+
"psr-4": {
19+
"Gt\\Website\\": "./class"
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)