Skip to content

Commit

Permalink
Added License
Browse files Browse the repository at this point in the history
  • Loading branch information
Tbaile committed Oct 26, 2022
1 parent 515074b commit fd1cf31
Show file tree
Hide file tree
Showing 14 changed files with 726 additions and 0 deletions.
661 changes: 661 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions app/Console/Commands/GeoIPDownloadCommand.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php

#
# Copyright (C) 2022 Nethesis S.r.l.
# SPDX-License-Identifier: AGPL-3.0-or-later
#

namespace App\Console\Commands;

use Illuminate\Console\Command;
Expand Down
5 changes: 5 additions & 0 deletions app/Console/Commands/GeoIpLocateCommand.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php

#
# Copyright (C) 2022 Nethesis S.r.l.
# SPDX-License-Identifier: AGPL-3.0-or-later
#

namespace App\Console\Commands;

use App\Logic\GeoIpLocator;
Expand Down
5 changes: 5 additions & 0 deletions app/Console/Commands/MigrationCommand.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php

#
# Copyright (C) 2022 Nethesis S.r.l.
# SPDX-License-Identifier: AGPL-3.0-or-later
#

namespace App\Console\Commands;

use App\Http\Requests\StoreInstallationRequest;
Expand Down
5 changes: 5 additions & 0 deletions app/Console/Commands/SetupCommand.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php

#
# Copyright (C) 2022 Nethesis S.r.l.
# SPDX-License-Identifier: AGPL-3.0-or-later
#

namespace App\Console\Commands;

use Illuminate\Console\Command;
Expand Down
5 changes: 5 additions & 0 deletions app/Http/Controllers/InstallationController.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php

#
# Copyright (C) 2022 Nethesis S.r.l.
# SPDX-License-Identifier: AGPL-3.0-or-later
#

namespace App\Http\Controllers;

use App\Http\Requests\IndexInstallationRequest;
Expand Down
5 changes: 5 additions & 0 deletions app/Http/Requests/IndexInstallationRequest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php

#
# Copyright (C) 2022 Nethesis S.r.l.
# SPDX-License-Identifier: AGPL-3.0-or-later
#

namespace App\Http\Requests;

use Illuminate\Foundation\Http\FormRequest;
Expand Down
5 changes: 5 additions & 0 deletions app/Http/Requests/StoreInstallationRequest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php

#
# Copyright (C) 2022 Nethesis S.r.l.
# SPDX-License-Identifier: AGPL-3.0-or-later
#

namespace App\Http\Requests;

use Illuminate\Foundation\Http\FormRequest;
Expand Down
5 changes: 5 additions & 0 deletions app/Logic/GeoIpLocator.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php

#
# Copyright (C) 2022 Nethesis S.r.l.
# SPDX-License-Identifier: AGPL-3.0-or-later
#

namespace App\Logic;

use GeoIp2\Record\Country;
Expand Down
5 changes: 5 additions & 0 deletions app/Logic/GeoIpLocatorImpl.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php

#
# Copyright (C) 2022 Nethesis S.r.l.
# SPDX-License-Identifier: AGPL-3.0-or-later
#

namespace App\Logic;

use GeoIp2\Database\Reader;
Expand Down
5 changes: 5 additions & 0 deletions app/Models/Country.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php

#
# Copyright (C) 2022 Nethesis S.r.l.
# SPDX-License-Identifier: AGPL-3.0-or-later
#

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
Expand Down
5 changes: 5 additions & 0 deletions app/Models/Installation.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php

#
# Copyright (C) 2022 Nethesis S.r.l.
# SPDX-License-Identifier: AGPL-3.0-or-later
#

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
Expand Down
5 changes: 5 additions & 0 deletions app/Models/User.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php

#
# Copyright (C) 2022 Nethesis S.r.l.
# SPDX-License-Identifier: AGPL-3.0-or-later
#

namespace App\Models;

// use Illuminate\Contracts\Auth\MustVerifyEmail;
Expand Down
5 changes: 5 additions & 0 deletions app/Models/Version.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php

#
# Copyright (C) 2022 Nethesis S.r.l.
# SPDX-License-Identifier: AGPL-3.0-or-later
#

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
Expand Down

0 comments on commit fd1cf31

Please sign in to comment.