13 Commits
0.1.8 ... 0.2.0

Author SHA1 Message Date
PeterMarynczak
542a4a9405 Merge pull request #4 from wiosna-dev/feature/WZUW-265
[WZUW-265] Updated doctrine/orm package version
2023-09-08 11:53:07 +02:00
Piotr Marynczak
3d3fe767c4 [WZUW-265] Updated doctrine/orm package version 2023-09-07 16:37:05 +02:00
PeterMarynczak
00867c5091 Merge pull request #3 from wiosna-dev/feature/WZUW-265
[WZUW-265] Removed phploc package
2023-09-07 15:01:43 +02:00
Piotr Marynczak
14235b58ba [WZUW-265] Removed phploc package 2023-09-07 14:54:02 +02:00
xevolic
140acd1eb3 Merge pull request #2 from wiosna-dev/fix/UW-2934_Add_support_for_PHP_8.2
[UW-2934] chore(deps): enabled gedmo/doctrine-extensions in version 3.11 or higher
2023-03-09 15:23:55 +01:00
Tomasz Kuter
4eaca747e7 [UW-2934] chore(deps): enabled gedmo/doctrine-extensions in version 3.11 or higher 2023-02-14 20:06:29 +01:00
Krzysztof Nizioł
28a11d611c Merge branch 'master' of github.com:meritoo/common-library 2019-03-25 09:23:57 +01:00
Krzysztof Nizioł
df36e050e7 Merge branch 'master' of github.com:meritoo/common-library 2019-03-05 10:21:44 +01:00
Krzysztof Nizioł
ddd558a7d4 Merge remote-tracking branch 'meritoo/master' 2019-02-23 13:29:37 +01:00
Krzysztof Nizioł
e31af27c01 Merge branch 'master' of github.com:meritoo/common-library
# Conflicts:
#	README.md
2018-09-06 22:01:00 +02:00
Krzysztof Niziol
3bcda8e906 composer.json - update name of this package (name of vendor, actually) 2017-11-08 14:52:19 +01:00
Krzysztof Niziol
1641c50d1d composer.json - update name of this package 2017-11-07 16:34:49 +01:00
Krzysztof Niziol
afbbdfe437 composer.json - update name of this package 2017-11-07 15:24:51 +01:00
3 changed files with 18 additions and 15 deletions

View File

@@ -6,10 +6,22 @@ Common and useful classes, methods, exceptions etc.
# Installation # Installation
In your `composer.json` add address of repository into `repositories` section:
```json
"repositories": [
(...)
{
"type": "vcs",
"url": "https://github.com/wiosna-dev/common-library"
}
]
```
Run [Composer](https://getcomposer.org) to install this package in your project: Run [Composer](https://getcomposer.org) to install this package in your project:
```bash ```bash
composer require meritoo/common-library composer require wiosna-dev/common-library
``` ```
> [How to install Composer?](https://getcomposer.org/download) > [How to install Composer?](https://getcomposer.org/download)

View File

@@ -1,5 +1,5 @@
{ {
"name": "meritoo/common-library", "name": "wiosna-dev/common-library",
"description": "Useful classes, methods, extensions etc.", "description": "Useful classes, methods, extensions etc.",
"license": "MIT", "license": "MIT",
"authors": [ "authors": [
@@ -10,20 +10,19 @@
} }
], ],
"require": { "require": {
"php": ">=5.6",
"ext-dom": "*", "ext-dom": "*",
"ext-fileinfo": "*", "ext-fileinfo": "*",
"ext-json": "*", "ext-json": "*",
"ext-simplexml": "*", "ext-simplexml": "*",
"php": ">=5.6",
"ext-intl": "*", "ext-intl": "*",
"ext-pcre": "*", "ext-pcre": "*",
"doctrine/orm": "^2.5", "doctrine/orm": "^2.16",
"gedmo/doctrine-extensions": "^2.4" "gedmo/doctrine-extensions": "^2.4 || ^3.11"
}, },
"require-dev": { "require-dev": {
"friendsofphp/php-cs-fixer": "^2.2", "friendsofphp/php-cs-fixer": "^2.2",
"pdepend/pdepend": "^2.5", "pdepend/pdepend": "^2.5",
"phploc/phploc": "^2.1",
"phpmd/phpmd": "^2.6", "phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^4.8", "phpunit/phpunit": "^4.8",
"sebastian/phpcpd": "^2.0", "sebastian/phpcpd": "^2.0",

View File

@@ -45,8 +45,7 @@
depends="check:cs, depends="check:cs,
check:md, check:md,
check:cpd, check:cpd,
check:depend, check:depend"
check:loc"
/> />
<!-- Test target --> <!-- Test target -->
@@ -91,13 +90,6 @@
</phpdepend> </phpdepend>
</target> </target>
<!-- Measure the size and analyzing the structure of a project -->
<target name="check:loc" depends="build:prepare">
<phploc reportType="txt" reportName="phploc" reportDirectory="${dir.reports}">
<fileset refid="sourcecode"/>
</phploc>
</target>
<!-- PHPUnit tests --> <!-- PHPUnit tests -->
<target name="test:phpunit" depends="build:prepare"> <target name="test:phpunit" depends="build:prepare">
<exec command="${tests.phpunit.command}" passthru="true"/> <exec command="${tests.phpunit.command}" passthru="true"/>