Skip to content

Commit 9423ecf

Browse files
committed
Initial package development
1 parent f9c0e29 commit 9423ecf

File tree

124 files changed

+1310
-8279
lines changed

Some content is hidden

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

124 files changed

+1310
-8279
lines changed

.env.example

Lines changed: 0 additions & 37 deletions
This file was deleted.

.gitattributes

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
* text=auto
2-
*.css linguist-vendored
3-
*.scss linguist-vendored
4-
*.js linguist-vendored
2+
3+
/.github export-ignore
4+
.editorconfig export-ignore
5+
.gitattributes export-ignore
6+
.gitignore export-ignore
7+
phpunit.xml.dist export-ignore

.github/ISSUE_TEMPLATE.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
- Canvas Version: #.#.#
2+
- PHP Version:
3+
4+
### Description:
5+
6+
7+
### Steps To Reproduce:

.gitignore

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,9 @@
1-
/node_modules
2-
/public/hot
3-
/public/storage
4-
/public/vendor
5-
/storage/*.key
61
/vendor
2+
composer.phar
3+
composer.lock
4+
.DS_Store
5+
Thumbs.db
6+
/phpunit.xml
77
/.idea
8-
/.vagrant
9-
/.storage
10-
/storage/*.index
11-
/storage/*.lock
12-
Homestead.json
13-
Homestead.yaml
14-
npm-debug.log
15-
yarn-error.log
16-
.env
17-
config/blog.php
8+
/.vscode
9+
.phpunit.result.cache

.travis.yml

Lines changed: 6 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,14 @@
1-
notifications:
2-
slack: cnvs-io:4TcmkF2B3kYyUkhfJmL8dImj
3-
4-
dist: trusty
5-
6-
sudo: required
7-
81
language: php
92

103
php:
11-
- 7.0.21
12-
- 7.1
13-
- 7.2
4+
- 7.1
5+
- 7.2
146

15-
env:
16-
global:
17-
- setup=basic
18-
19-
matrix:
20-
allow_failures:
21-
- php: 7.2
22-
fast_finish: true
7+
sudo: false
238

249
before_install:
25-
- if [[ $TRAVIS_PHP_VERSION != 7.2 ]] ; then phpenv config-rm xdebug.ini; fi
26-
- mv .env.example .env
27-
28-
install:
29-
- composer install --ignore-platform-reqs
10+
- phpenv config-rm xdebug.ini
3011

31-
before_script:
32-
- php artisan canvas:publish:assets -y
33-
- php artisan canvas:publish:config -y
34-
- php artisan key:generate
35-
- echo '1485524707' > storage/canvas_installed.lock
12+
install: travis_retry composer install --no-interaction --prefer-dist --no-suggest
3613

37-
script:
38-
- vendor/bin/phpunit
14+
script: vendor/bin/phpunit --verbose

app/Console/Kernel.php

Lines changed: 0 additions & 40 deletions
This file was deleted.

app/Exceptions/Handler.php

Lines changed: 0 additions & 81 deletions
This file was deleted.

app/Http/Controllers/Controller.php

Lines changed: 0 additions & 9 deletions
This file was deleted.

app/Http/Kernel.php

Lines changed: 0 additions & 50 deletions
This file was deleted.

app/Http/Middleware/EncryptCookies.php

Lines changed: 0 additions & 17 deletions
This file was deleted.

app/Http/Middleware/RedirectIfAuthenticated.php

Lines changed: 0 additions & 26 deletions
This file was deleted.

app/Http/Middleware/VerifyCsrfToken.php

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)