Skip to content

Commit 50e6e71

Browse files
committed
Changes project name
1 parent 77e6361 commit 50e6e71

38 files changed

+67
-67
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Server for Symfony Flex
22

3-
[![Build Status](https://travis-ci.org/moay/symfony-flex-server.svg?branch=master)](https://travis-ci.org/moay/symfony-flex-server)
3+
[![Build Status](https://travis-ci.org/moay/server-for-symfony-flex.svg?branch=master)](https://travis-ci.org/moay/server-for-symfony-flex)
44

55
A self hosted server for Symfony Flex allowing private recipes, customized recipes and caching functionality for the official endpoints.
66

@@ -16,8 +16,8 @@ A self hosted server for Symfony Flex allowing private recipes, customized recip
1616

1717
### Documentation
1818

19-
Full documentation is available here: [Documentation](https://symfony-flex-server.readthedocs.io)
19+
Full documentation is available here: [Documentation](https://server-for-symfony-flex.readthedocs.io)
2020

2121
### License
2222

23-
Published under the [MIT License](https://github.com/moay/symfony-flex-server/blob/master/LICENSE).
23+
Published under the [MIT License](https://github.com/moay/server-for-symfony-flex/blob/master/LICENSE).

docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A self hosted server for Symfony Flex allowing private recipes, customized recipes and caching functionality for the official endpoints.
44

5-
[github.com/moay/symfony-flex-server](https://github.com/moay/symfony-flex-server)
5+
[github.com/moay/server-for-symfony-flex](https://github.com/moay/server-for-symfony-flex)
66

77
#### This is not an official project by SensioLabs or the Symfony core team.
88

@@ -25,4 +25,4 @@ Want to now, how the server resolves packages and recipes? Read more [here](topi
2525

2626
### License
2727

28-
Published under the [MIT License](https://github.com/moay/symfony-flex-server/blob/master/LICENSE).
28+
Published under the [MIT License](https://github.com/moay/server-for-symfony-flex/blob/master/LICENSE).

docs/topics/setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Setting up the server should be quick and easy. These are the necessary steps:
44

5-
1. [Download](https://github.com/moay/symfony-flex-server/releases) the project from Github (or `git clone https://github.com/moay/symfony-flex-server`)
5+
1. [Download](https://github.com/moay/server-for-symfony-flex/releases) the project from Github (or `git clone https://github.com/moay/server-for-symfony-flex`)
66
2. Navigate to the project folder and run `composer install`.
77
3. Open the file `config/parameters.yaml` and enter the url to your private recipes repo (or provide appropriate environment variables).
88
4. Setup the `APP_ENV` properly. This can be done in the `.env` file (create if needed) or on the hosting. Setting it to `prod` is recommended.

mkdocs.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
site_name: 'Symfony Flex Server'
2-
repo_url: 'https://github.com/moay/symfony-flex-server'
3-
repo_name: 'moay/symfony-flex-server'
1+
site_name: 'Server for Symfony Flex'
2+
repo_url: 'https://github.com/moay/server-for-symfony-flex'
3+
repo_name: 'moay/server-for-symfony-flex'
44
pages:
55
- 'Introduction': 'index.md'
66
- 'Requirements': 'topics/prerequisites.md'
@@ -12,4 +12,4 @@ pages:
1212
theme:
1313
name: 'material'
1414
palette:
15-
primary: 'grey'
15+
primary: 'grey'

src/Command/Recipes/RecipeRepoManagerCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -101,4 +101,4 @@ protected function execute(InputInterface $input, OutputInterface $output)
101101
}
102102
}
103103
}
104-
}
104+
}

src/Command/Recipes/RecipesInitializeCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -24,4 +24,4 @@ class RecipesInitializeCommand extends RecipeRepoManagerCommand
2424
/** @var string */
2525
protected $description = 'Initializes local recipe repos from remote repo';
2626

27-
}
27+
}

src/Command/Recipes/RecipesRemoveCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -23,4 +23,4 @@ class RecipesRemoveCommand extends RecipeRepoManagerCommand
2323

2424
/** @var string */
2525
protected $description = 'Deletes local recipe repos';
26-
}
26+
}

src/Command/Recipes/RecipesResetCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -23,4 +23,4 @@ class RecipesResetCommand extends RecipeRepoManagerCommand
2323

2424
/** @var string */
2525
protected $description = 'Resets local recipe repos by deleting and reinitalizing from remote repo';
26-
}
26+
}

src/Command/Recipes/RecipesUpdateCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -23,4 +23,4 @@ class RecipesUpdateCommand extends RecipeRepoManagerCommand
2323

2424
/** @var string */
2525
protected $description = 'Updates local recipe repos to match the current remote repo';
26-
}
26+
}

src/Command/System/SystemStatusCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -75,4 +75,4 @@ public function execute(InputInterface $input, OutputInterface $output)
7575
];
7676
}, $report['repos'], array_keys($report['repos'])));
7777
}
78-
}
78+
}

src/Controller/EndpointController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -73,4 +73,4 @@ public function packages(string $packages, PackagesProvider $provider): JsonResp
7373
{
7474
return $this->unescapedSlashesJson($provider->providePackages($packages));
7575
}
76-
}
76+
}

src/Controller/FrontendController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -49,4 +49,4 @@ public function dashboardData(SystemStatusReportCompiler $reportGenerator, Local
4949
'recipes' => $recipeCompiler->getLocalRecipes()
5050
]);
5151
}
52-
}
52+
}

src/Controller/WebhookController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -38,4 +38,4 @@ public function update(RecipeRepoManager $repoManager): JsonResponse
3838
return $this->json(['success' => true]);
3939
}
4040

41-
}
41+
}

src/Entity/Recipe.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*

src/Event/RepoStatusChangedEvent.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -42,4 +42,4 @@ public function getRecipeRepo()
4242
{
4343
return $this->recipeRepo;
4444
}
45-
}
45+
}

src/EventSubscriber/LocalAliasEventSubscriber.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*

src/EventSubscriber/StatusReportEventSubscriber.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -52,4 +52,4 @@ public function onRepoStatusChange(RepoStatusChangedEvent $event)
5252
$this->reportCompiler->removeReport();
5353
}
5454

55-
}
55+
}

src/Exception/RecipeRepoBackupException.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -19,4 +19,4 @@
1919
class RecipeRepoBackupException extends \Exception
2020
{
2121

22-
}
22+
}

src/Exception/RecipeRepoManagerException.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -19,4 +19,4 @@
1919
class RecipeRepoManagerException extends \Exception
2020
{
2121

22-
}
22+
}

src/RecipeRepo/ContribRecipeRepo.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -43,4 +43,4 @@ public function __construct(
4343
parent::__construct($contribRepoUrl, $projectDir, $cache, $logger, $eventDispatcher);
4444
}
4545

46-
}
46+
}

src/RecipeRepo/GitRepo.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* This file is part of the moay symfony-flex-server package.
3+
* This file is part of the moay server-for-symfony-flex package.
44
*
55
* (c) moay
66
*
@@ -30,4 +30,4 @@ public function forceClean()
3030
->run('git clean -fd')
3131
->end();
3232
}
33-
}
33+
}

src/RecipeRepo/OfficialRecipeRepo.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -42,4 +42,4 @@ public function __construct(
4242
parent::__construct($officialRepoUrl, $projectDir, $cache, $logger, $eventDispatcher);
4343
}
4444

45-
}
45+
}

src/RecipeRepo/PrivateRecipeRepo.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*
@@ -42,4 +42,4 @@ public function __construct(
4242
parent::__construct($privateRepoUrl, $projectDir, $cache, $logger, $eventDispatcher);
4343
}
4444

45-
}
45+
}

src/RecipeRepo/RecipeRepo.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*

src/Service/Cache.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*

src/Service/CacheClear.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*

src/Service/Compiler/LocalRecipeCompiler.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of the moay symfony-flex-server package.
4+
* This file is part of the moay server-for-symfony-flex package.
55
*
66
* (c) moay
77
*

src/Service/Compiler/PackagesCompiler.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* This file is part of the moay symfony-flex-server package.
3+
* This file is part of the moay server-for-symfony-flex package.
44
*
55
* (c) moay
66
*

0 commit comments

Comments
 (0)