You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
725 B
29 lines
725 B
{
|
|
"name": "pimple/pimple",
|
|
"type": "library",
|
|
"description": "Pimple, a simple Dependency Injection Container",
|
|
"keywords": ["dependency injection", "container"],
|
|
"homepage": "https://pimple.symfony.com",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Fabien Potencier",
|
|
"email": "fabien@symfony.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.2.5",
|
|
"psr/container": "^1.1 || ^2.0"
|
|
},
|
|
"require-dev": {
|
|
"symfony/phpunit-bridge": "^5.4@dev"
|
|
},
|
|
"autoload": {
|
|
"psr-0": { "Pimple": "src/" }
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "3.4.x-dev"
|
|
}
|
|
}
|
|
}
|
|
|