-
Notifications
You must be signed in to change notification settings - Fork 399
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1992 from EpsilonTelecommunications/allow_symfony_7
allow Symfony v7
- Loading branch information
Showing
8 changed files
with
154 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{ | ||
"name": "propel/propel", | ||
"type": "library", | ||
"description": "Propel2 is an open-source Object-Relational Mapping (ORM) for PHP 5.5 and up.", | ||
"keywords": [ | ||
"ORM", | ||
"persistence", | ||
"Active Record" | ||
], | ||
"homepage": "http://www.propelorm.org/", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "William Durand", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": ">=8.2", | ||
"symfony/yaml": "^7.0.0", | ||
"symfony/config": "^7.0.0", | ||
"symfony/console": "^7.0.0", | ||
"symfony/filesystem": "^7.0.0", | ||
"symfony/finder": "^7.0.0", | ||
"symfony/translation": "^7.0.0", | ||
"symfony/validator": "^7.0.0", | ||
"psr/log": "^1.0 || ^2.0 || ^3.0" | ||
}, | ||
"require-dev": { | ||
"ext-pdo": "*", | ||
"ext-json": "*", | ||
"ext-xml": "*", | ||
"monolog/monolog": "^1.3 || ^2.3 || ^3.0", | ||
"phpstan/phpstan": "^1.2", | ||
"phpunit/phpunit": "^9.5.0", | ||
"spryker/code-sniffer": "^0.17.2", | ||
"psalm/phar": "^4.23", | ||
"mikey179/vfsstream": "^1.6" | ||
}, | ||
"suggest": { | ||
"monolog/monolog": "The recommended logging library to use with Propel." | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Propel\\": "src/Propel/" | ||
} | ||
}, | ||
"bin": [ | ||
"bin/propel" | ||
], | ||
"scripts": { | ||
"stan": [ | ||
"vendor/bin/phpstan analyze -l 1 -c tests/phpstan.neon src/" | ||
] | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "2.0-dev" | ||
} | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{ | ||
"name": "propel/propel", | ||
"type": "library", | ||
"description": "Propel2 is an open-source Object-Relational Mapping (ORM) for PHP 5.5 and up.", | ||
"keywords": [ | ||
"ORM", | ||
"persistence", | ||
"Active Record" | ||
], | ||
"homepage": "http://www.propelorm.org/", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "William Durand", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": ">=8.2", | ||
"symfony/yaml": "~7.0.0", | ||
"symfony/config": "~7.0.0", | ||
"symfony/console": "~7.0.0", | ||
"symfony/filesystem": "~7.0.0", | ||
"symfony/finder": "~7.0.0", | ||
"symfony/translation": "~7.0.0", | ||
"symfony/validator": "~7.0.0", | ||
"psr/log": "^1.0 || ^2.0 || ^3.0" | ||
}, | ||
"require-dev": { | ||
"ext-pdo": "*", | ||
"ext-json": "*", | ||
"ext-xml": "*", | ||
"monolog/monolog": "^1.3 || ^2.3 || ^3.0", | ||
"phpstan/phpstan": "^1.2", | ||
"phpunit/phpunit": "^9.5.0", | ||
"spryker/code-sniffer": "^0.17.2", | ||
"psalm/phar": "^4.23", | ||
"mikey179/vfsstream": "^1.6" | ||
}, | ||
"suggest": { | ||
"monolog/monolog": "The recommended logging library to use with Propel." | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Propel\\": "src/Propel/" | ||
} | ||
}, | ||
"bin": [ | ||
"bin/propel" | ||
], | ||
"scripts": { | ||
"stan": [ | ||
"vendor/bin/phpstan analyze -l 1 -c tests/phpstan.neon src/" | ||
] | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "2.0-dev" | ||
} | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
} | ||
} |