Skip to content

Commit 6b4d0a9

Browse files
committed
Cleanup repo meta files
- Renamed LICENSE.txt to LICENSE.md - Renamed readme.md to README.md - Moved phpunit.php to tests/bootstrap.php (updated the require path) - Renamed phpunit.xml to phpunit.xml.dist (updated the bootstrap file) - Cleaned up .gitignore - Fixed composer.json homepage
1 parent 5997a38 commit 6b4d0a9

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/lumen.log
21
/vendor
2+
composer.phar
33
composer.lock
4-
.env

LICENSE.txt LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) <Taylor Otwell>
3+
Copyright (c) Taylor Otwell
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

readme.md README.md

File renamed without changes.

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "The Laravel Lumen Framework.",
44
"keywords": ["framework", "laravel", "lumen"],
55
"license": "MIT",
6-
"homepage": "http://laravel.com",
6+
"homepage": "https://lumen.laravel.com",
77
"support": {
88
"issues": "https://github.com/laravel/lumen-framework/issues",
99
"source": "https://github.com/laravel/lumen-framework"

phpunit.xml phpunit.xml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit backupGlobals="false"
33
backupStaticAttributes="false"
4-
bootstrap="phpunit.php"
4+
bootstrap="tests/bootstrap.php"
55
colors="true"
66
convertErrorsToExceptions="true"
77
convertNoticesToExceptions="true"

phpunit.php tests/bootstrap.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
|
1313
*/
1414

15-
require __DIR__.'/vendor/autoload.php';
15+
require __DIR__.'/../vendor/autoload.php';
1616

1717
/*
1818
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)