Skip to content

Commit d7a0dd0

Browse files
committed
Initial commit
0 parents  commit d7a0dd0

File tree

237 files changed

+32097
-0
lines changed

Some content is hidden

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

237 files changed

+32097
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/vendor
2+
composer.phar
3+
composer.lock
4+
.DS_Store

.gitmodules

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
[submodule "public/vendor/fuelux"]
2+
path = public/vendor/fuelux
3+
url = [email protected]:ExactTarget/fuelux.git
4+
[submodule "public/vendor/x-editable"]
5+
path = public/vendor/x-editable
6+
url = [email protected]:vitalets/x-editable.git
7+
[submodule "public/vendor/jqTree"]
8+
path = public/vendor/jqTree
9+
url = [email protected]:mbraak/jqTree.git
10+
[submodule "public/vendor/jqTreeContextMenu"]
11+
path = public/vendor/jqTreeContextMenu
12+
url = [email protected]:DavidUv/jqTreeContextMenu.git
13+
[submodule "public/vendor/TableDnD"]
14+
path = public/vendor/TableDnD
15+
url = [email protected]:isocra/TableDnD.git
16+
[submodule "public/vendor/bootstrap-colorpicker"]
17+
path = public/vendor/bootstrap-colorpicker
18+
url = [email protected]:mjaalnir/bootstrap-colorpicker.git
19+
[submodule "public/vendor/jQuery-slimScroll"]
20+
path = public/vendor/jQuery-slimScroll
21+
url = [email protected]:rochal/jQuery-slimScroll.git
22+
[submodule "public/vendor/jquery-titlealert"]
23+
path = public/vendor/jquery-titlealert
24+
url = [email protected]:heyman/jquery-titlealert.git
25+
[submodule "public/vendor/jwerty"]
26+
path = public/vendor/jwerty
27+
url = [email protected]:keithamus/jwerty.git
28+
[submodule "public/vendor/darkstrap"]
29+
path = public/vendor/darkstrap
30+
url = [email protected]:riddles8888/darkstrap.git
31+
[submodule "public/vendor/jquery-idletimer"]
32+
path = public/vendor/jquery-idletimer
33+
url = [email protected]:mikesherov/jquery-idletimer.git
34+
[submodule "public/vendor/bootbox"]
35+
path = public/vendor/bootbox
36+
url = [email protected]:makeusabrew/bootbox.git
37+
[submodule "public/vendor/font-awesome"]
38+
path = public/vendor/font-awesome
39+
url = [email protected]:FortAwesome/Font-Awesome.git
40+
[submodule "public/vendor/messenger"]
41+
path = public/vendor/messenger
42+
url = [email protected]:HubSpot/messenger.git
43+
[submodule "public/vendor/form"]
44+
path = public/vendor/form
45+
url = [email protected]:malsup/form.git
46+
[submodule "public/vendor/bootstrap-switch"]
47+
path = public/vendor/bootstrap-switch
48+
url = [email protected]:nostalgiaz/bootstrap-switch.git
49+
[submodule "public/vendor/jcrop"]
50+
path = public/vendor/jcrop
51+
url = [email protected]:tapmodo/Jcrop.git
52+
[submodule "public/vendor/sticky"]
53+
path = public/vendor/sticky
54+
url = [email protected]:garand/sticky.git
55+
[submodule "public/vendor/jansyBootstrap"]
56+
path = public/vendor/jansyBootstrap
57+
url = [email protected]:jasny/bootstrap.git
58+
[submodule "public/vendor/darkstrap3"]
59+
path = public/vendor/darkstrap3
60+
url = [email protected]:stygiansabyss/darkstrap.git
61+
[submodule "public/vendor/bootstrap3"]
62+
path = public/vendor/bootstrap3
63+
url = [email protected]:twbs/bootstrap.git
64+
[submodule "public/vendor/Bootstrap-Image-Gallery"]
65+
path = public/vendor/Bootstrap-Image-Gallery
66+
url = [email protected]:blueimp/Bootstrap-Image-Gallery.git
67+
[submodule "public/vendor/Gallery"]
68+
path = public/vendor/Gallery
69+
url = [email protected]:blueimp/Gallery.git

.travis.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: php
2+
3+
php:
4+
- 5.3
5+
- 5.4
6+
- 5.5
7+
8+
before_script:
9+
- curl -s http://getcomposer.org/installer | php
10+
- php composer.phar install --dev
11+
12+
script: phpunit

composer.json

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"name": "syntax/core",
3+
"description": "A core set of features for laravel sites.",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "Stygian",
8+
"email": "[email protected]"
9+
},
10+
{
11+
"name": "Riddles",
12+
"email": "[email protected]"
13+
}
14+
],
15+
"require": {
16+
"php": ">=5.3.0",
17+
"illuminate/support": "4.1.*",
18+
"way/generators": "dev-master",
19+
"wisembly/elephant.io": "dev-master",
20+
"juy/profiler" : "dev-master",
21+
"intervention/image": "dev-master",
22+
"knplabs/github-api": "*",
23+
"mccool/laravel-auto-presenter": "*"
24+
},
25+
"autoload": {
26+
"classmap": [
27+
"src/controllers",
28+
"src/migrations",
29+
"src/models",
30+
"src/presenters",
31+
"src/services",
32+
"src/views"
33+
],
34+
"psr-0": {
35+
"Syntax\\Core\\": "src/"
36+
}
37+
},
38+
"minimum-stability": "dev"
39+
}

phpunit.xml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit backupGlobals="false"
3+
backupStaticAttributes="false"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
convertErrorsToExceptions="true"
7+
convertNoticesToExceptions="true"
8+
convertWarningsToExceptions="true"
9+
processIsolation="false"
10+
stopOnFailure="false"
11+
syntaxCheck="false"
12+
>
13+
<testsuites>
14+
<testsuite name="Package Test Suite">
15+
<directory suffix=".php">./tests/</directory>
16+
</testsuite>
17+
</testsuites>
18+
</phpunit>

public/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)