Compare commits
13 Commits
acef60df76
..
0.0.1
| Author | SHA1 | Date | |
|---|---|---|---|
| 3f82eaf020 | |||
| 1fd7fc1c74 | |||
| 86b8eff349 | |||
| 55254ac5fa | |||
| 62c1a4cc07 | |||
| 8d39c5a942 | |||
| 1eb14107c3 | |||
| 6a16d83074 | |||
| 474a8990a2 | |||
| c604183fea | |||
| 4b279fd4a2 | |||
| 9c8ba92570 | |||
| d38ab4c765 |
+3
-11
@@ -1,18 +1,10 @@
|
|||||||
# ---> Composer
|
|
||||||
composer.phar
|
composer.phar
|
||||||
|
composer.lock
|
||||||
/vendor/
|
/vendor/
|
||||||
|
/nbproject/
|
||||||
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
|
|
||||||
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
|
|
||||||
# composer.lock
|
|
||||||
|
|
||||||
# ---> NetBeans
|
|
||||||
**/nbproject/private/
|
|
||||||
**/nbproject/Makefile-*.mk
|
|
||||||
**/nbproject/Package-*.bash
|
|
||||||
build/
|
build/
|
||||||
nbbuild/
|
nbbuild/
|
||||||
dist/
|
dist/
|
||||||
nbdist/
|
nbdist/
|
||||||
.nb-gradle/
|
.nb-gradle/
|
||||||
|
test.php
|
||||||
|
|||||||
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"name": "potter/application",
|
||||||
|
"type": "library",
|
||||||
|
"require": {
|
||||||
|
"php": "^8.5",
|
||||||
|
"illuminate/contracts": "^13.17",
|
||||||
|
"laravel/framework": "^13.17",
|
||||||
|
"symfony/http-kernel": "^8.1"
|
||||||
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Potter\\Application\\": "src/Potter/Application/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Jay Potter",
|
||||||
|
"email": "j@ypotter.ca"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"minimum-stability": "stable"
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Potter\Application;
|
||||||
|
|
||||||
|
use \Illuminate\Foundation\Application as BaseApplication;
|
||||||
|
|
||||||
|
abstract class AbstractApplication extends BaseApplication implements ApplicationInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Potter\Application;
|
||||||
|
|
||||||
|
final class Application extends AbstractApplication
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Potter\Application;
|
||||||
|
|
||||||
|
use \Illuminate\Contracts\Foundation\Application as ApplicationContract;
|
||||||
|
use \Illuminate\Contracts\Foundation\CachesConfiguration;
|
||||||
|
use \Illuminate\Contracts\Foundation\CachesRoutes;
|
||||||
|
use \Symfony\Component\HttpKernel\HttpKernelInterface;
|
||||||
|
|
||||||
|
interface ApplicationInterface extends ApplicationContract,
|
||||||
|
CachesConfiguration, CachesRoutes, HttpKernelInterface
|
||||||
|
{ }
|
||||||
Reference in New Issue
Block a user