Skip to content

Commit

Permalink
Update composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkSide666 committed Feb 11, 2020
1 parent 2872fdb commit 7b08c27
Showing 1 changed file with 56 additions and 39 deletions.
95 changes: 56 additions & 39 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,59 @@
{
"name": "atk4/core",
"type": "library",
"description": "Agile Core - collection of PHP Traits for designing object-oriented frameworks",
"keywords": ["php", "framework", "trains", "agile toolkit"],
"homepage": "https://github.com/atk4/core",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Romans Malinovskis",
"email": "romans@agiletoolkit.org",
"homepage": "https://nearly.guru/"
}
],
"require": {
"php": ">=7.2.0",
"psr/log": "~1.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"symfony/yaml": "~2.1|~3.0|~4.0",
"satooshi/php-coveralls": "^1.0",
"codeclimate/php-test-reporter": "*",
"symfony/contracts": "^1.1",
"atk4/data": "dev-develop"
},
"replace": {
"atk4/core": "self.version"
},
"suggest": {
"symfony/yaml": "~2.1|~3.0|~4.0"
},
"autoload": {
"psr-4": {"atk4\\core\\":"src/"}
},
"autoload-dev": {
"psr-4": {"atk4\\core\\tests\\":"tests/"}
"name": "atk4/core",
"type": "library",
"description": "Agile Core - collection of PHP Traits for designing object-oriented frameworks",
"keywords": [
"php",
"framework",
"traits",
"agile toolkit"
],
"homepage": "https://github.com/atk4/core",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Romans Malinovskis",
"email": "romans@agiletoolkit.org",
"homepage": "https://nearly.guru/"
}
],
"require": {
"php": ">=7.2.0",
"psr/log": "~1.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"symfony/yaml": "~2.1|~3.0|~4.0",
"satooshi/php-coveralls": "^1.0",
"codeclimate/php-test-reporter": "*",
"symfony/contracts": "^1.1",
"atk4/data": "dev-develop"
},
"require-dev-release": {
"phpunit/phpunit": "*",
"symfony/yaml": "~2.1|~3.0|~4.0",
"satooshi/php-coveralls": "^1.0",
"codeclimate/php-test-reporter": "*",
"symfony/contracts": "^1.1",
"atk4/data": "^2.0"
},
"replace": {
"atk4/core": "self.version"
},
"suggest": {
"symfony/yaml": "~2.1|~3.0|~4.0"
},
"autoload": {
"psr-4": {
"atk4\\core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"atk4\\core\\tests\\": "tests/"
}
}
}

0 comments on commit 7b08c27

Please sign in to comment.