Skip to content

Commit

Permalink
#35 Fix symfony/yaml 6.4.x-dev -> 6.3.x stable
Browse files Browse the repository at this point in the history
  • Loading branch information
bfoujols committed Oct 5, 2023
1 parent 585f34a commit e06d43e
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 25 deletions.
36 changes: 18 additions & 18 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"twig/twig": "^3.7",
"nikic/fast-route": "^1.3",
"ext-pdo": "*",
"symfony/yaml": "6.4.x-dev",
"symfony/console": "6.4.x-dev",
"symfony/yaml": "6.3.*",
"symfony/console": "6.4.*",
"nette/php-generator": "^4.1@dev"

Check warning on line 25 in composer.json

View workflow job for this annotation

GitHub Actions / Qodana for PHP

Check dependency licenses

Transitive dependency: 'nette/utils' ('dev-master') 'BSD-3-Clause-Clear' is not in the allowed or the prohibited licenses lists with project license 'MIT'

Check warning on line 25 in composer.json

View workflow job for this annotation

GitHub Actions / Qodana for PHP

Check dependency licenses

'nette/php-generator' ('dev-master') 'BSD-3-Clause-Clear' is not in the allowed or the prohibited licenses lists with project license 'MIT'
}
,
Expand All @@ -40,23 +40,23 @@
"repositories": [
{
"type": "vcs",
"url": "https://github.com/studoo-app/edu-framework"
}
],
"scripts": {
"edu:start": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8042 -t public"
],
"edu:init": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
"url": "https://github.com/studoo-app/edu-framework"
}
],
"edu:docker:db-service:start": "Studoo\\EduFramework\\Scripts\\DockerPilot::start",
"edu:docker:db-service:down": "Studoo\\EduFramework\\Scripts\\DockerPilot::down",
"edu:make:controller": "Studoo\\EduFramework\\Commands\\CreateControllerCommand"
},
"scripts-descriptions": {
"edu:init": "Create env file",
"scripts": {
"edu:start": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8042 -t public"
],
"edu:init": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"edu:docker:db-service:start": "Studoo\\EduFramework\\Scripts\\DockerPilot::start",
"edu:docker:db-service:down": "Studoo\\EduFramework\\Scripts\\DockerPilot::down",
"edu:make:controller": "Studoo\\EduFramework\\Commands\\CreateControllerCommand"
},
"scripts-descriptions": {
"edu:init": "Create env file",
"edu:start": "Start local server",
"edu:docker:db-service:start": "Start docker related database service [args : mysql / maria-db]",
"edu:docker:db-service:down": "Stop and remove docker related database service [args : mysql / maria-db]"
Expand Down
1 change: 0 additions & 1 deletion src/EduFramework/Core/ConfigCore.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
*/
class ConfigCore
{

/**
* Tableau de configuration
* @var array<string>
Expand Down
1 change: 0 additions & 1 deletion src/EduFramework/Core/Controller/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
*/
class Request
{

/**
* La méthode HTTP de la requête
* @var string $httpMethod
Expand Down
1 change: 0 additions & 1 deletion src/EduFramework/Core/Service/DatabaseInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

interface DatabaseInterface
{

/**
* Permets de récupérer la connexion à la base de données
* @return PDO
Expand Down
1 change: 0 additions & 1 deletion src/EduFramework/Core/Service/DatabaseMariadb.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

class DatabaseMariadb implements DatabaseInterface

Check warning on line 16 in src/EduFramework/Core/Service/DatabaseMariadb.php

View workflow job for this annotation

GitHub Actions / Qodana for PHP

Check the PHP source code coverage

Class DatabaseMariadb coverage is below the threshold 50%
{

/**
* @return PDO
*/
Expand Down
1 change: 0 additions & 1 deletion src/EduFramework/Core/Service/DatabaseMysql.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

class DatabaseMysql implements DatabaseInterface

Check warning on line 16 in src/EduFramework/Core/Service/DatabaseMysql.php

View workflow job for this annotation

GitHub Actions / Qodana for PHP

Check the PHP source code coverage

Class DatabaseMysql coverage is below the threshold 50%
{

/**
* @return PDO
*/
Expand Down
1 change: 0 additions & 1 deletion src/EduFramework/Core/Service/DatabaseService.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

class DatabaseService

Check warning on line 18 in src/EduFramework/Core/Service/DatabaseService.php

View workflow job for this annotation

GitHub Actions / Qodana for PHP

Check the PHP source code coverage

Class DatabaseService coverage is below the threshold 50%
{

/**
* Objet PDO pour la connexion à la base de données
* @var PDO
Expand Down
1 change: 0 additions & 1 deletion src/EduFramework/Core/View/TwigCore.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
*/
class TwigCore
{

/**
* @var Environment
* Objet de l'environnement Twig
Expand Down

0 comments on commit e06d43e

Please sign in to comment.