Skip to content

Commit 0d7e01e

Browse files
Merge pull request #24 from LaravelParse/rename
Renamed package
2 parents 0cbf689 + cf7ea0a commit 0d7e01e

8 files changed

+33
-24
lines changed

.travis.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,4 @@ install:
5454
- travis_retry composer install --no-suggest --prefer-dist -n -o
5555

5656
script:
57-
- if [ "$TRAVIS_PHP_VERSION" != "5.6" ]; then vendor/bin/phpunit; fi
58-
- if [ "$TRAVIS_PHP_VERSION" == "5.6" ]; then vendor/bin/phpunit --coverage-clover build/logs/clover.xml; fi
59-
60-
after_script:
61-
- if [ "$TRAVIS_PHP_VERSION" == "5.6" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
62-
- if [ "$TRAVIS_PHP_VERSION" == "5.6" ]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi
57+
- vendor/bin/phpunit

LICENSE

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

33
Copyright (c) 2014-2017 Graham Campbell <[email protected]>
4+
Copyright (c) 2017 Prosper Otemuyiwa <[email protected]>
45

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

README.md

+14-9
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,46 @@
11
Laravel Parse
22
=============
33

4-
Laravel Parse was created by, and is maintained by [Graham Campbell](https://github.com/GrahamCampbell), and is a [Parse SDK](https://github.com/ParsePlatform/parse-php-sdk) bridge for [Laravel 5](http://laravel.com). Feel free to check out the [change log](CHANGELOG.md), [releases](https://github.com/GrahamCampbell/Laravel-Parse/releases), [license](LICENSE), and [contribution guidelines](CONTRIBUTING.md).
4+
Laravel Parse was created by, and is maintained by [Prosper Otemuyiwa](https://github.com/unicodeveloper), and is a [Parse SDK](https://github.com/ParsePlatform/parse-php-sdk) bridge for [Laravel 5](http://laravel.com). Feel free to check out the [change log](CHANGELOG.md), [releases](https://github.com/LaravelParse/Laravel-Parse/releases), [license](LICENSE), and [contribution guidelines](CONTRIBUTING.md).
55

66
<p align="center">
77
<a href="https://styleci.io/repos/23192065"><img src="https://styleci.io/repos/23192065/shield" alt="StyleCI Status"></img></a>
8-
<a href="https://travis-ci.org/GrahamCampbell/Laravel-Parse"><img src="https://img.shields.io/travis/GrahamCampbell/Laravel-Parse/master.svg?style=flat-square" alt="Build Status"></img></a>
9-
<a href="https://scrutinizer-ci.com/g/GrahamCampbell/Laravel-Parse/code-structure"><img src="https://img.shields.io/scrutinizer/coverage/g/GrahamCampbell/Laravel-Parse.svg?style=flat-square" alt="Coverage Status"></img></a>
10-
<a href="https://scrutinizer-ci.com/g/GrahamCampbell/Laravel-Parse"><img src="https://img.shields.io/scrutinizer/g/GrahamCampbell/Laravel-Parse.svg?style=flat-square" alt="Quality Score"></img></a>
8+
<a href="https://travis-ci.org/LaravelParse/Laravel-Parse"><img src="https://img.shields.io/travis/LaravelParse/Laravel-Parse/master.svg?style=flat-square" alt="Build Status"></img></a>
119
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square" alt="Software License"></img></a>
12-
<a href="https://github.com/GrahamCampbell/Laravel-Parse/releases"><img src="https://img.shields.io/github/release/GrahamCampbell/Laravel-Parse.svg?style=flat-square" alt="Latest Version"></img></a>
10+
<a href="https://github.com/LaravelParse/Laravel-Parse/releases"><img src="https://img.shields.io/github/release/LaravelParse/Laravel-Parse.svg?style=flat-square" alt="Latest Version"></img></a>
1311
</p>
1412

1513

14+
## NOTICE
15+
16+
Effective immediately, [Prosper Otemuyiwa](https://github.com/unicodeveloper) will take as project lead on this package.
17+
18+
The package will be rebranded to `laravel-parse/parse`, for a 3.0 release.
19+
20+
1621
## Installation
1722

1823
Either [PHP](https://php.net) 5.5+ or [HHVM](http://hhvm.com) 3.6+ are required.
1924

2025
To get the latest version of Laravel Parse, simply require the project using [Composer](https://getcomposer.org):
2126

2227
```bash
23-
$ composer require graham-campbell/parse
28+
$ composer require laravel-parse/parse
2429
```
2530

2631
Instead, you may of course manually update your require block and run `composer update` if you so choose:
2732

2833
```json
2934
{
3035
"require": {
31-
"graham-campbell/parse": "^2.0"
36+
"laravel-parse/parse": "^3.0"
3237
}
3338
}
3439
```
3540

3641
Once Laravel Parse is installed, you need to register the service provider. Open up `config/app.php` and add the following to the `providers` key.
3742

38-
* `'GrahamCampbell\Parse\ParseServiceProvider'`
43+
* `'LaravelParse\Parse\ParseServiceProvider'`
3944

4045

4146
## Configuration
@@ -79,7 +84,7 @@ This package is only responsible for the automatic initialisation of the parse c
7984

8085
## Security
8186

82-
If you discover a security vulnerability within this package, please send an e-mail to Graham Campbell at graham@alt-three.com. All security vulnerabilities will be promptly addressed.
87+
If you discover a security vulnerability within this package, please send an e-mail to Prosper Otemuyiwa at prosperotemuyiwa@gmail.com. All security vulnerabilities will be promptly addressed.
8388

8489

8590
## License

composer.json

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
{
2-
"name": "graham-campbell/parse",
2+
"name": "laravel-parse/parse",
33
"description": "Parse Is A Parse SDK Bridge For Laravel 5",
4-
"keywords": ["laravel", "framework", "parse", "parse-sdk", "parse sdk", "ParseSDK", "parse bridge", "parse sdk bridge", "bridge", "Parse", "Laravel Parse", "Laravel-Parse", "Graham Campbell", "GrahamCampbell"],
4+
"keywords": ["laravel", "framework", "parse", "parse-sdk", "parse sdk", "ParseSDK", "parse bridge", "parse sdk bridge", "bridge", "Parse", "Laravel Parse", "Laravel-Parse", "LaravelParse"],
55
"license": "MIT",
66
"authors": [
77
{
88
"name": "Graham Campbell",
99
"email": "[email protected]"
10+
},
11+
{
12+
"name": "Prosper Otemuyiwa",
13+
"email": "[email protected]"
1014
}
1115
],
1216
"require": {
@@ -21,20 +25,20 @@
2125
},
2226
"autoload": {
2327
"psr-4": {
24-
"GrahamCampbell\\Parse\\": "src/"
28+
"LaravelParse\\Parse\\": "src/"
2529
}
2630
},
2731
"autoload-dev": {
2832
"psr-4": {
29-
"GrahamCampbell\\Tests\\Parse\\": "tests/"
33+
"LaravelParse\\Tests\\Parse\\": "tests/"
3034
}
3135
},
3236
"config": {
3337
"preferred-install": "dist"
3438
},
3539
"extra": {
3640
"branch-alias": {
37-
"dev-master": "2.8-dev"
41+
"dev-master": "3.0-dev"
3842
}
3943
},
4044
"minimum-stability": "dev",

config/parse.php

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* This file is part of Laravel Parse.
55
*
66
* (c) Graham Campbell <[email protected]>
7+
* (c) Prosper Otemuyiwa <[email protected]>
78
*
89
* For the full copyright and license information, please view the LICENSE
910
* file that was distributed with this source code.

src/ParseServiceProvider.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44
* This file is part of Laravel Parse.
55
*
66
* (c) Graham Campbell <[email protected]>
7+
* (c) Prosper Otemuyiwa <[email protected]>
78
*
89
* For the full copyright and license information, please view the LICENSE
910
* file that was distributed with this source code.
1011
*/
1112

12-
namespace GrahamCampbell\Parse;
13+
namespace LaravelParse\Parse;
1314

1415
use Illuminate\Foundation\Application as LaravelApplication;
1516
use Illuminate\Support\ServiceProvider;

tests/AbstractTestCase.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@
44
* This file is part of Laravel Parse.
55
*
66
* (c) Graham Campbell <[email protected]>
7+
* (c) Prosper Otemuyiwa <[email protected]>
78
*
89
* For the full copyright and license information, please view the LICENSE
910
* file that was distributed with this source code.
1011
*/
1112

12-
namespace GrahamCampbell\Tests\Parse;
13+
namespace LaravelParse\Tests\Parse;
1314

14-
use GrahamCampbell\Parse\ParseServiceProvider;
1515
use GrahamCampbell\TestBench\AbstractPackageTestCase;
16+
use LaravelParse\Parse\ParseServiceProvider;
1617

1718
/**
1819
* This is the abstract test case class.

tests/ServiceProviderTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44
* This file is part of Laravel Parse.
55
*
66
* (c) Graham Campbell <[email protected]>
7+
* (c) Prosper Otemuyiwa <[email protected]>
78
*
89
* For the full copyright and license information, please view the LICENSE
910
* file that was distributed with this source code.
1011
*/
1112

12-
namespace GrahamCampbell\Tests\Parse;
13+
namespace LaravelParse\Tests\Parse;
1314

1415
use GrahamCampbell\TestBenchCore\ServiceProviderTrait;
1516

0 commit comments

Comments
 (0)