Skip to content

Commit

Permalink
dividing into separeted libs
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonatanTeixeira committed Apr 2, 2018
1 parent 4645015 commit 88ffc3a
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/Data/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "vox/data",
"license": "MIT",
"autoload": {
"psr-4": {
"Vox\\Data\\": ""
}
},
"require": {
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"phing/phing": "^2.16",
"squizlabs/php_codesniffer": "^2",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "^3.0",
"mayflower/php-codebrowser": "^1.1"
}
}
23 changes: 23 additions & 0 deletions src/Metadata/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "vox/metadata",
"license": "MIT",
"autoload": {
"psr-4": {
"Vox\\Metadata\\": ""
}
},
"require": {
"php": ">=7.0",
"jms/metadata": "^1",
"doctrine/annotations": "^1",
"symfony/yaml": "^3"
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"phing/phing": "^2.16",
"squizlabs/php_codesniffer": "^2",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "^3.0",
"mayflower/php-codebrowser": "^1.1"
}
}
21 changes: 21 additions & 0 deletions src/Serializer/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "vox/serializer",
"license": "MIT",
"autoload": {
"psr-4": {
"Vox\\Serializer\\": ""
}
},
"require": {
"php": ">=7.0",
"symfony/serializer": "^3"
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"phing/phing": "^2.16",
"squizlabs/php_codesniffer": "^2",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "^3.0",
"mayflower/php-codebrowser": "^1.1"
}
}

0 comments on commit 88ffc3a

Please sign in to comment.