Skip to content

Commit df9253d

Browse files
committed
Updates
1 parent daf603f commit df9253d

23 files changed

+25
-25
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Hammerstone
3+
Copyright (c) 2021 Aaron Francis
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
> Read the full docs at [hammerstone.dev/airdrop/docs](https://hammerstone.dev/airdrop/docs/main/overview).
66
7-
Hammerstone Airdrop for Laravel is a package that speeds up your deploys by skipping your asset build step whenever possible.
7+
Airdrop for Laravel is a package that speeds up your deploys by skipping your asset build step whenever possible.
88

99
When you're deploying your code, Airdrop will calculate a hash of everything needed to build your assets: installed packages, JS/CSS files, ENV vars, etc.
1010

@@ -15,7 +15,7 @@ After Airdrop has calculated a hash for these inputs, it will check to see if it
1515

1616
You can install the package via Composer
1717
```console
18-
composer require hammerstone/airdrop
18+
composer require aaronfrancis/airdrop
1919
```
2020

2121
Once the package is installed, you may optionally publish the config file by running

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"authors": [
77
{
88
"name": "Aaron Francis",
9-
"email": "aaron@hammerstone.dev"
9+
"email": "aaron@tryhardstudios.com"
1010
}
1111
],
1212
"require": {

docs/drivers/custom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
If the [Filesystem](/drivers/filesystem) Driver isn't quite right for you, you can build your own quite easily.
44

5-
Your custom driver must extend the Hammerstone `BaseDriver`.
5+
Your custom driver must extend the `BaseDriver`.
66

77
CustomDriver.php {.filename}
88
```php

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
You can install the package via Composer
55
```text
6-
composer require hammerstone/airdrop
6+
composer require aaronfrancis/airdrop
77
```
88

99
Once the package is installed, you may optionally publish the config file by running

docs/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
# Airdrop for Laravel
33

4-
> View this package on Github [github.com/hammerstonehq/airdrop](https://github.com/hammerstonehq/airdrop).
4+
> View this package on Github [github.com/aarondfrancis/airdrop](https://github.com/aarondfrancis/airdrop).
55
6-
Hammerstone Airdrop for Laravel is a package that speeds up your code deploys by skipping your asset build step whenever possible.
6+
Airdrop for Laravel is a package that speeds up your code deploys by skipping your asset build step whenever possible.
77

88
When you're deploying your code, Airdrop will calculate a hash of everything needed to build your assets: installed packages, JS/CSS files, ENV vars, etc.
99

docs/triggers/custom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Let's imagine we want to trigger an asset rebuild any time the week of the year
66

77
## Creating the Class
88

9-
Your custom trigger class must implement the Hammerstone `TriggerContract`.
9+
Your custom trigger class must implement the `TriggerContract`.
1010

1111
WeekTrigger.php {.filename}
1212
```php

src/AirdropServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* @author Aaron Francis <aaron@hammerstone.dev>
4+
* @author Aaron Francis <aaron@tryhardstudios.com>
55
*/
66

77
namespace AaronFrancis\Airdrop;

src/Commands/Debug.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* @author Aaron Francis <aaron@hammerstone.dev>
4+
* @author Aaron Francis <aaron@tryhardstudios.com>
55
*/
66

77
namespace AaronFrancis\Airdrop\Commands;

src/Commands/Download.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* @author Aaron Francis <aaron@hammerstone.dev>
4+
* @author Aaron Francis <aaron@tryhardstudios.com>
55
*/
66

77
namespace AaronFrancis\Airdrop\Commands;

0 commit comments

Comments
 (0)