Skip to content

Commit

Permalink
Composer: little optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
f3l1x committed Jan 2, 2024
1 parent de845b2 commit 5aef11c
Showing 1 changed file with 23 additions and 22 deletions.
45 changes: 23 additions & 22 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,6 @@
"homepage": "https://paveljanda.com"
}
],
"autoload": {
"psr-4": {
"Contributte\\ImageStorage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/cases"
}
},
"require": {
"php": ">=8.1",
"nette/application": "^3.1.14",
Expand All @@ -46,16 +36,27 @@
"contributte/phpstan": "^0.1",
"tracy/tracy": "^2.10.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "2.2.x-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
"autoload": {
"psr-4": {
"Contributte\\ImageStorage\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}

0 comments on commit 5aef11c

Please sign in to comment.