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

Lines changed: 3 additions & 3 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 4 additions & 4 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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+
}

0 commit comments

Comments
 (0)